diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-12-17 16:26:31 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-12-17 16:26:31 +0000 |
commit | 3dd334ee059e141e28009df1f979b71811ff374c (patch) | |
tree | dd57269a4df7b4c66d24885d6eab0fc6d7aedf2d /x11-misc/xdialog | |
parent | ppc64 (diff) | |
download | gentoo-2-3dd334ee059e141e28009df1f979b71811ff374c.tar.gz gentoo-2-3dd334ee059e141e28009df1f979b71811ff374c.tar.bz2 gentoo-2-3dd334ee059e141e28009df1f979b71811ff374c.zip |
fix #35990
Diffstat (limited to 'x11-misc/xdialog')
-rw-r--r-- | x11-misc/xdialog/xdialog-2.0.6.ebuild | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/x11-misc/xdialog/xdialog-2.0.6.ebuild b/x11-misc/xdialog/xdialog-2.0.6.ebuild index d1b1b7fa3ba0..ba6d51a812b1 100644 --- a/x11-misc/xdialog/xdialog-2.0.6.ebuild +++ b/x11-misc/xdialog/xdialog-2.0.6.ebuild @@ -1,35 +1,27 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdialog/xdialog-2.0.6.ebuild,v 1.3 2003/09/05 23:29:06 msterret Exp $ - -IUSE="nls" +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdialog/xdialog-2.0.6.ebuild,v 1.4 2003/12/17 16:26:31 vapier Exp $ S=${WORKDIR}/${P/x/X} -DESCRIPTION="A drop-in replacement for cdialog. Uses GTK for GUI dialog" +DESCRIPTION="drop-in replacement for cdialog using GTK" +HOMEPAGE="http://xdialog.dyns.net/" SRC_URI="http://ftp.debian.org/debian/pool/main/x/${PN}/${PN}_${PV}.orig.tar.gz" -HOMEPAGE="http://xdialog.free.fr/" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="~x86" +IUSE="nls" DEPEND="virtual/x11 =x11-libs/gtk+-1.2* nls? ( >=sys-devel/gettext-0.10.38 )" src_compile() { - local myconf - - use nls \ - && myconf="${myconf} --enable-nls" \ - || myconf="${myconf} --disable-nls" - - econf ${myconf} - + econf `use_enable nls` || die emake || die } -src_install () { +src_install() { einstall || die dodoc ChangeLog AUTHORS COPYING INSTALL README* TODO ABOUT-NLS |