diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-08-14 20:52:49 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-08-14 20:52:49 +0000 |
commit | f65f0135d83a5745d32bc79791f6985004f7b0ad (patch) | |
tree | 13852ef552139144345a45e845920a5563a8b9d6 /net-mail | |
parent | BIG version bump. Closes bug #5997. (diff) | |
download | gentoo-2-f65f0135d83a5745d32bc79791f6985004f7b0ad.tar.gz gentoo-2-f65f0135d83a5745d32bc79791f6985004f7b0ad.tar.bz2 gentoo-2-f65f0135d83a5745d32bc79791f6985004f7b0ad.zip |
Added rblcheck to portage. Thanks to Enrico Morelli for the initial
ebuild. Added KEYWORDS, SLOT, and LICENSE and utilized the
mirror://sourceforge feature.
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/rblcheck/ChangeLog | 10 | ||||
-rw-r--r-- | net-mail/rblcheck/files/digest-rblcheck-1.5 | 1 | ||||
-rw-r--r-- | net-mail/rblcheck/rblcheck-1.5.ebuild | 27 |
3 files changed, 38 insertions, 0 deletions
diff --git a/net-mail/rblcheck/ChangeLog b/net-mail/rblcheck/ChangeLog new file mode 100644 index 000000000000..43e2108bf22f --- /dev/null +++ b/net-mail/rblcheck/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-mail/rblcheck +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/rblcheck/ChangeLog,v 1.1 2002/08/14 20:52:49 raker Exp $ + +*rblcheck-1.5 (14 Aug 2002) + + 14 Aug 2002; Nick Hadaway <raker@gentoo.org> + rblcheck-1.5.ebuild, files/digest-rblcheck-1.5 : + Initial add of ebuild to portage. Thanks to Enrico Morelli for submitting + the original ebuild. Only change made was to use mirror://sourceforge diff --git a/net-mail/rblcheck/files/digest-rblcheck-1.5 b/net-mail/rblcheck/files/digest-rblcheck-1.5 new file mode 100644 index 000000000000..1925eaf231ee --- /dev/null +++ b/net-mail/rblcheck/files/digest-rblcheck-1.5 @@ -0,0 +1 @@ +MD5 fb7ee9adc0e09eee9dda195f9b9e7ca4 rblcheck-1.5.tar.gz 150395 diff --git a/net-mail/rblcheck/rblcheck-1.5.ebuild b/net-mail/rblcheck/rblcheck-1.5.ebuild new file mode 100644 index 000000000000..5a74d7d467e5 --- /dev/null +++ b/net-mail/rblcheck/rblcheck-1.5.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 +# Author: Enrico Morelli - 05/08/2002 + +S=${WORKDIR}/${P} +DESCRIPTION="Perform lookups in RBL-styles services." +SRC_URI="mirror://sourceforge/rblcheck/${P}.tar.gz" +HOMEPAGE="http://rblcheck.sourceforge.net/" +KEYWORDS="*" +SLOT="0" +LICENSE="GPL-2" + +DEPEND="virtual/glibc" + +src_compile() { + cd ${S} + ./configure --prefix=/usr + emake || die +} + +src_install () { + exeinto /usr/bin + doexe rbl rblcheck + + dodoc README docs/rblcheck.ps docs/rblcheck.rtf + +} |