blob: bc5d7c07f30fb411293b8728c12f45799f277071 (
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
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/getopt/getopt-1.1.4.ebuild,v 1.1 2006/05/24 11:49:47 flameeyes Exp $
inherit toolchain-funcs eutils
DESCRIPTION="getopt(1) replacement supporting GNU-style long options"
HOMEPAGE="http://software.frodo.looijaard.name/getopt/"
SRC_URI="http://software.frodo.looijaard.name/getopt/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86-fbsd"
IUSE="nls"
RDEPEND="nls? ( virtual/libintl )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-libintl.patch"
epatch "${FILESDIR}/${P}-longrename.patch"
}
src_compile() {
local nogettext="1"
local libintl=""
if use nls; then
nogettext=0
has_version sys-libs/glibc || libintl="-lintl"
fi
emake CC="$(tc-getCC)" prefix="/usr" \
WITHOUT_GETTEXT=${nogettext} LIBINTL=${libintl} \
CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die "emake failed"
}
src_install() {
use nls && make prefix="/usr" DESTDIR="${D}" install_po
into /usr
newbin getopt getopt-long
newman getopt.1 getopt-long.1
dodoc "${S}/getopt-"*sh
}
|