blob: 6065f55112af052a6dac0a0be8335361d78352e4 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.0.20050206.ebuild,v 1.11 2006/03/27 19:16:22 truedfx Exp $
inherit eutils
MY_PV="${PV/1.0./1.0-}"
S=${WORKDIR}/${PN}-${MY_PV}
DESCRIPTION="tool to display dialog boxes from a shell"
HOMEPAGE="http://hightek.org/dialog/"
SRC_URI="mirror://gentoo/${PN}_${MY_PV}.orig.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 ppc-macos s390 sh sparc x86"
IUSE="unicode"
DEPEND=">=app-shells/bash-2.04-r3
>=sys-libs/ncurses-5.2-r5"
pkg_setup() {
if use unicode && ! built_with_use sys-libs/ncurses unicode; then
eerror "Installing dialog with the unicode flag requires ncurses be"
eerror "built with it as well. Please make sure your /etc/make.conf"
eerror "or /etc/portage/package.use enables it, and re-install"
eerror "ncurses with \`emerge --oneshot sys-libs/ncurses\`."
die "Re-emerge ncurses with the unicode flag"
fi
}
src_compile() {
#export LANG=C
use unicode && ncursesw="w"
econf "--with-ncurses${ncursesw}" || die "configure failed"
emake || die "build failed"
}
src_install() {
make install DESTDIR="${D}" || die
dodoc CHANGES README VERSION
docinto samples
dodoc samples/*
docinto samples/install
dodoc samples/install/*
docinto samples/copifuncs
dodoc samples/copifuncs/*
}
|