diff options
Diffstat (limited to 'net-mail/cvm-vmailmgr/cvm-vmailmgr-0.3.ebuild')
-rw-r--r-- | net-mail/cvm-vmailmgr/cvm-vmailmgr-0.3.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/net-mail/cvm-vmailmgr/cvm-vmailmgr-0.3.ebuild b/net-mail/cvm-vmailmgr/cvm-vmailmgr-0.3.ebuild new file mode 100644 index 000000000000..70a45f038737 --- /dev/null +++ b/net-mail/cvm-vmailmgr/cvm-vmailmgr-0.3.ebuild @@ -0,0 +1,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" + +} |