blob: 70a45f038737909697a427c02c5b25e92d253ced (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2
# Maintainer: Thilo Bangert <bangert@gentoo.org>
# /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.3 2002/02/04 15:46:51 gbevin Exp
S=${WORKDIR}/${P}
DESCRIPTION="CVM modules for use with vmailmgr"
SRC_URI="http://untroubled.org/cvm-vmailmgr/${P}.tar.gz"
HOMEPAGE="http://untroubled.org/cvm-vmailmgr/"
DEPEND="virtual/glibc"
RDEPEND=">=net-mail/vmailmgr-0.96.9-r1
>=sys-apps/ucspi-unix-0.34"
src_compile() {
cd ${S}
echo "gcc ${CFLAGS}" > conf-cc
echo "gcc" > conf-ld
emake || die
}
src_install () {
exeinto /usr/bin
doexe cvm-vmailmgr cvm-vmailmgr-local cvm-vmailmgr-udp
dodoc README ANNOUNCEMENT NEWS
exeinto /var/lib/supervise/cvm-vmailmgr
newexe ${FILESDIR}/run-cvm-vmailmgr run
exeinto /var/lib/supervise/cvm-vmailmgr/log
newexe ${FILESDIR}/run-cvm-vmailmgr-log run
insinto /etc/vmailmgr
doins ${FILESDIR}/cvm-vmailmgr-socket
}
pkg_postinst() {
einfo "To start cvm-vmailmgr you need to link"
einfo "/var/lib/supervise/cvm-vmailmgr to /service"
}
|