diff options
author | Markus Nigbur <pyrania@gentoo.org> | 2004-03-06 09:49:54 +0000 |
---|---|---|
committer | Markus Nigbur <pyrania@gentoo.org> | 2004-03-06 09:49:54 +0000 |
commit | 1de6cc5bab34df489b24dcf42f2ba0f48f83339b (patch) | |
tree | 6e310a719ffdda65d070810a603a6eec35474598 /x11-misc/xdialog | |
parent | Added to ~ppc (diff) | |
download | historical-1de6cc5bab34df489b24dcf42f2ba0f48f83339b.tar.gz historical-1de6cc5bab34df489b24dcf42f2ba0f48f83339b.tar.bz2 historical-1de6cc5bab34df489b24dcf42f2ba0f48f83339b.zip |
Version bump.
Diffstat (limited to 'x11-misc/xdialog')
-rw-r--r-- | x11-misc/xdialog/ChangeLog | 9 | ||||
-rw-r--r-- | x11-misc/xdialog/Manifest | 4 | ||||
-rw-r--r-- | x11-misc/xdialog/files/digest-xdialog-2.1.1 | 1 | ||||
-rw-r--r-- | x11-misc/xdialog/xdialog-2.1.1.ebuild | 31 |
4 files changed, 42 insertions, 3 deletions
diff --git a/x11-misc/xdialog/ChangeLog b/x11-misc/xdialog/ChangeLog index c1f55487f675..80d25f7e9132 100644 --- a/x11-misc/xdialog/ChangeLog +++ b/x11-misc/xdialog/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/xdialog -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdialog/ChangeLog,v 1.2 2003/02/12 09:33:16 vapier Exp $ +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdialog/ChangeLog,v 1.3 2004/03/06 09:49:54 pyrania Exp $ + +*xdialog-2.1.1 (06 Mar 2004) + + 06 Mar 2004; Markus Nigbur <pyrania@gentoo.org> xdialog-2.1.1.ebuild: + Version bump. *xdialog-2.0.6 (25 Oct 2002) diff --git a/x11-misc/xdialog/Manifest b/x11-misc/xdialog/Manifest index 659dfaa9c91f..a331390cf629 100644 --- a/x11-misc/xdialog/Manifest +++ b/x11-misc/xdialog/Manifest @@ -1,3 +1,5 @@ MD5 205c7b6e9a79408819cf8d6bf8d7e70d xdialog-2.0.6.ebuild 731 -MD5 8c8cd72e97d5de526ccc27754e268816 ChangeLog 592 +MD5 8a83b2008d5fc6d6238f69bbe3acf077 xdialog-2.1.1.ebuild 745 +MD5 795be7b23666a3a3571f370605df2a06 ChangeLog 712 MD5 17946a839cc5b366cd7e17738e9af5fd files/digest-xdialog-2.0.6 70 +MD5 d2d74da1ddf6cadf262ea4608ebcbbde files/digest-xdialog-2.1.1 66 diff --git a/x11-misc/xdialog/files/digest-xdialog-2.1.1 b/x11-misc/xdialog/files/digest-xdialog-2.1.1 new file mode 100644 index 000000000000..d6c130994b1e --- /dev/null +++ b/x11-misc/xdialog/files/digest-xdialog-2.1.1 @@ -0,0 +1 @@ +MD5 379cd3983a22d98d4436e8d4f16a56e1 Xdialog-2.1.1.tar.bz2 439548 diff --git a/x11-misc/xdialog/xdialog-2.1.1.ebuild b/x11-misc/xdialog/xdialog-2.1.1.ebuild new file mode 100644 index 000000000000..eced512b23fe --- /dev/null +++ b/x11-misc/xdialog/xdialog-2.1.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# 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.1 2004/03/06 09:49:54 pyrania 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" +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 . +} |