summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriele Giorgetti <stroke@gentoo.org>2002-06-06 21:13:41 +0000
committerGabriele Giorgetti <stroke@gentoo.org>2002-06-06 21:13:41 +0000
commit62a868434d7dc38466abbabbaef39852da8bea16 (patch)
treeacfd1f5a059a3ff703eabf681b97d1dfee72ccee /net-misc/jwhois
parentUnmask xmms-1.2.7-r9 it sucks less (diff)
downloadhistorical-62a868434d7dc38466abbabbaef39852da8bea16.tar.gz
historical-62a868434d7dc38466abbabbaef39852da8bea16.tar.bz2
historical-62a868434d7dc38466abbabbaef39852da8bea16.zip
New package.
Diffstat (limited to 'net-misc/jwhois')
-rw-r--r--net-misc/jwhois/ChangeLog13
-rw-r--r--net-misc/jwhois/files/digest-jwhois-3.2.01
-rw-r--r--net-misc/jwhois/jwhois-3.2.0.ebuild35
3 files changed, 49 insertions, 0 deletions
diff --git a/net-misc/jwhois/ChangeLog b/net-misc/jwhois/ChangeLog
new file mode 100644
index 000000000000..0c2c850ddbc5
--- /dev/null
+++ b/net-misc/jwhois/ChangeLog
@@ -0,0 +1,13 @@
+# ChangeLog for net-misc/jwhois
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/jwhois/ChangeLog,v 1.1 2002/06/06 21:13:40 stroke Exp $
+
+*jwhois-3.2.0 (06 June 2002)
+
+ 06 June 2002; Gabriele Giorgetti <stroke@gentoo.org> ChangeLog :
+
+ Added initial ChangeLog which should be updated whenever the package is
+ updated in any way. This changelog is targetted to users. This means that the
+ comments should well explained and written in clean English. The details about
+ writing correct changelogs are explained in the skel.ChangeLog file which you
+ can find in the root directory of the portage repository.
diff --git a/net-misc/jwhois/files/digest-jwhois-3.2.0 b/net-misc/jwhois/files/digest-jwhois-3.2.0
new file mode 100644
index 000000000000..2c07650b5612
--- /dev/null
+++ b/net-misc/jwhois/files/digest-jwhois-3.2.0
@@ -0,0 +1 @@
+MD5 d2b301901aaa924d5e372a5a299ac699 jwhois-3.2.0.tar.gz 361144
diff --git a/net-misc/jwhois/jwhois-3.2.0.ebuild b/net-misc/jwhois/jwhois-3.2.0.ebuild
new file mode 100644
index 000000000000..64885aa84cc7
--- /dev/null
+++ b/net-misc/jwhois/jwhois-3.2.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/jwhois/jwhois-3.2.0.ebuild,v 1.1 2002/06/06 21:13:40 stroke Exp $
+
+S=${WORKDIR}/${P}
+
+DESCRIPTION="Advanced Internet Whois client capable of recursive queries"
+
+HOMEPAGE="http://http://www.gnu.org/software/jwhois/"
+
+LICENSE="GPL-2"
+
+SRC_URI="http://www.mirror.ac.uk/sites/ftp.gnu.org/gnu/jwhois/${P}.tar.gz
+ ftp://ftp.gnu.org/gnu/jwhois/${P}.tar.gz"
+
+SLOT="0"
+
+DEPEND="virtual/glibc"
+RDEPEND="${DEPEND}"
+
+src_compile() {
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --infodir=/usr/share/info \
+ --localstatedir=/var/cache/ \
+ --without-cache \
+ --mandir=/usr/share/man || die "./configure failed"
+ emake || die
+}
+
+src_install () {
+ make DESTDIR=${D} install || die
+}
+