summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2004-07-13 18:24:19 +0000
committerSeemant Kulleen <seemant@gentoo.org>2004-07-13 18:24:19 +0000
commitcb5449fe0ca8cdf98bebca6ffaa151ccc38abe79 (patch)
treec411f1123e969d3c51be8fb26205bffe84b7e919 /net-misc/whois/whois-4.6.13.ebuild
parentbumps so that expect doesn't install mkpasswd, which net-misc/whois is suppos... (diff)
downloadgentoo-2-cb5449fe0ca8cdf98bebca6ffaa151ccc38abe79.tar.gz
gentoo-2-cb5449fe0ca8cdf98bebca6ffaa151ccc38abe79.tar.bz2
gentoo-2-cb5449fe0ca8cdf98bebca6ffaa151ccc38abe79.zip
in place bumps to ensure that whois owns the mkpasswd binary and manpage, rather than expect. This bump corresponds to bug #51353 by Carsten Lohrke <carlo@gentoo.org>
Diffstat (limited to 'net-misc/whois/whois-4.6.13.ebuild')
-rw-r--r--net-misc/whois/whois-4.6.13.ebuild53
1 files changed, 0 insertions, 53 deletions
diff --git a/net-misc/whois/whois-4.6.13.ebuild b/net-misc/whois/whois-4.6.13.ebuild
deleted file mode 100644
index 23cb5849cd66..000000000000
--- a/net-misc/whois/whois-4.6.13.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/whois/whois-4.6.13.ebuild,v 1.5 2004/07/01 22:11:22 squinky86 Exp $
-
-inherit eutils
-
-IUSE="nls"
-MY_P=${P/-/_}
-DESCRIPTION="improved Whois Client"
-SRC_URI="http://www.linux.it/~md/software/${MY_P}.tar.gz"
-HOMEPAGE="http://www.linux.it/~md/software/"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~mips hppa ~ia64 alpha ~amd64"
-
-DEPEND=">=sys-apps/sed-4
- >=dev-lang/perl-5"
-RDEPEND="virtual/libc"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- sed -i -e "s/-O2/$CFLAGS/" Makefile
-
- use nls && ( \
- cd po
- sed -i -e "s:/usr/bin/install:install:" Makefile
- ) || ( \
- sed -i -e "s:cd po.*::" Makefile
- )
-
- epatch ${FILESDIR}/${P}-gentoo-security.patch || die
-}
-
-src_compile() {
- make || die
- make mkpasswd || die
-}
-
-src_install() {
- dodir /usr/bin
- dodir /usr/share/man/man1
- use nls && dodir /usr/share/locale
- make BASEDIR=${D} prefix=/usr mandir=/usr/share/man install || die
-
- dobin mkpasswd
- doman mkpasswd.1
- dodoc README whois.conf debian/changelog debian/copyright
-
- einfo ""
- einfo "The example whois.conf is located in /usr/doc/${P}"
- einfo ""
-}