blob: ec46f620095d7bac655ba6e493fd63725fb2ce8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-backup/backuppc/backuppc-2.1.2.ebuild,v 1.2 2005/10/02 15:02:29 flameeyes Exp $
inherit eutils webapp
IUSE="samba doc"
MY_P=BackupPC-${PV}
PATCH_VER=0.1
S=${WORKDIR}/${MY_P}
DESCRIPTION="A high performance, enterprise grade backup system for backing up
Linux, Windows, Mac OS X desktops and laptops to a server's disk. No client
side software needed."
HOMEPAGE="http://backuppc.sourceforge.net"
SRC_URI="mirror://sourceforge/backuppc/${MY_P}.tar.gz
http://dev.gentoo.org/~seemant/distfiles/${P}-gentoo-${PATCH_VER}.tar.bz2
mirror://gentoo/${P}-gentoo-${PATCH_VER}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
DEPEND="dev-lang/perl"
RDEPEND="dev-perl/File-RsyncP
app-arch/par2cmdline
app-arch/gzip
app-arch/bzip2
app-arch/unzip
dev-perl/Archive-Zip
virtual/mta
samba? ( net-fs/samba )"
PATCHDIR=${WORKDIR}/gentoo/prepatch
pkg_setup() {
enewgroup backuppc
enewuser backuppc -1 -1 /dev/null backuppc
webapp_pkg_setup
}
src_unpack() {
unpack ${A}; cd ${S}
EPATCH_SUFFIX="diff" epatch ${PATCHDIR}
}
src_compile() {
find ./ -name 'CVS' -type d | xargs rm -rf
}
src_test() {
einfo "Can not test"
}
src_install() {
local myconf
if use samba ; then
myconf="--bin-path smbclient=$(type -p smbclient)"
myconf="--bin-path nmblookup=$(type -p nmblookup)"
fi
webapp_src_preinst
dodir ${MY_HTDOCSDIR}/${PN}
./configure.pl \
--batch \
--bin-path perl=$(type -p perl) \
--bin-path ptar=$(type -p tar) \
--bin-path rsync=$(type -p rsync) \
--bin-path ping=$(type -p ping) \
--bin-path df=$(type -p df) \
--bin-path ssh=$(type -p ssh) \
--bin-path sendmail=$(type -p sendmail) \
--bin-path hostname=$(type -p hostname) \
--bin-path gzip=$(type -p gzip) \
--bin-path bzip2=$(type -p bzip2) \
--bin-path hostname=$(type -p hostname) \
--hostname XXXXXX \
--uid-ignore \
--install-dir=/usr \
--dest-dir ${D} \
--html-dir ${MY_HTDOCSDIR}/image \
--html-dir-url /backuppc/image \
--cgi-dir ${MY_CGIBINDIR}/ \
--data-dir /var/lib/backuppc \
${myconf} || die "failed the configure.pl script"
pod2man \
--section=8 \
--center="BackupPC manual" \
${S}/doc/BackupPC.pod backuppc.8 || die "failed to generate man page"
doman backuppc.8
diropts -m 750
keepdir /var/lib/backuppc/{trash,pool,pc,log,cpool}
diropts -m 755
dodir /etc/backuppc
mv ${D}/var/lib/backuppc/conf/* ${D}/etc/backuppc
rmdir ${D}/var/lib/backuppc/conf
fperms 644 /etc/backuppc/config.pl
fperms 644 /etc/backuppc/hosts
newinitd ${S}/init.d/gentoo-backuppc backuppc
newconfd ${S}/init.d/gentoo-backuppc.conf backuppc
webapp_postinst_txt \
en ${FILESDIR}/postinstall-en.txt || die "webapp_postinst_txt"
webapp_src_install || die "webapp_src_install"
cd ${D}/etc/backuppc
ebegin "Patching config.pl for sane defaults"
patch -p0 < ${WORKDIR}/gentoo/postpatch/config.pl.diff
eend $?
chown -R backuppc:backuppc "${D}/var/lib/backuppc"
}
pkg_postinst() {
webapp_pkg_postinst
ebegin "Adjusting ownership of /var/lib/backuppc"
chown -R backuppc:backuppc "${ROOT}/var/lib/backuppc"
eend $?
}
|