blob: 83d36fba33a4414147827551a84791b0b2441f1d (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/bsdwhois/bsdwhois-1.43.2.1.ebuild,v 1.9 2007/04/11 16:20:59 drizzt Exp $
DESCRIPTION="FreeBSD Whois Client"
HOMEPAGE="http://www.freebsd.org/"
SRC_URI="http://utenti.gufi.org/~drizzt/codes/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="userland_BSD"
RDEPEND=""
DEPEND=""
src_install() {
emake DESTDIR="${D}" install || die
if ! use userland_BSD; then
mv "${D}"/usr/share/man/man1/{whois,bsdwhois}.1
mv "${D}"/usr/bin/{whois,bsdwhois}
fi
}
|