diff options
author | Jose Alberto Suarez Lopez <bass@gentoo.org> | 2002-07-10 21:18:34 +0000 |
---|---|---|
committer | Jose Alberto Suarez Lopez <bass@gentoo.org> | 2002-07-10 21:18:34 +0000 |
commit | 058052b83b0d54f9dc3e8d228a6d9ff288cd5c8a (patch) | |
tree | f444327f60a849ac3bced0f4d99a81943ef1774f /net-mail/pop3vscan/pop3vscan-0.4.ebuild | |
parent | added missing dependency on dev-java/ant (diff) | |
download | gentoo-2-058052b83b0d54f9dc3e8d228a6d9ff288cd5c8a.tar.gz gentoo-2-058052b83b0d54f9dc3e8d228a6d9ff288cd5c8a.tar.bz2 gentoo-2-058052b83b0d54f9dc3e8d228a6d9ff288cd5c8a.zip |
First relase
Diffstat (limited to 'net-mail/pop3vscan/pop3vscan-0.4.ebuild')
-rw-r--r-- | net-mail/pop3vscan/pop3vscan-0.4.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/net-mail/pop3vscan/pop3vscan-0.4.ebuild b/net-mail/pop3vscan/pop3vscan-0.4.ebuild new file mode 100644 index 000000000000..39b9a7a1a9a3 --- /dev/null +++ b/net-mail/pop3vscan/pop3vscan-0.4.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/net-mail/pop3vscan/pop3vscan-0.4.ebuild,v 1.1 2002/07/10 21:18:34 bass Exp $ + +S="${WORKDIR}/${P}" +DESCRIPTION="A transparent POP3-Proxy with virus-scanning capabilities." +SRC_URI="mirror://sourceforge/pop3vscan/${P}.tar.gz" +HOMEPAGE="pop3vscan.sf.net" +LICENSE="GPL-2" +DEPEND="net-mail/ripmime" +RDEPEND="${DEPEND}" +SLOT="0" + +src_compile() { + make || die +} + +src_install () { + dodir /usr/sbin + dosbin pop3vscan + dodir /etc + insinto /etc + doins pop3vscan.conf pop3vscan.mail + + insinto /etc/init.d + doins ${FILESDIR}/pop3vscan + fperms 755 /etc/init.d/pop3vscan + + dodoc README +} + +pkg_postinstall () { + einfo "You need configure /etc/pop3vscan and /etc/pop3vscan.mail" + einfo "For start pop3vscan you can use /etc/init.d/pop3vscan start" +} |