summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-10-25 07:10:02 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-10-25 07:10:02 +0000
commitc1341c2e79cebd94daf7941a59de708407ac1b54 (patch)
tree93b3a7e8f8c7379f1f52441de92e1f9c3d1fdfb1 /x11-misc/xdialog
parentnew package (diff)
downloadgentoo-2-c1341c2e79cebd94daf7941a59de708407ac1b54.tar.gz
gentoo-2-c1341c2e79cebd94daf7941a59de708407ac1b54.tar.bz2
gentoo-2-c1341c2e79cebd94daf7941a59de708407ac1b54.zip
new package
Diffstat (limited to 'x11-misc/xdialog')
-rw-r--r--x11-misc/xdialog/ChangeLog15
-rw-r--r--x11-misc/xdialog/files/digest-xdialog-2.0.61
-rw-r--r--x11-misc/xdialog/xdialog-2.0.6.ebuild39
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 .
+}