summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2006-04-21 16:10:10 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2006-04-21 16:10:10 +0000
commitce4ccd823fe14cd369a6f8db8886bf3a35a7bb1b (patch)
treeb695df10f69e8453e880523c041aaddc2d1c2c91 /games-roguelike/crossfire-client
parentuse lseek instead of llseek for mips, and mark -r3 stable on mips (diff)
downloadgentoo-2-ce4ccd823fe14cd369a6f8db8886bf3a35a7bb1b.tar.gz
gentoo-2-ce4ccd823fe14cd369a6f8db8886bf3a35a7bb1b.tar.bz2
gentoo-2-ce4ccd823fe14cd369a6f8db8886bf3a35a7bb1b.zip
clean out old cruft
(Portage version: 2.1_pre7-r5)
Diffstat (limited to 'games-roguelike/crossfire-client')
-rw-r--r--games-roguelike/crossfire-client/crossfire-client-1.7.1.ebuild58
-rw-r--r--games-roguelike/crossfire-client/crossfire-client-1.8.0.ebuild57
-rw-r--r--games-roguelike/crossfire-client/crossfire-client-1.9.0.ebuild4
-rw-r--r--games-roguelike/crossfire-client/files/digest-crossfire-client-1.7.11
-rw-r--r--games-roguelike/crossfire-client/files/digest-crossfire-client-1.8.01
5 files changed, 2 insertions, 119 deletions
diff --git a/games-roguelike/crossfire-client/crossfire-client-1.7.1.ebuild b/games-roguelike/crossfire-client/crossfire-client-1.7.1.ebuild
deleted file mode 100644
index 62a51be2c24a..000000000000
--- a/games-roguelike/crossfire-client/crossfire-client-1.7.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2006 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.3 2006/01/24 20:35:43 wolf31o2 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 oss sdl"
-
-DEPEND="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
- myconf="${myconf} --disable-alsa9 --disable-alsa"
- fi
- if ! use alsa && ! use oss ; then
- myconf="${myconf} --disable-sound"
- 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/crossfire-client-1.8.0.ebuild b/games-roguelike/crossfire-client/crossfire-client-1.8.0.ebuild
deleted file mode 100644
index 1f9294ab2925..000000000000
--- a/games-roguelike/crossfire-client/crossfire-client-1.8.0.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2006 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.8.0.ebuild,v 1.3 2006/01/24 20:35:43 wolf31o2 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 oss sdl"
-
-DEPEND="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 \
- -r 's:TH (g?)cfclient:TH \1cfclient 6:' \
- {gtk,x11}/*cfclient.man \
- || 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
- myconf="${myconf} --disable-alsa9 --disable-alsa"
- fi
- if ! use alsa && ! use oss ; then
- myconf="${myconf} --disable-sound"
- 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/crossfire-client-1.9.0.ebuild b/games-roguelike/crossfire-client/crossfire-client-1.9.0.ebuild
index b67955994a1f..44b78d8c26e2 100644
--- a/games-roguelike/crossfire-client/crossfire-client-1.9.0.ebuild
+++ b/games-roguelike/crossfire-client/crossfire-client-1.9.0.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2006 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.9.0.ebuild,v 1.2 2006/04/13 22:07:04 tupone Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-roguelike/crossfire-client/crossfire-client-1.9.0.ebuild,v 1.3 2006/04/21 16:10:10 mr_bones_ Exp $
inherit games
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/crossfire/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ppc x86"
IUSE="alsa gtk oss sdl"
RDEPEND="alsa? ( media-libs/alsa-lib )
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
deleted file mode 100644
index c67e92ed9890..000000000000
--- a/games-roguelike/crossfire-client/files/digest-crossfire-client-1.7.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 310bdd69d02e776d5cea3fad94c58cf6 crossfire-client-1.7.1.tar.gz 471561
diff --git a/games-roguelike/crossfire-client/files/digest-crossfire-client-1.8.0 b/games-roguelike/crossfire-client/files/digest-crossfire-client-1.8.0
deleted file mode 100644
index 21aeafc0decf..000000000000
--- a/games-roguelike/crossfire-client/files/digest-crossfire-client-1.8.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 3198bb5ad0e85ca7d8dcdd812bdf4c2f crossfire-client-1.8.0.tar.gz 663735