blob: a2b954e69edca25852de42ba9aa70952caf234eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Prakash Shetty (Crux) <ps@gnuos.org>
# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-0.7-r1.ebuild,v 1.2 2002/03/27 14:00:58 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A Tool to display Dialog boxes from Shell"
SRC_URI="http://www.advancedresearch.org/dialog/${P}.tar.gz"
HOMEPAGE="http://www.advancedresearch.org/dialog/"
DEPEND=">=sys-apps/bash-2.04-r3
>=sys-libs/ncurses-5.2"
src_install () {
make \
DESTDIR=${D} \
MANDIR=${D}/usr/share/man \
install || die
dodoc AUTHORS COPYING ChangeLog README
doman dialog.1
}
|