diff options
author | Wulf Krueger <philantrop@gentoo.org> | 2008-01-26 18:30:18 +0000 |
---|---|---|
committer | Wulf Krueger <philantrop@gentoo.org> | 2008-01-26 18:30:18 +0000 |
commit | 9b7f7944273cfde83892842910a22771180a6460 (patch) | |
tree | a188284ca25b644123e7d695cb830e94408f46c6 | |
parent | Fix from Sven to use KV_OUT_DIR rather than KV_DIR for the built kernel objec... (diff) | |
download | gentoo-2-9b7f7944273cfde83892842910a22771180a6460.tar.gz gentoo-2-9b7f7944273cfde83892842910a22771180a6460.tar.bz2 gentoo-2-9b7f7944273cfde83892842910a22771180a6460.zip |
Version bump as per bug 207539. Thanks, Todd Partridge, for providing the ebuild. Minor QA fixes.
(Portage version: 2.1.4)
-rw-r--r-- | app-dicts/gnuvd/ChangeLog | 11 | ||||
-rw-r--r-- | app-dicts/gnuvd/files/digest-gnuvd-1.0.5 | 3 | ||||
-rw-r--r-- | app-dicts/gnuvd/gnuvd-1.0.3.ebuild | 6 | ||||
-rw-r--r-- | app-dicts/gnuvd/gnuvd-1.0.5.ebuild | 22 |
4 files changed, 37 insertions, 5 deletions
diff --git a/app-dicts/gnuvd/ChangeLog b/app-dicts/gnuvd/ChangeLog index 68c7e2e85d4f..91857de8b457 100644 --- a/app-dicts/gnuvd/ChangeLog +++ b/app-dicts/gnuvd/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-dicts/gnuvd -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/gnuvd/ChangeLog,v 1.1 2007/09/02 19:36:52 philantrop Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/gnuvd/ChangeLog,v 1.2 2008/01/26 18:30:17 philantrop Exp $ + +*gnuvd-1.0.5 (26 Jan 2008) + + 26 Jan 2008; Wulf C. Krueger <philantrop@gentoo.org> gnuvd-1.0.3.ebuild, + +gnuvd-1.0.5.ebuild: + Version bump as per bug 207539. Thanks, Todd Partridge, for providing the + ebuild. Minor QA fixes. *gnuvd-1.0.3 (02 Sep 2007) diff --git a/app-dicts/gnuvd/files/digest-gnuvd-1.0.5 b/app-dicts/gnuvd/files/digest-gnuvd-1.0.5 new file mode 100644 index 000000000000..48fc318b2760 --- /dev/null +++ b/app-dicts/gnuvd/files/digest-gnuvd-1.0.5 @@ -0,0 +1,3 @@ +MD5 2e4dfc5a4a0957db3e55459d958d1906 gnuvd-1.0.5.tar.gz 167387 +RMD160 186159e8cc1fc8cf47f20c0fa0f2cf237a7e80be gnuvd-1.0.5.tar.gz 167387 +SHA256 b03ecc01ae94b749201cb453e71377131f0809f6ce00fc08c7611e3eac399b7a gnuvd-1.0.5.tar.gz 167387 diff --git a/app-dicts/gnuvd/gnuvd-1.0.3.ebuild b/app-dicts/gnuvd/gnuvd-1.0.3.ebuild index d3e970311ff1..f94d1a03a858 100644 --- a/app-dicts/gnuvd/gnuvd-1.0.3.ebuild +++ b/app-dicts/gnuvd/gnuvd-1.0.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/gnuvd/gnuvd-1.0.3.ebuild,v 1.1 2007/09/02 19:36:52 philantrop Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/gnuvd/gnuvd-1.0.3.ebuild,v 1.2 2008/01/26 18:30:17 philantrop Exp $ DESCRIPTION="gnuvd is an online dictionary that uses the online dictionary of Van Dale" HOMEPAGE="http://www.djcbsoftware.nl/code/gnuvd" @@ -17,6 +17,6 @@ RDEPEND="${DEPEND}" S="${WORKDIR}/${P/_/}" src_install() { - emake DESTDIR=${D} install || die "installation failed" + emake DESTDIR="${D}" install || die "installation failed" dodoc AUTHORS ChangeLog INSTALL NEWS README README.nl || die "installing docs failed" } diff --git a/app-dicts/gnuvd/gnuvd-1.0.5.ebuild b/app-dicts/gnuvd/gnuvd-1.0.5.ebuild new file mode 100644 index 000000000000..0984598d434f --- /dev/null +++ b/app-dicts/gnuvd/gnuvd-1.0.5.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/gnuvd/gnuvd-1.0.5.ebuild,v 1.1 2008/01/26 18:30:17 philantrop Exp $ + +DESCRIPTION="gnuvd is a command line interface to the Van Dale(tm) on-line Dutch dictionary." +HOMEPAGE="http://www.djcbsoftware.nl/code/gnuvd" +SRC_URI="${HOMEPAGE}/${P/_/}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${P/_/}" + +src_install() { + emake DESTDIR="${D}" install || die "installation failed" + dodoc AUTHORS ChangeLog INSTALL NEWS README README.nl || die "installing docs failed" +} |