blob: d8b485917dfd9abc3b8b7f90832d78037d22a7b2 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdialog/xdialog-2.1.1.ebuild,v 1.3 2004/06/24 22:39:46 agriffis Exp $
S=${WORKDIR}/${P/x/X}
DESCRIPTION="drop-in replacement for cdialog using GTK"
HOMEPAGE="http://xdialog.dyns.net/"
SRC_URI="http://freshmeat.net/redir/xdialog/11876/url_bz2/Xdialog-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE="nls"
DEPEND="virtual/x11
=x11-libs/gtk+-1.2*
nls? ( >=sys-devel/gettext-0.10.38 )"
src_compile() {
econf `use_enable nls` || die
emake || die
}
src_install() {
einstall || die
dodoc ChangeLog AUTHORS COPYING INSTALL README* TODO ABOUT-NLS
cd doc
dohtml -r .
}
|