blob: ba3e1b5c7d9c0db895ee8da35be27eac0155be2f (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-0.9_beta20031207.ebuild,v 1.11 2004/09/16 01:58:27 pvdabeel Exp $
inherit eutils
MY_PV="${PV/_beta/b-}"
S=${WORKDIR}/${PN}-${MY_PV}
DESCRIPTION="tool to display dialog boxes from a shell"
HOMEPAGE="http://hightek.org/dialog/"
SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${MY_PV}.orig.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~mips alpha arm hppa amd64 ~ia64 ~ppc64 s390 macos ppc-macos"
IUSE=""
DEPEND=">=app-shells/bash-2.04-r3
>=sys-libs/ncurses-5.2-r5"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-estonian-sed.patch
}
src_compile() {
econf --with-ncurses || die "configure failed"
emake || die "build failed"
}
src_install() {
make install DESTDIR=${D} || die
dodoc CHANGES README VERSION
}
|