blob: 8592aa98f977f542f74040578d214187f20a1997 (
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-block/partimage/partimage-0.6.4-r4.ebuild,v 1.15 2007/04/28 13:10:38 tove Exp $
WANT_AUTOMAKE="1.8"
inherit eutils flag-o-matic pam autotools
MY_P="${PN}-${PV}-1"
DESCRIPTION="Console-based application to efficiently save raw partition data to an image file. Optional encryption/compression support."
HOMEPAGE="http://www.partimage.org/"
SRC_URI="mirror://sourceforge/partimage/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc"
IUSE="ssl nologin nls pam static"
DEPEND="virtual/libc
>=sys-libs/zlib-1.1.4
>=dev-libs/newt-0.51.6
app-arch/bzip2
=sys-libs/slang-1*
nls? ( sys-devel/gettext )
ssl? ( >=dev-libs/openssl-0.9.6g )"
RDEPEND="!static? ( virtual/libc
>=sys-libs/zlib-1.1.4
>=dev-libs/lzo-1.08
>=dev-libs/newt-0.51.6
app-arch/bzip2
>=sys-libs/slang-1.4.5-r2
nls? ( sys-devel/gettext )
ssl? ( >=dev-libs/openssl-0.9.6g )
pam? ( virtual/pam )
)"
PARTIMAG_GROUP_GID=91
PARTIMAG_USER_UID=91
PARTIMAG_GROUP_NAME=partimag
PARTIMAG_USER_NAME=partimag
PARTIMAG_USER_SH=-1
PARTIMAG_USER_HOMEDIR=/var/log/partimage
PARTIMAG_USER_GROUPS=partimag
S="${WORKDIR}/${MY_P}"
pkg_setup() {
# Now add users if needed
enewgroup ${PARTIMAG_GROUP_NAME} ${PARTIMAG_GROUP_GID}
enewuser ${PARTIMAG_USER_NAME} ${PARTIMAG_USER_UID} ${PARTIMAG_USER_SH} ${PARTIMAG_USER_HOMEDIR} ${PARTIMAG_USER_GROUPS}
}
src_unpack() {
unpack ${A}
cd "${S}"
# we can do better security ourselves
epatch "${FILESDIR}"/${P}-nodumbpermchecks.diff || die
epatch "${FILESDIR}"/${P}-chown.patch || die
epatch "${FILESDIR}"/${P}-not_install_info.patch || die
epatch "${FILESDIR}"/${P}-fixserverargs.diff || die
epatch "${FILESDIR}"/${P}-1-lib64.patch
epatch "${FILESDIR}"/${P}-fflush-before-re-read-partition-table.patch || die
epatch "${FILESDIR}"/${P}-save_all_and_rest_all_actions.patch || die
epatch "${FILESDIR}"/${P}-datadir-path.patch || die
epatch "${FILESDIR}"/${P}-dont-discard-error-message-in-batch-mode.patch || die
epatch "${FILESDIR}"/${P}-save_file_and_rest_file_actions.patch || die
epatch "${FILESDIR}"/${P}-varargs.patch || die
epatch "${FILESDIR}"/${P}-gui.diff || die
epatch "${FILESDIR}"/${P}-empty-salt.patch || die
epatch "${FILESDIR}"/${P}-help.patch || die
epatch "${FILESDIR}"/${P}-xfs.patch || die
epatch "${FILESDIR}"/${P}-port.patch || die
}
src_compile() {
filter-flags -fno-exceptions
use ppc && append-flags -fsigned-char
local myconf
use nologin && myconf="${myconf} --disable-login"
if use static
then
use pam && ewarn "pam and static compilation are mutually exclusive - using static and ignoring pam"
else
myconf="${myconf} `use_enable pam`"
fi
econf \
${myconf} \
--sysconfdir=/etc \
`use_enable ssl` \
`use_enable nls` \
`use_enable static all-static` \
|| die "econf failed"
emake || die "make failed"
#if use pam
#then
# make pamfile || die "couldn't create pam file"
#fi
}
src_install() {
emake DESTDIR="${D}" \
MKINSTALLDIRS=/usr/share/automake-1.8/mkinstalldirs install || die
keepdir /var/log/partimage
insinto /etc/partimaged; doins "${FILESDIR}"/servercert.cnf || die
# init.d / conf.d
newinitd "${FILESDIR}"/${PN}d.init ${PN}d || die
newconfd "${FILESDIR}"/${PN}d.conf ${PN}d || die
doman debian/partimage.1 debian/partimaged.8 "${FILESDIR}"/partimagedusers.5 || die
dodoc AUTHORS BUGS COPYING ChangeLog INSTALL README* TODO partimage.lsm
# pam
if use pam
then
newpamd "${FILESDIR}"/partimaged.pam partimaged || die
fi
}
# vars for SSL stuff
confdir="${ROOT}etc/partimaged"
privkey="${confdir}/partimaged.key"
cnf="${confdir}/servercert.cnf"
csr="${confdir}/partimaged.csr"
cert="${confdir}/partimaged.cert"
pkg_config() {
if use ssl; then
ewarn "Please customize /etc/partimaged/servercert.cnf before you continue!"
ewarn "Press Ctrl-C to break now for it, or press enter to continue."
read
if [ ! -f ${privkey} ]; then
einfo "Generating unencrypted private key: ${privkey}"
openssl genrsa -out ${privkey} 1024 || die "Failed!"
else
einfo "Private key already exists: ${privkey}"
fi
if [ ! -f ${csr} ]; then
einfo "Generating certificate request: ${csr}"
openssl req -new -x509 -outform PEM -out ${csr} -key ${privkey} -config ${cnf} || die "Failed!"
else
einfo "Certificate request already exists: ${csr}"
fi
if [ ! -f ${cert} ]; then
einfo "Generating self-signed certificate: ${cert}"
openssl x509 -in ${csr} -out ${cert} -signkey ${privkey} || die "Failed!"
else
einfo "Self-signed certifcate already exists: ${cert}"
fi
einfo "Setting permissions"
partimagesslperms || die "Failed!"
einfo "Done"
else
einfo "SSL is disabled, not building certificates"
fi
}
partimagesslperms() {
local ret=0
chmod 600 ${privkey} 2>/dev/null
ret=$((${ret}+$?))
chown partimag:0 ${privkey} 2>/dev/null
ret=$((${ret}+$?))
chmod 644 ${cert} ${csr} 2>/dev/null
ret=$((${ret}+$?))
chown root:0 ${cert} ${csr} 2>/dev/null
ret=$((${ret}+$?))
return $ret
}
pkg_postinst() {
if use ssl; then
einfo "To create the required SSL certificates, please do:"
einfo "emerge --config =${PF}"
# force a permmissions fixup
partimagesslperms
fi
chown partimag:0 /etc/partimaged/partimagedusers || die
}
|