diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-21 23:50:19 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-21 23:50:19 +0000 |
commit | 5e5d609d00cf8fce06dd4ae0955ee6b67119fd92 (patch) | |
tree | fb6f3a27ebc03f1e10553b5e4c39a74c322026cc | |
parent | stable on x86 (old tarball removed requiring early bump) (Manifest recommit) (diff) | |
download | gentoo-2-5e5d609d00cf8fce06dd4ae0955ee6b67119fd92.tar.gz gentoo-2-5e5d609d00cf8fce06dd4ae0955ee6b67119fd92.tar.bz2 gentoo-2-5e5d609d00cf8fce06dd4ae0955ee6b67119fd92.zip |
Doesn't like the new cs-config (bug #54659); use sed not dosed
-rw-r--r-- | games-rpg/planeshift/ChangeLog | 8 | ||||
-rw-r--r-- | games-rpg/planeshift/planeshift-0.2.010-r1.ebuild | 18 |
2 files changed, 18 insertions, 8 deletions
diff --git a/games-rpg/planeshift/ChangeLog b/games-rpg/planeshift/ChangeLog index 9eb2dafeae88..88f33797a28a 100644 --- a/games-rpg/planeshift/ChangeLog +++ b/games-rpg/planeshift/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-rpg/planeshift -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/planeshift/ChangeLog,v 1.3 2003/10/27 00:01:33 dholm Exp $ +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-rpg/planeshift/ChangeLog,v 1.4 2004/06/21 23:50:19 mr_bones_ Exp $ + + 21 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> + planeshift-0.2.010-r1.ebuild: + Doesn't like the new cs-config (bug #54659); use sed not dosed 27 Oct 2003; David Holm <dholm@gentoo.org> planeshift-0.2.010-r1.ebuild: Added to ~ppc. diff --git a/games-rpg/planeshift/planeshift-0.2.010-r1.ebuild b/games-rpg/planeshift/planeshift-0.2.010-r1.ebuild index aad31efa5f7d..61848d2364ed 100644 --- a/games-rpg/planeshift/planeshift-0.2.010-r1.ebuild +++ b/games-rpg/planeshift/planeshift-0.2.010-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/planeshift/planeshift-0.2.010-r1.ebuild,v 1.7 2004/05/06 19:52:56 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-rpg/planeshift/planeshift-0.2.010-r1.ebuild,v 1.8 2004/06/21 23:50:19 mr_bones_ Exp $ inherit eutils games @@ -13,9 +13,12 @@ SLOT="0" KEYWORDS="x86 ppc" IUSE="" -DEPEND="net-misc/curl - dev-games/crystalspace +# Doesn't like the new cs-config (bug #54659) +RDEPEND="net-misc/curl + <dev-games/crystalspace-20040604 dev-games/cel" +DEPEND="${RDEPEND} + >=sys-apps/sed-4" S="${WORKDIR}/${PN}" @@ -47,9 +50,12 @@ src_install() { mv * ${D}/${PLANESHIFT_PREFIX} dogamesbin ${FILESDIR}/planeshift - dosed "s:GENTOO_CRYSTAL_DIR:${CRYSTAL_PREFIX}:" ${GAMES_BINDIR}/planeshift - dosed "s:GENTOO_CEL_DIR:${CRYSTAL_PREFIX}:" ${GAMES_BINDIR}/planeshift - dosed "s:GENTOO_PLANESHIFT_DIR:${PLANESHIFT_PREFIX}:" ${GAMES_BINDIR}/planeshift + sed -i \ + -e "s:GENTOO_CRYSTAL_DIR:${CRYSTAL_PREFIX}:" \ + -e "s:GENTOO_CEL_DIR:${CRYSTAL_PREFIX}:" \ + -e "s:GENTOO_PLANESHIFT_DIR:${PLANESHIFT_PREFIX}:" \ + "${D}${GAMES_BINDIR}/planeshift" \ + || die "sed ${D}${GAMES_BINDIR}/planeshift failed" prepgamesdirs } |