diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-08-15 08:54:21 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-08-15 08:54:21 +0000 |
commit | e166bd185355d5fae73a40246213b0d75ea3f213 (patch) | |
tree | 404a25cd8163def018cf8456c0836a20d4b017f5 /games-sports/trophy | |
parent | work with the new 0.6.5 install style (diff) | |
download | historical-e166bd185355d5fae73a40246213b0d75ea3f213.tar.gz historical-e166bd185355d5fae73a40246213b0d75ea3f213.tar.bz2 historical-e166bd185355d5fae73a40246213b0d75ea3f213.zip |
work with the new 0.6.5 install style
Diffstat (limited to 'games-sports/trophy')
-rw-r--r-- | games-sports/trophy/Manifest | 12 | ||||
-rw-r--r-- | games-sports/trophy/trophy-1.1.3.ebuild | 16 |
2 files changed, 20 insertions, 8 deletions
diff --git a/games-sports/trophy/Manifest b/games-sports/trophy/Manifest index b2b6d91ecb2b..42050e8410f1 100644 --- a/games-sports/trophy/Manifest +++ b/games-sports/trophy/Manifest @@ -1,4 +1,14 @@ -MD5 cb2b8f641ddacdbe6eece9f217e53928 trophy-1.1.3.ebuild 1037 +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + MD5 c9e28e181aa7ca2e2f1a890d2d8d952d ChangeLog 380 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 +MD5 7e18125c6b5fcca0fe6407c9b401876c trophy-1.1.3.ebuild 1204 MD5 151be9101f56c25215330c6d473bdb51 files/digest-trophy-1.1.3 69 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.9.10 (GNU/Linux) + +iD8DBQFBHyT5HTu7gpaalycRArmWAKCMhwtAIn34rNwSeWZHl1h2gEAU7ACfcFrG +TPzkH3R+yffEB8tgjRU0HYQ= +=L3jw +-----END PGP SIGNATURE----- diff --git a/games-sports/trophy/trophy-1.1.3.ebuild b/games-sports/trophy/trophy-1.1.3.ebuild index 7797e4d3ba5f..7c584631cd84 100644 --- a/games-sports/trophy/trophy-1.1.3.ebuild +++ b/games-sports/trophy/trophy-1.1.3.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-sports/trophy/trophy-1.1.3.ebuild,v 1.5 2004/06/24 23:25:42 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-sports/trophy/trophy-1.1.3.ebuild,v 1.6 2004/08/15 08:54:21 vapier Exp $ -inherit games +inherit games flag-o-matic MY_P="${P}-src" S="${WORKDIR}/${MY_P}" @@ -12,26 +12,28 @@ SRC_URI="mirror://sourceforge/trophy/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86" +KEYWORDS="x86 amd64" IUSE="" DEPEND="=dev-games/clanlib-0.6.5* >=media-libs/hermes-1.3.2 >=sys-libs/zlib-1.1.3" -pkg_setup() { - clanlib-config 0.6.5 -} - src_unpack() { unpack ${A} cd ${S} find -name ".cvsignore" -exec rm -f \{\} \; + sed -i \ + -e '/^EXTERN_LIBS/s:= := ${LDFLAGS} :' \ + -e 's:-O3::' \ + trophy/Makefile.in } src_compile() { cd trophy autoconf || die "autoconf failed" + append-flags -I${ROOT}/usr/include/clanlib-0.6.5 + append-ldflags -L${ROOT}/usr/lib/clanlib-0.6.5 egamesconf || die emake || die "emake failed" } |