diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-18 06:37:08 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-18 06:37:08 +0000 |
commit | 0d35c37847890531cf44b5da2bed36ea919ca775 (patch) | |
tree | 2717ea6045d27fd322d0bf6c3ab21995d963ab8e /games-util/searchtool | |
parent | fix syntax (Manifest recommit) (diff) | |
download | gentoo-2-0d35c37847890531cf44b5da2bed36ea919ca775.tar.gz gentoo-2-0d35c37847890531cf44b5da2bed36ea919ca775.tar.bz2 gentoo-2-0d35c37847890531cf44b5da2bed36ea919ca775.zip |
IUSE; error messages; tidy
Diffstat (limited to 'games-util/searchtool')
-rw-r--r-- | games-util/searchtool/ChangeLog | 8 | ||||
-rw-r--r-- | games-util/searchtool/searchtool-0.4.4.ebuild | 13 |
2 files changed, 13 insertions, 8 deletions
diff --git a/games-util/searchtool/ChangeLog b/games-util/searchtool/ChangeLog index 83b2905eb11c..185bef640941 100644 --- a/games-util/searchtool/ChangeLog +++ b/games-util/searchtool/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-util/searchtool -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/searchtool/ChangeLog,v 1.2 2003/09/10 20:27:27 vapier Exp $ +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/searchtool/ChangeLog,v 1.3 2004/04/18 06:37:08 mr_bones_ Exp $ + + 17 Apr 2004; Michael Sterrett <mr_bones_@gentoo.org> + searchtool-0.4.4.ebuild: + IUSE; error messages; tidy *searchtool-0.4.4 (21 Jun 2003) diff --git a/games-util/searchtool/searchtool-0.4.4.ebuild b/games-util/searchtool/searchtool-0.4.4.ebuild index 09a85041c1ba..c0f37aa04b85 100644 --- a/games-util/searchtool/searchtool-0.4.4.ebuild +++ b/games-util/searchtool/searchtool-0.4.4.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/searchtool/searchtool-0.4.4.ebuild,v 1.1 2003/09/10 18:53:23 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-util/searchtool/searchtool-0.4.4.ebuild,v 1.2 2004/04/18 06:37:08 mr_bones_ Exp $ inherit games @@ -11,14 +11,15 @@ SRC_URI="mirror://sourceforge/searchtool/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" +IUSE="" DEPEND="dev-java/ant" RDEPEND="virtual/jre" -S=${WORKDIR}/${PN} +S="${WORKDIR}/${PN}" src_compile() { - ant || die + ant || die "ant failed" sed \ -e "s:GENTOO_DATADIR:${GAMES_DATADIR}/${PN}:" \ -e "s:GENTOO_P:${P}:" \ @@ -26,9 +27,9 @@ src_compile() { } src_install() { - insinto ${GAMES_DATADIR}/${PN} + dogamesbin searchtool || die "dogamesbin failed" + insinto "${GAMES_DATADIR}/${PN}" doins ${P}.jar - dogamesbin searchtool dodoc README prepgamesdirs } |