From cb0fc269faf03b582ccab017e52de8ea8b57719b Mon Sep 17 00:00:00 2001 From: Michael Sterrett Date: Wed, 9 Mar 2005 07:18:13 +0000 Subject: version bump Package-Manager: portage-2.0.51.19 --- games-roguelike/crossfire-client/ChangeLog | 10 +++- games-roguelike/crossfire-client/Manifest | 20 +++----- .../crossfire-client/crossfire-client-1.7.1.ebuild | 59 ++++++++++++++++++++++ .../files/digest-crossfire-client-1.7.1 | 1 + 4 files changed, 74 insertions(+), 16 deletions(-) create mode 100644 games-roguelike/crossfire-client/crossfire-client-1.7.1.ebuild create mode 100644 games-roguelike/crossfire-client/files/digest-crossfire-client-1.7.1 (limited to 'games-roguelike/crossfire-client') 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 + +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..df641aa1bfef 100644 --- a/games-roguelike/crossfire-client/Manifest +++ b/games-roguelike/crossfire-client/Manifest @@ -1,18 +1,10 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - +MD5 b16baa56073b3261c4090d4ec74f5683 ChangeLog 2010 +MD5 bb0aef5bf31f84bc7872f4d66d6c65c4 crossfire-client-1.7.1.ebuild 1458 +MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 MD5 558223609e46a54824114b9499d9d972 crossfire-client-1.7.0.ebuild 1376 MD5 5590c66a04e4a8c41eebeaabc1cf706f crossfire-client-1.6.1.ebuild 1416 -MD5 bb96c15869555a3381e73745b20a5f18 ChangeLog 1865 -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 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 -- cgit v1.2.3-65-gdbad