summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2013-01-31 00:19:04 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2013-01-31 00:19:04 +0000
commit023816da164629e7e095431b7d9cc575d167e736 (patch)
treec3d8ba5cb84a0952f7cf95da1fc125479359d0b9 /dev-games/clanlib
parentold (diff)
downloadgentoo-2-023816da164629e7e095431b7d9cc575d167e736.tar.gz
gentoo-2-023816da164629e7e095431b7d9cc575d167e736.tar.bz2
gentoo-2-023816da164629e7e095431b7d9cc575d167e736.zip
old
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-games/clanlib')
-rw-r--r--dev-games/clanlib/ChangeLog8
-rw-r--r--dev-games/clanlib/clanlib-2.3.4.ebuild91
-rw-r--r--dev-games/clanlib/files/clanlib-2.3.4-autotools.patch51
3 files changed, 6 insertions, 144 deletions
diff --git a/dev-games/clanlib/ChangeLog b/dev-games/clanlib/ChangeLog
index 4348bd3081b6..b7b133e515f2 100644
--- a/dev-games/clanlib/ChangeLog
+++ b/dev-games/clanlib/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-games/clanlib
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.62 2012/12/29 22:01:44 pinkbyte Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.63 2013/01/31 00:19:04 mr_bones_ Exp $
+
+ 31 Jan 2013; Michael Sterrett <mr_bones_@gentoo.org> -clanlib-2.3.4.ebuild,
+ -files/clanlib-2.3.4-autotools.patch:
+ old
29 Dec 2012; Sergey Popov <pinkbyte@gentoo.org> clanlib-0.8.1.ebuild,
+files/clanlib-0.8.1-gcc47.patch:
diff --git a/dev-games/clanlib/clanlib-2.3.4.ebuild b/dev-games/clanlib/clanlib-2.3.4.ebuild
deleted file mode 100644
index ed190b7de3d4..000000000000
--- a/dev-games/clanlib/clanlib-2.3.4.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-2.3.4.ebuild,v 1.5 2012/06/13 07:16:01 johu Exp $
-
-EAPI=2
-inherit flag-o-matic eutils autotools-utils
-
-MY_P=ClanLib-${PV}
-
-DESCRIPTION="multi-platform game development library"
-HOMEPAGE="http://www.clanlib.org/"
-SRC_URI="http://clanlib.org/download/releases-2.0/${MY_P}.tgz"
-
-LICENSE="ZLIB"
-SLOT="2.3"
-KEYWORDS="amd64 x86" #not big endian safe #82779
-IUSE="doc ipv6 mikmod opengl sound sqlite sse2 static-libs vorbis X"
-
-RDEPEND="sys-libs/zlib
- X? (
- media-libs/libpng
- virtual/jpeg
- media-libs/freetype
- media-libs/fontconfig
- opengl? ( virtual/opengl )
- app-arch/bzip2
- x11-libs/libX11
- )
- sqlite? ( dev-db/sqlite )
- sound? ( media-libs/alsa-lib )
- mikmod? (
- media-libs/libmikmod
- media-libs/alsa-lib
- )
- vorbis? (
- media-libs/libogg
- media-libs/libvorbis
- media-libs/alsa-lib
- )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? ( app-doc/doxygen dev-lang/perl )"
-
-S="${WORKDIR}"/${MY_P}
-
-PATCHES=( "${FILESDIR}"/${P}-autotools.patch )
-AUTOTOOLS_AUTORECONF=1
-AUTOTOOLS_IN_SOURCE_BUILD=1
-DOCS=(
- CODING_STYLE
- CREDITS
- PATCHES
- README
-)
-
-src_configure() {
- myeconfargs=(
- --disable-dependency-tracking
- $(use_enable doc docs)
- $(use_enable sse2)
- $(use_enable opengl clanGL)
- $(use_enable opengl clanGL1)
- $(use_enable opengl clanGUI)
- $(use_enable X clanDisplay)
- $(use_enable vorbis clanVorbis)
- $(use_enable mikmod clanMikMod)
- $(use_enable sqlite clanSqlite)
- $(use_enable ipv6 getaddr)
- )
- use sound \
- || use vorbis \
- || use mikmod \
- || myeconfargs+=( --disable-clanSound )
- autotools-utils_src_configure
-}
-
-src_compile() {
- autotools-utils_src_compile
- use doc && autotools-utils_src_compile html
-}
-
-# html files are keeped in a directory that is dependent on the SLOT
-# so to keep eventual bookmarks to the doc from version to version
-src_install() {
- autotools-utils_src_install
- if use doc ; then
- emake DESTDIR="${D}" install-html || die "emake html-install failed"
- cp -r Examples Resources "${D}"/usr/share/doc/${PF}/ \
- || die "Copying failed"
- fi
-}
diff --git a/dev-games/clanlib/files/clanlib-2.3.4-autotools.patch b/dev-games/clanlib/files/clanlib-2.3.4-autotools.patch
deleted file mode 100644
index 47a7b4ba1314..000000000000
--- a/dev-games/clanlib/files/clanlib-2.3.4-autotools.patch
+++ /dev/null
@@ -1,51 +0,0 @@
---- configure.ac.old 2012-02-03 14:10:59.163215573 +0100
-+++ configure.ac 2012-02-03 14:12:18.003215948 +0100
-@@ -333,11 +333,9 @@
-
- dnl Optional linux/joystick.h
- AC_CHECK_HEADERS(linux/joystick.h, linux_joystick=yes)
-- AM_CONDITIONAL(LINUX_JOYSTICK, test x$linux_joystick = xyes)
-
- dnl Optional linux/input.h
- AC_CHECK_HEADERS(linux/input.h, linux_input=yes)
-- AM_CONDITIONAL(LINUX_INPUT, test x$linux_input = xyes)
-
- if test "$WIN32" = "no" && test "$enable_clanDisplay" != "no"; then
- CLANLIB_CHECK_LIB(fontconfig, [`cat $srcdir/Setup/Tests/fontconfig.cpp`], clanDisplay, [ *** Cannot find fontconfig (See http://fontconfig.org/ ) (Try libfontconfig1-dev or better) ], [-lfontconfig])
-@@ -355,6 +353,9 @@
- fi
- fi
-
-+AM_CONDITIONAL(LINUX_JOYSTICK, test x$linux_joystick = xyes)
-+AM_CONDITIONAL(LINUX_INPUT, test x$linux_input = xyes)
-+
- have_xrender=no
-
- if test "$enable_clanDisplay" != "no"; then
-@@ -507,13 +507,14 @@
- fi
-
- extra_LIBS_clanSound="$extra_LIBS_clanSound $sound_libs"
-- AM_CONDITIONAL(ALSA, test x$have_alsa = xyes)
- fi
-
- if test "$enable_clanSound" = "auto"; then enable_clanSound=yes; fi
-
- fi
-
-+AM_CONDITIONAL(ALSA, test x$have_alsa = xyes)
-+
- if test "$enable_clanSound" != "no"; then
- enable_clanSound=yes
- echo "Checking for clanMikmod stuff"
---- Documentation/Reference/Makefile.am.old 2012-02-06 16:00:50.034478851 +0100
-+++ Documentation/Reference/Makefile.am 2012-02-06 16:01:01.524478906 +0100
-@@ -10,7 +10,7 @@
- mkdir doxyoutput;
- mkdir reftest
- doxygen ./clanlib.doxygen
-- make -C ../Utilities/ReferenceDocs
-+ $(MAKE) -C ../Utilities/ReferenceDocs
- ../Utilities/ReferenceDocs/ReferenceDocs
-
- install-html: