diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-10-25 07:10:02 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-10-25 07:10:02 +0000 |
commit | ca86b64689c0c7487e78f24326d0fa323058f05d (patch) | |
tree | e22b451858930f9bed53cd3c8bb0ff9aac914a95 /x11-misc/xdialog | |
parent | new package (diff) | |
download | historical-ca86b64689c0c7487e78f24326d0fa323058f05d.tar.gz historical-ca86b64689c0c7487e78f24326d0fa323058f05d.tar.bz2 historical-ca86b64689c0c7487e78f24326d0fa323058f05d.zip |
new package
Diffstat (limited to 'x11-misc/xdialog')
-rw-r--r-- | x11-misc/xdialog/ChangeLog | 15 | ||||
-rw-r--r-- | x11-misc/xdialog/files/digest-xdialog-2.0.6 | 1 | ||||
-rw-r--r-- | x11-misc/xdialog/xdialog-2.0.6.ebuild | 39 |
3 files changed, 55 insertions, 0 deletions
diff --git a/x11-misc/xdialog/ChangeLog b/x11-misc/xdialog/ChangeLog new file mode 100644 index 000000000000..ce024e54e22b --- /dev/null +++ b/x11-misc/xdialog/ChangeLog @@ -0,0 +1,15 @@ +# ChangeLog for x11-misc/xdialog +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdialog/ChangeLog,v 1.1 2002/10/25 07:10:02 seemant Exp $ + +*xdialog-2.0.6 (25 Oct 2002) + + 25 Oct 2002; Seemant Kulleen <seemant@gentoo.org> xdialog-2.0.6.ebuild + ChangeLog files/xdialog-2.0.6 : + + Package submission by the following people: + sesc@gmx.net (Sebastian Schoeps) in bug #7477 + khindenburg@cherrynebula.net (Kurt V. Hindenburg) in bug #8585 + myself in bug #661. + + Xdialog is a GTK based drop-in replacement for cdialog. diff --git a/x11-misc/xdialog/files/digest-xdialog-2.0.6 b/x11-misc/xdialog/files/digest-xdialog-2.0.6 new file mode 100644 index 000000000000..5db62e51496f --- /dev/null +++ b/x11-misc/xdialog/files/digest-xdialog-2.0.6 @@ -0,0 +1 @@ +MD5 c8b5740167eac2ec91c484283fd8ad97 xdialog_2.0.6.orig.tar.gz 444047 diff --git a/x11-misc/xdialog/xdialog-2.0.6.ebuild b/x11-misc/xdialog/xdialog-2.0.6.ebuild new file mode 100644 index 000000000000..50d8cb1d84e2 --- /dev/null +++ b/x11-misc/xdialog/xdialog-2.0.6.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdialog/xdialog-2.0.6.ebuild,v 1.1 2002/10/25 07:10:02 seemant Exp $ + +IUSE="nls" + +S=${WORKDIR}/${P/x/X} +DESCRIPTION="A drop-in replacement for cdialog. Uses GTK for GUI dialog" +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" +KEYWORDS="~x86" + +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} + + emake || die +} + +src_install () { + einstall || die + + dodoc ChangeLog AUTHORS COPYING INSTALL README* TODO ABOUT-NLS + + cd doc + dohtml -r . +} |