blob: 2197695c3bbc711ee66886a077331c43c90714ed (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/bwwhois/bwwhois-3.2.ebuild,v 1.1 2002/12/22 16:58:17 mcummings Exp $
inherit perl-post
P=whois-3.2
S=${WORKDIR}/${P}
A=${P}.tgz
DESCRIPTION="Perl-based whois client designed to work with the new Shared Registration System"
SRC_URI="http://whois.bw.org/dist/${A}"
HOMEPAGE="http://whois.bw.org/"
SLOT="0"
LICENSE="Artistic | GPL-2"
KEYWORDS="x86 ~ppc ~sparc ~alpha"
DEPEND="sys-devel/perl"
src_unpack() {
unpack ${A}
cd ${S}
}
src_install () {
exeinto usr/bin
newexe whois bwwhois
dosym bwwhois /usr/bin/whois
doman whois.1
insinto etc/whois
doins whois.conf tld.conf sd.conf
perl-post_perlinfo
insinto ${SITE_LIB}
doins bwInclude.pm
perl-post_updatepod
}
|