diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-03-09 07:18:13 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-03-09 07:18:13 +0000 |
commit | 2de807e7503537ef1728606146b0b7a49d70785f (patch) | |
tree | 7c53922d2f9ee508b1409530ab7580e5b5b2ee43 /games-roguelike | |
parent | Removed the older files for house keeping (diff) | |
download | gentoo-2-2de807e7503537ef1728606146b0b7a49d70785f.tar.gz gentoo-2-2de807e7503537ef1728606146b0b7a49d70785f.tar.bz2 gentoo-2-2de807e7503537ef1728606146b0b7a49d70785f.zip |
version bump
(Portage version: 2.0.51.19)
Diffstat (limited to 'games-roguelike')
4 files changed, 74 insertions, 16 deletions
diff --git a/games-roguelike/crossfire-client/ChangeLog b/games-roguelike/crossfire-client/ChangeLog index 903980f7fcca..89f74786fabe 100644 --- a/games-roguelike/crossfire-client/ChangeLog +++ b/games-roguelike/crossfire-client/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-roguelike/crossfire-client -# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.8 2004/09/30 00:40:18 swegener Exp $ +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/ChangeLog,v 1.9 2005/03/09 07:18:13 mr_bones_ Exp $ + +*crossfire-client-1.7.1 (09 Mar 2005) + + 09 Mar 2005; Michael Sterrett <mr_bones_@gentoo.org> + +crossfire-client-1.7.1.ebuild: + version bump *crossfire-client-1.7.0 (30 May 2004) diff --git a/games-roguelike/crossfire-client/Manifest b/games-roguelike/crossfire-client/Manifest index 99eb29f00660..4d77f75804a5 100644 --- a/games-roguelike/crossfire-client/Manifest +++ b/games-roguelike/crossfire-client/Manifest @@ -1,18 +1,10 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 558223609e46a54824114b9499d9d972 crossfire-client-1.7.0.ebuild 1376 -MD5 5590c66a04e4a8c41eebeaabc1cf706f crossfire-client-1.6.1.ebuild 1416 MD5 bb96c15869555a3381e73745b20a5f18 ChangeLog 1865 +MD5 558223609e46a54824114b9499d9d972 crossfire-client-1.7.1.ebuild 1376 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 -MD5 28ec33590a7f24478841e039ce87f81c files/digest-crossfire-client-1.6.1 153 -MD5 85c1a21c69c23d3fd2540dd54a0f0fc3 files/digest-crossfire-client-1.7.0 74 +MD5 558223609e46a54824114b9499d9d972 crossfire-client-1.7.0.ebuild 1376 +MD5 5590c66a04e4a8c41eebeaabc1cf706f crossfire-client-1.6.1.ebuild 1416 MD5 ad1e49c4a56222488166b9c4f4091a55 files/1.5.0-errno.patch 682 +MD5 85c1a21c69c23d3fd2540dd54a0f0fc3 files/digest-crossfire-client-1.7.0 74 MD5 ad1e49c4a56222488166b9c4f4091a55 files/1.6.0-errno.patch 682 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.9.10 (GNU/Linux) - -iD8DBQFBpP6yI1lqEGTUzyQRAu+pAKC4XIsa7XqcmIm22McpFP3jaZvBgwCg3Ob3 -WrsEWRvQpQse0/Y7hNSRqCA= -=4rN+ ------END PGP SIGNATURE----- +MD5 88be26521277f1cf1eec6dcdfb35bcf8 files/digest-crossfire-client-1.7.1 74 +MD5 28ec33590a7f24478841e039ce87f81c files/digest-crossfire-client-1.6.1 153 diff --git a/games-roguelike/crossfire-client/crossfire-client-1.7.1.ebuild b/games-roguelike/crossfire-client/crossfire-client-1.7.1.ebuild new file mode 100644 index 000000000000..4ae66165b4ac --- /dev/null +++ b/games-roguelike/crossfire-client/crossfire-client-1.7.1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.7.1.ebuild,v 1.1 2005/03/09 07:18:13 mr_bones_ Exp $ + +inherit games + +DESCRIPTION="Client for the nethack-style but more in the line of UO" +HOMEPAGE="http://crossfire.real-time.com/" +SRC_URI="mirror://sourceforge/crossfire/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="ppc x86" +IUSE="alsa gtk sdl" + +DEPEND="virtual/x11 + alsa? ( media-libs/alsa-lib ) + gtk? ( =x11-libs/gtk+-1.2* + dev-libs/glib + sdl? ( media-libs/libsdl + media-libs/sdl-image ) + ) + media-libs/libpng + sys-libs/zlib" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i \ + -e 's:man1:man6:' \ + -e '/mandir/s:\.1:.6:' \ + {gtk,x11}/Makefile.in \ + || die "sed failed" +} + +src_compile() { + # bugs in configure script so we cant use $(use_enable ...) + local myconf="--disable-dependency-tracking" + + if use gtk ; then + use sdl || myconf="${myconf} --disable-sdl" + else + myconf="${myconf} --disable-gtk" + fi + if ! use alsa ; then + has_version '>=media-libs/alsa-lib-0.9' \ + && myconf="${myconf} --disable-alsa9" \ + || myconf="${myconf} --disable-alsa" + fi + egamesconf ${myconf} || die + emake -j1 -C sound-src || die "sound building failed" + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc CHANGES NOTES README TODO + prepgamesdirs +} diff --git a/games-roguelike/crossfire-client/files/digest-crossfire-client-1.7.1 b/games-roguelike/crossfire-client/files/digest-crossfire-client-1.7.1 new file mode 100644 index 000000000000..c67e92ed9890 --- /dev/null +++ b/games-roguelike/crossfire-client/files/digest-crossfire-client-1.7.1 @@ -0,0 +1 @@ +MD5 310bdd69d02e776d5cea3fad94c58cf6 crossfire-client-1.7.1.tar.gz 471561 |