blob: 7a55acb1e7458e3f08a7dc1c3572acc0c06682f7 (
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
51
52
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.1.20080819-r1.ebuild,v 1.1 2009/04/14 20:55:20 truedfx Exp $
EAPI=2
inherit eutils
MY_PV="${PV/1.1./1.1-}"
S=${WORKDIR}/${PN}-${MY_PV}
DESCRIPTION="tool to display dialog boxes from a shell"
HOMEPAGE="http://invisible-island.net/dialog/dialog.html"
SRC_URI="ftp://invisible-island.net/${PN}/${PN}-${MY_PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="examples minimal nls unicode"
RDEPEND=">=app-shells/bash-2.04-r3
!unicode? ( >=sys-libs/ncurses-5.2-r5 )
unicode? ( >=sys-libs/ncurses-5.2-r5[unicode] )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
src_prepare() {
epatch "${FILESDIR}"/${PN}-shared.patch
}
src_configure() {
local ncursesw
use unicode && ncursesw="w"
econf \
$(use_enable nls) \
$(use_with !minimal libtool) \
--with-ncurses${ncursesw}
}
src_install() {
if use minimal; then
emake DESTDIR="${D}" install || die "install failed"
else
emake DESTDIR="${D}" install-full || die "install failed"
fi
dodoc CHANGES README VERSION
if use examples; then
docinto samples
dodoc samples/*
fi
}
|