diff options
-rw-r--r-- | app-dicts/verbiste/ChangeLog | 5 | ||||
-rw-r--r-- | app-dicts/verbiste/verbiste-0.1.9.ebuild | 4 | ||||
-rw-r--r-- | app-dicts/wordnet/ChangeLog | 5 | ||||
-rw-r--r-- | app-dicts/wordnet/wordnet-2.0.ebuild | 5 | ||||
-rw-r--r-- | eclass/java-utils.eclass | 2 |
5 files changed, 14 insertions, 7 deletions
diff --git a/app-dicts/verbiste/ChangeLog b/app-dicts/verbiste/ChangeLog index 910736090d66..a4a5d170c739 100644 --- a/app-dicts/verbiste/ChangeLog +++ b/app-dicts/verbiste/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-dicts/verbiste # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/verbiste/ChangeLog,v 1.4 2004/11/22 05:20:12 tester Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/verbiste/ChangeLog,v 1.5 2004/11/30 21:08:43 swegener Exp $ + + 30 Nov 2004; Sven Wegener <swegener@gentoo.org> verbiste-0.1.9.ebuild: + Fixed invalid atoms in *DEPEND. 22 Nov 2004; Olivier Crete <tester@gentoo.org> verbiste-0.1.9.ebuild: Replaced einstall with make install DESTDIR=, fixes 72018 thanks vapier diff --git a/app-dicts/verbiste/verbiste-0.1.9.ebuild b/app-dicts/verbiste/verbiste-0.1.9.ebuild index b2d9d2dd9c28..24f8b993c993 100644 --- a/app-dicts/verbiste/verbiste-0.1.9.ebuild +++ b/app-dicts/verbiste/verbiste-0.1.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/verbiste/verbiste-0.1.9.ebuild,v 1.4 2004/11/22 05:20:12 tester Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/verbiste/verbiste-0.1.9.ebuild,v 1.5 2004/11/30 21:08:43 swegener Exp $ inherit eutils @@ -16,7 +16,7 @@ IUSE="gnome" DEPEND="dev-libs/libxml2 gnome? ( >=gnome-base/gnome-panel-2.0 - >=libgnomeui-2.0 )" + >=gnome-base/libgnomeui-2.0 )" src_compile() { cd ${S} diff --git a/app-dicts/wordnet/ChangeLog b/app-dicts/wordnet/ChangeLog index 111963682930..e329c95f6395 100644 --- a/app-dicts/wordnet/ChangeLog +++ b/app-dicts/wordnet/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-dicts/wordnet # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/wordnet/ChangeLog,v 1.2 2004/08/03 11:43:50 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/wordnet/ChangeLog,v 1.3 2004/11/30 21:06:29 swegener Exp $ + + 30 Nov 2004; Sven Wegener <swegener@gentoo.org> wordnet-2.0.ebuild: + Fixed invalid atoms in *DEPEND. 03 Aug 2004; David Holm <dholm@gentoo.org> wordnet-2.0.ebuild: Added to ~ppc. diff --git a/app-dicts/wordnet/wordnet-2.0.ebuild b/app-dicts/wordnet/wordnet-2.0.ebuild index 2107fce4790e..3636ad5c41ff 100644 --- a/app-dicts/wordnet/wordnet-2.0.ebuild +++ b/app-dicts/wordnet/wordnet-2.0.ebuild @@ -1,13 +1,14 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/wordnet/wordnet-2.0.ebuild,v 1.2 2004/08/03 11:43:50 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/wordnet/wordnet-2.0.ebuild,v 1.3 2004/11/30 21:06:29 swegener Exp $ inherit eutils DESCRIPTION="WordNet : a lexical database for the English language" HOMEPAGE="http://www.cogsci.princeton.edu/~wn/" SRC_URI="ftp://ftp.cogsci.princeton.edu/pub/wordnet/${PV}/WordNet-${PV}.tar.gz" -DEPEND="tcl tk" +DEPEND="dev-lang/tcl + dev-lang/tk" LICENSE="Princeton" IUSE="" SLOT="0" diff --git a/eclass/java-utils.eclass b/eclass/java-utils.eclass index 44aa2741bf88..273132264449 100644 --- a/eclass/java-utils.eclass +++ b/eclass/java-utils.eclass @@ -13,7 +13,7 @@ ECLASS=java-utils INHERITED="$INHERITED $ECLASS" DESCRIPTION="Based on the $ECLASS eclass" -DEPEND=">=java-config-1.2.7" +DEPEND=">=dev-java/java-config-1.2.7" EXPORT_FUNCTIONS pkg_setup |