summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Pawlik <nelchael@gentoo.org>2006-07-01 19:51:37 +0000
committerKrzysztof Pawlik <nelchael@gentoo.org>2006-07-01 19:51:37 +0000
commit2f72e97ac0f7dc365b56d59663d63589ff25c0c6 (patch)
tree236fea2421823b1ba034bf45a31c2ec2d68311ca /x11-misc
parentAdded fam to DEPEND - fixes bug #137593. (diff)
downloadgentoo-2-2f72e97ac0f7dc365b56d59663d63589ff25c0c6.tar.gz
gentoo-2-2f72e97ac0f7dc365b56d59663d63589ff25c0c6.tar.bz2
gentoo-2-2f72e97ac0f7dc365b56d59663d63589ff25c0c6.zip
Revision bump to use GTK+ 2.
(Portage version: 2.1.1_pre1-r5)
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/xdialog/ChangeLog8
-rw-r--r--x11-misc/xdialog/files/digest-xdialog-2.2.1-r13
-rw-r--r--x11-misc/xdialog/xdialog-2.2.1-r1.ebuild29
3 files changed, 39 insertions, 1 deletions
diff --git a/x11-misc/xdialog/ChangeLog b/x11-misc/xdialog/ChangeLog
index cf9cd6ca0c2f..3cccd614bcc7 100644
--- a/x11-misc/xdialog/ChangeLog
+++ b/x11-misc/xdialog/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-misc/xdialog
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdialog/ChangeLog,v 1.13 2006/05/13 18:32:44 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdialog/ChangeLog,v 1.14 2006/07/01 19:51:37 nelchael Exp $
+
+*xdialog-2.2.1-r1 (01 Jul 2006)
+
+ 01 Jul 2006; Krzysiek Pawlik <nelchael@gentoo.org>
+ +xdialog-2.2.1-r1.ebuild:
+ Revision bump to use GTK+ 2.
*xdialog-2.2.1 (13 May 2006)
diff --git a/x11-misc/xdialog/files/digest-xdialog-2.2.1-r1 b/x11-misc/xdialog/files/digest-xdialog-2.2.1-r1
new file mode 100644
index 000000000000..495a23d9bce2
--- /dev/null
+++ b/x11-misc/xdialog/files/digest-xdialog-2.2.1-r1
@@ -0,0 +1,3 @@
+MD5 6bdf128ed63e4a1d6fc64c380dbe6d97 Xdialog-2.2.1.tar.bz2 460128
+RMD160 9aa6a3ac7c23523b7e27c3ff3b33c41644b55d96 Xdialog-2.2.1.tar.bz2 460128
+SHA256 b65104171bf3656b8de332449565221ac4b7f1e6f144c579a074900ac6178a23 Xdialog-2.2.1.tar.bz2 460128
diff --git a/x11-misc/xdialog/xdialog-2.2.1-r1.ebuild b/x11-misc/xdialog/xdialog-2.2.1-r1.ebuild
new file mode 100644
index 000000000000..a0deab83fa1c
--- /dev/null
+++ b/x11-misc/xdialog/xdialog-2.2.1-r1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdialog/xdialog-2.2.1-r1.ebuild,v 1.1 2006/07/01 19:51:37 nelchael Exp $
+
+DESCRIPTION="drop-in replacement for cdialog using GTK"
+HOMEPAGE="http://xdialog.dyns.net/"
+SRC_URI="http://thgodef.nerim.net/xdialog/Xdialog-${PV}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86"
+IUSE="nls"
+
+DEPEND=">=x11-libs/gtk+-2.2
+ nls? ( >=sys-devel/gettext-0.10.38 )"
+
+S="${WORKDIR}/${P/x/X}"
+
+src_compile() {
+ econf $(use_enable nls) --with-gtk2 || die
+ emake || die "emake failed"
+}
+
+src_install() {
+ make DESTDIR="${D}" install || die "make install failed"
+ rm -rf "${D}/usr/share/doc"
+ dodoc ChangeLog AUTHORS README
+ dohtml -r doc/
+}