diff options
Diffstat (limited to 'dev-games')
-rw-r--r-- | dev-games/clanlib/clanlib-0.6.5.ebuild | 74 | ||||
-rw-r--r-- | dev-games/clanlib/clanlib-0.7.2-r1.ebuild | 72 | ||||
-rw-r--r-- | dev-games/clanlib/files/0.7.2-gcc3.patch | 10 | ||||
-rw-r--r-- | dev-games/clanlib/files/digest-clanlib-0.6.5 | 1 | ||||
-rw-r--r-- | dev-games/clanlib/files/digest-clanlib-0.7.2-r1 | 1 |
5 files changed, 0 insertions, 158 deletions
diff --git a/dev-games/clanlib/clanlib-0.6.5.ebuild b/dev-games/clanlib/clanlib-0.6.5.ebuild deleted file mode 100644 index 30cd37e375d2..000000000000 --- a/dev-games/clanlib/clanlib-0.6.5.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.6.5.ebuild,v 1.3 2003/09/05 11:57:11 msterret Exp $ - -inherit eutils - -DESCRIPTION="multi-platform game development library" -HOMEPAGE="http://www.clanlib.org/" -SRC_URI="http://www.clanlib.org/download/files/ClanLib-${PV}-1.tar.gz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="x86" -IUSE="arts oss esd alsa png opengl truetype X oggvorbis mikmod jpeg directfb" - -DEPEND=">=media-libs/hermes-1.3.2 - X? ( virtual/x11 ) - png? ( media-libs/libpng ) - jpeg? ( >=media-libs/jpeg-6b ) - mikmod? ( >=media-libs/libmikmod-3.1.9 ) - truetype? ( >=media-libs/freetype-2.0 ) - directfb? ( dev-libs/DirectFB ) - oggvorbis? ( media-libs/libvorbis )" - -S=${WORKDIR}/ClanLib-${PV} - -src_unpack() { - unpack ${A} - cd ${S} - epatch ${FILESDIR}/${PV}-gcc3.patch -} - -src_compile() { - local myconf="`use_enable jpeg`" - - use jpeg || myconf="${myconf} --enable-smalljpeg" - - use alsa || use oss || use esd || use arts \ - && myconf="${myconf} --enable-clansound" \ - || myconf="${myconf} --disable-clansound" - - # this is not a USE flag yet, but there should be one - # use joystick \ - # && myconf="${myconf} --enable-joystick" \ - # || myconf="${myconf} --disable-joystick" - - export CFLAGS=${CFLAGS/-O?/-O2} - export CXXFLAGS=${CXXFLAGS/-O?/-O2} - - ./autogen.sh - - ./configure \ - --host=${CHOST} \ - --prefix=/usr \ - --enable-joystick \ - --enable-network \ - --enable-asm386 \ - --enable-dyn \ - `use_enable X x11` \ - `use_enable directfb` \ - `use_enable opengl` \ - `use_enable oggvorbis vorbis` \ - `use_enable png` \ - `use_enable truetype ttf` \ - `use_enable mikmod` \ - --enable-vidmode \ - ${myconf} || die - - emake || die -} - -src_install() { - make prefix=${D}/usr install || die -} diff --git a/dev-games/clanlib/clanlib-0.7.2-r1.ebuild b/dev-games/clanlib/clanlib-0.7.2-r1.ebuild deleted file mode 100644 index bd19cc3e56b4..000000000000 --- a/dev-games/clanlib/clanlib-0.7.2-r1.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.7.2-r1.ebuild,v 1.3 2003/10/20 14:38:02 port001 Exp $ - -inherit flag-o-matic -replace-flags -O? -O2 - -DESCRIPTION="multi-platform game development library" -HOMEPAGE="http://www.clanlib.org/" -SRC_URI="http://www.clanlib.org/~sphair/download/ClanLib-${PV}-1.tar.bz2" - -LICENSE="LGPL-2" -SLOT="0.7" -KEYWORDS="x86" -IUSE="arts oss esd alsa png opengl truetype X oggvorbis mikmod jpeg directfb joystick" - -DEPEND=">=media-libs/hermes-1.3.2 - X? ( virtual/x11 ) - png? ( media-libs/libpng ) - jpeg? ( >=media-libs/jpeg-6b ) - mikmod? ( >=media-libs/libmikmod-3.1.9 ) - truetype? ( >=media-libs/freetype-2.0 ) - directfb? ( dev-libs/DirectFB ) - oggvorbis? ( media-libs/libvorbis )" - -S=${WORKDIR}/ClanLib-${PV} - -src_unpack() { - unpack ${A} - cd ${S} - epatch ${FILESDIR}/${PV}-gcc3.patch -} - -src_compile() { - local myconf="" - use jpeg || myconf="${myconf} --enable-smalljpeg" - use alsa || use oss || use esd || use arts \ - && myconf="${myconf} --enable-clansound" \ - || myconf="${myconf} --disable-clansound" - - WANT_AUTOMAKE=1.6 ./autogen.sh - - econf \ - --libdir=/usr/lib/${P} \ - --enable-network \ - --enable-asm386 \ - --enable-dyn \ - `use_enable X x11` \ - `use_enable directfb` \ - `use_enable opengl` \ - `use_enable oggvorbis vorbis` \ - `use_enable png` \ - `use_enable truetype ttf` \ - `use_enable mikmod` \ - `use_enable joystick` \ - --enable-vidmode \ - ${myconf} || die - - emake || die -} - -src_install() { - make DESTDIR=${D} install || die - mv ${D}/usr/include/{ClanLib,${P}} - dobin ${FILESDIR}/clanlib-config - dodoc BUGS CODING_STYLE CREDITS NEWS PATCHES PORTING README* INSTALL.linux - dohtml -r Documentation/* -} - -pkg_postinst() { - clanlib-config ${PV} -} diff --git a/dev-games/clanlib/files/0.7.2-gcc3.patch b/dev-games/clanlib/files/0.7.2-gcc3.patch deleted file mode 100644 index a20a656ed13e..000000000000 --- a/dev-games/clanlib/files/0.7.2-gcc3.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- ClanLib-0.7.2/Sources/Core/IOData/Unix/directory_scanner_unix.cpp 2003-08-26 13:25:59.113908305 +0200 -+++ ClanLib-0.7.2/Sources/Core/IOData/Unix/directory_scanner_unix.cpp 2003-08-26 13:26:10.402254445 +0200 -@@ -21,6 +21,7 @@ - #include <fnmatch.h> - #include <unistd.h> - #include "directory_scanner_unix.h" -+#include <assert.h> - - CL_DirectoryScanner_Unix::CL_DirectoryScanner_Unix () - : dir_temp (NULL), entry (NULL) diff --git a/dev-games/clanlib/files/digest-clanlib-0.6.5 b/dev-games/clanlib/files/digest-clanlib-0.6.5 deleted file mode 100644 index 18fff14c418e..000000000000 --- a/dev-games/clanlib/files/digest-clanlib-0.6.5 +++ /dev/null @@ -1 +0,0 @@ -MD5 7115921953ef6fa45102c28622493650 ClanLib-0.6.5-1.tar.gz 2183097 diff --git a/dev-games/clanlib/files/digest-clanlib-0.7.2-r1 b/dev-games/clanlib/files/digest-clanlib-0.7.2-r1 deleted file mode 100644 index f658027165c2..000000000000 --- a/dev-games/clanlib/files/digest-clanlib-0.7.2-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 cbaa39f7de761e2cba52ddd97795150e ClanLib-0.7.2-1.tar.bz2 2753105 |