summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Veller <tove@gentoo.org>2011-01-09 08:33:28 +0000
committerTorsten Veller <tove@gentoo.org>2011-01-09 08:33:28 +0000
commit16ece3de81e9389c3461ba556509400b1d499700 (patch)
treeba4ce91ecbb05226227a65ffd998fa9cda405865 /app-text
parentLoosen ruby-gettext dependency a bit to include patched version. (diff)
downloadgentoo-2-16ece3de81e9389c3461ba556509400b1d499700.tar.gz
gentoo-2-16ece3de81e9389c3461ba556509400b1d499700.tar.bz2
gentoo-2-16ece3de81e9389c3461ba556509400b1d499700.zip
Version bump (#351184)
(Portage version: 2.2.0_alpha14/cvs/Linux x86_64)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/ding/ChangeLog9
-rw-r--r--app-text/ding/ding-1.7.ebuild29
2 files changed, 36 insertions, 2 deletions
diff --git a/app-text/ding/ChangeLog b/app-text/ding/ChangeLog
index 3ba2c0ab68f1..ba2141872fa2 100644
--- a/app-text/ding/ChangeLog
+++ b/app-text/ding/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-text/ding
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/ding/ChangeLog,v 1.20 2009/09/29 21:08:00 tove Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/ding/ChangeLog,v 1.21 2011/01/09 08:33:28 tove Exp $
+
+*ding-1.7 (09 Jan 2011)
+
+ 09 Jan 2011; Torsten Veller <tove@gentoo.org> +ding-1.7.ebuild:
+ Version bump (#351184). Thanks to Stephan Litterst.
29 Sep 2009; Torsten Veller <tove@gentoo.org> -ding-1.4.ebuild,
-ding-1.5.ebuild, ding-1.6.ebuild:
diff --git a/app-text/ding/ding-1.7.ebuild b/app-text/ding/ding-1.7.ebuild
new file mode 100644
index 000000000000..81a25835374a
--- /dev/null
+++ b/app-text/ding/ding-1.7.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/ding/ding-1.7.ebuild,v 1.1 2011/01/09 08:33:28 tove Exp $
+
+EAPI=3
+
+inherit eutils
+
+DESCRIPTION="Tk based dictionary (German-English) (incl. dictionary itself)"
+HOMEPAGE="http://www-user.tu-chemnitz.de/~fri/ding/"
+SRC_URI="http://wftp.tu-chemnitz.de/pub/Local/urz/ding/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+RDEPEND=">=dev-lang/tk-8.3"
+
+src_install() {
+ dobin ding || die
+ insinto /usr/share/dict
+ doins de-en.txt || die
+ doman ding.1 || die
+ dodoc CHANGES README || die
+
+ doicon ding.png || die
+ domenu ding.desktop || die
+}