* [gentoo-commits] gentoo-x86 commit in dev-games/clanlib: ChangeLog clanlib-0.8.1.ebuild
@ 2008-04-30 20:03 Tristan Heaven (nyhm)
0 siblings, 0 replies; 10+ messages in thread
From: Tristan Heaven (nyhm) @ 2008-04-30 20:03 UTC (permalink / raw
To: gentoo-commits
nyhm 08/04/30 20:03:31
Modified: ChangeLog
Added: clanlib-0.8.1.ebuild
Log:
Version bump, bug #214860
(Portage version: 2.1.5_rc6)
Revision Changes Path
1.41 dev-games/clanlib/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/ChangeLog?r1=1.40&r2=1.41
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog 29 Oct 2007 22:07:43 -0000 1.40
+++ ChangeLog 30 Apr 2008 20:03:30 -0000 1.41
@@ -1,6 +1,13 @@
# ChangeLog for dev-games/clanlib
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.40 2007/10/29 22:07:43 mr_bones_ Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.41 2008/04/30 20:03:30 nyhm Exp $
+
+*clanlib-0.8.1 (30 Apr 2008)
+
+ 30 Apr 2008; Tristan Heaven <nyhm@gentoo.org>
+ +files/clanlib-0.8.1-gcc43.patch, +files/clanlib-0.8.1-ndebug.patch,
+ +clanlib-0.8.1.ebuild:
+ Version bump, bug #214860
29 Oct 2007; Michael Sterrett <mr_bones_@gentoo.org>
+files/clanlib-0.7.8-ndebug.patch, +files/clanlib-0.8.0-ndebug.patch,
1.1 dev-games/clanlib/clanlib-0.8.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.1&content-type=text/plain
Index: clanlib-0.8.1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v 1.1 2008/04/30 20:03:30 nyhm Exp $
inherit flag-o-matic eutils
DESCRIPTION="multi-platform game development library"
HOMEPAGE="http://www.clanlib.org/"
SRC_URI="http://clanlib.org/download/releases-${PV:0:3}/ClanLib-${PV}.tgz"
LICENSE="ZLIB"
SLOT="0.8"
KEYWORDS="~amd64 ~x86" #not big endian safe #82779
IUSE="opengl sdl vorbis doc mikmod ipv6"
# opengl keyword does not drop the GL/GLU requirement.
# Autoconf files need to be fixed
RDEPEND="media-libs/libpng
media-libs/jpeg
virtual/opengl
virtual/glu
sdl? (
media-libs/libsdl
media-libs/sdl-gfx
)
x11-libs/libXt
x11-libs/libXmu
x11-libs/libXxf86vm
mikmod? ( media-libs/libmikmod )
vorbis? ( media-libs/libvorbis )"
DEPEND="${RDEPEND}
x11-proto/xf86vidmodeproto"
S=${WORKDIR}/ClanLib-${PV}
src_unpack() {
unpack ${A}
cd "${S}"
epatch \
"${FILESDIR}"/${P}-ndebug.patch \
"${FILESDIR}"/${P}-gcc43.patch
}
src_compile() {
#clanSound only controls mikmod/vorbis so there's
# no need to pass --{en,dis}able-clanSound ...
#clanDisplay only controls X, SDL, OpenGL plugins
# so no need to pass --{en,dis}able-clanDisplay
# also same reason why we don't have to use clanGUI
econf \
--enable-dyn \
--enable-clanNetwork \
--disable-dependency-tracking \
$(use_enable x86 asm386) \
$(use_enable doc docs) \
$(use_enable opengl clanGL) \
$(use_enable sdl clanSDL) \
$(use_enable vorbis clanVorbis) \
$(use_enable mikmod clanMikMod) \
$(use_enable ipv6 getaddr) \
|| die
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
if use doc ; then
dodir /usr/share/doc/${PF}/html
mv "${D}"/usr/share/doc/clanlib/* "${D}"/usr/share/doc/${PF}/html/ || die
rm -rf "${D}"/usr/share/doc/clanlib
cp -r Examples Resources "${D}"/usr/share/doc/${PF}/ || die
fi
dodoc CODING_STYLE CREDITS NEWS PATCHES README* INSTALL.linux
}
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-games/clanlib: ChangeLog clanlib-0.8.1.ebuild
@ 2008-05-29 10:53 Christian Faulhammer (opfer)
0 siblings, 0 replies; 10+ messages in thread
From: Christian Faulhammer (opfer) @ 2008-05-29 10:53 UTC (permalink / raw
To: gentoo-commits
opfer 08/05/29 10:53:38
Modified: ChangeLog clanlib-0.8.1.ebuild
Log:
stable x86, bug 214803
(Portage version: 2.1.4.4)
Revision Changes Path
1.42 dev-games/clanlib/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/ChangeLog?r1=1.41&r2=1.42
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog 30 Apr 2008 20:03:30 -0000 1.41
+++ ChangeLog 29 May 2008 10:53:38 -0000 1.42
@@ -1,6 +1,9 @@
# ChangeLog for dev-games/clanlib
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.41 2008/04/30 20:03:30 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.42 2008/05/29 10:53:38 opfer Exp $
+
+ 29 May 2008; Christian Faulhammer <opfer@gentoo.org> clanlib-0.8.1.ebuild:
+ stable x86, bug 214803
*clanlib-0.8.1 (30 Apr 2008)
1.2 dev-games/clanlib/clanlib-0.8.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?r1=1.1&r2=1.2
Index: clanlib-0.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- clanlib-0.8.1.ebuild 30 Apr 2008 20:03:30 -0000 1.1
+++ clanlib-0.8.1.ebuild 29 May 2008 10:53:38 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v 1.1 2008/04/30 20:03:30 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v 1.2 2008/05/29 10:53:38 opfer Exp $
inherit flag-o-matic eutils
@@ -10,7 +10,7 @@
LICENSE="ZLIB"
SLOT="0.8"
-KEYWORDS="~amd64 ~x86" #not big endian safe #82779
+KEYWORDS="~amd64 x86" #not big endian safe #82779
IUSE="opengl sdl vorbis doc mikmod ipv6"
# opengl keyword does not drop the GL/GLU requirement.
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-games/clanlib: ChangeLog clanlib-0.8.1.ebuild
@ 2009-08-04 21:24 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 10+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2009-08-04 21:24 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 09/08/04 21:24:39
Modified: ChangeLog clanlib-0.8.1.ebuild
Log:
EAPI=2; add gcc44 patch submitted by Fredric Johansson via bug #275791
(Portage version: 2.1.6.13/cvs/Linux i686)
Revision Changes Path
1.45 dev-games/clanlib/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.45&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.45&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/ChangeLog?r1=1.44&r2=1.45
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog 26 Aug 2008 20:53:25 -0000 1.44
+++ ChangeLog 4 Aug 2009 21:24:39 -0000 1.45
@@ -1,6 +1,10 @@
# ChangeLog for dev-games/clanlib
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.44 2008/08/26 20:53:25 nyhm Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.45 2009/08/04 21:24:39 mr_bones_ Exp $
+
+ 04 Aug 2009; Michael Sterrett <mr_bones_@gentoo.org> clanlib-0.8.1.ebuild,
+ +files/clanlib-0.8.1-gcc44.patch:
+ EAPI=2; add gcc44 patch submitted by Fredric Johansson via bug #275791
26 Aug 2008; Tristan Heaven <nyhm@gentoo.org> clanlib-0.8.1.ebuild:
Add missing media-libs/alsa-lib dependency, bug #227509
1.5 dev-games/clanlib/clanlib-0.8.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?r1=1.4&r2=1.5
Index: clanlib-0.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- clanlib-0.8.1.ebuild 26 Aug 2008 20:53:25 -0000 1.4
+++ clanlib-0.8.1.ebuild 4 Aug 2009 21:24:39 -0000 1.5
@@ -1,7 +1,8 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v 1.4 2008/08/26 20:53:25 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v 1.5 2009/08/04 21:24:39 mr_bones_ Exp $
+EAPI=2
inherit flag-o-matic eutils
DESCRIPTION="multi-platform game development library"
@@ -34,15 +35,14 @@
S=${WORKDIR}/ClanLib-${PV}
-src_unpack() {
- unpack ${A}
- cd "${S}"
+src_prepare() {
epatch \
"${FILESDIR}"/${P}-ndebug.patch \
- "${FILESDIR}"/${P}-gcc43.patch
+ "${FILESDIR}"/${P}-gcc43.patch \
+ "${FILESDIR}"/${P}-gcc44.patch
}
-src_compile() {
+src_configure() {
#clanSound only controls mikmod/vorbis so there's
# no need to pass --{en,dis}able-clanSound ...
#clanDisplay only controls X, SDL, OpenGL plugins
@@ -58,9 +58,7 @@
$(use_enable sdl clanSDL) \
$(use_enable vorbis clanVorbis) \
$(use_enable mikmod clanMikMod) \
- $(use_enable ipv6 getaddr) \
- || die
- emake || die "emake failed"
+ $(use_enable ipv6 getaddr)
}
src_install() {
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-games/clanlib: ChangeLog clanlib-0.8.1.ebuild
@ 2010-09-17 10:55 Tomas Chvatal (scarabeus)
0 siblings, 0 replies; 10+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2010-09-17 10:55 UTC (permalink / raw
To: gentoo-commits
scarabeus 10/09/17 10:55:17
Modified: ChangeLog clanlib-0.8.1.ebuild
Log:
Remove virtual/glu where already virtual/opengl is stated.
(Portage version: 2.2_rc83/cvs/Linux x86_64)
Revision Changes Path
1.46 dev-games/clanlib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?r1=1.45&r2=1.46
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog 4 Aug 2009 21:24:39 -0000 1.45
+++ ChangeLog 17 Sep 2010 10:55:17 -0000 1.46
@@ -1,6 +1,9 @@
# ChangeLog for dev-games/clanlib
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.45 2009/08/04 21:24:39 mr_bones_ Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.46 2010/09/17 10:55:17 scarabeus Exp $
+
+ 17 Sep 2010; Tomáš Chvátal <scarabeus@gentoo.org> clanlib-0.8.1.ebuild:
+ Remove virtual/glu where already virtual/opengl is stated.
04 Aug 2009; Michael Sterrett <mr_bones_@gentoo.org> clanlib-0.8.1.ebuild,
+files/clanlib-0.8.1-gcc44.patch:
1.6 dev-games/clanlib/clanlib-0.8.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?r1=1.5&r2=1.6
Index: clanlib-0.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- clanlib-0.8.1.ebuild 4 Aug 2009 21:24:39 -0000 1.5
+++ clanlib-0.8.1.ebuild 17 Sep 2010 10:55:17 -0000 1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v 1.5 2009/08/04 21:24:39 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v 1.6 2010/09/17 10:55:17 scarabeus Exp $
EAPI=2
inherit flag-o-matic eutils
@@ -19,7 +19,6 @@
RDEPEND="media-libs/libpng
media-libs/jpeg
virtual/opengl
- virtual/glu
sdl? (
media-libs/libsdl
media-libs/sdl-gfx
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-games/clanlib: ChangeLog clanlib-0.8.1.ebuild
@ 2011-01-16 4:22 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 10+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2011-01-16 4:22 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 11/01/16 04:22:12
Modified: ChangeLog clanlib-0.8.1.ebuild
Log:
add static-libs support
(Portage version: 2.1.9.25/cvs/Linux i686)
Revision Changes Path
1.47 dev-games/clanlib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?r1=1.46&r2=1.47
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog 17 Sep 2010 10:55:17 -0000 1.46
+++ ChangeLog 16 Jan 2011 04:22:12 -0000 1.47
@@ -1,6 +1,9 @@
# ChangeLog for dev-games/clanlib
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.46 2010/09/17 10:55:17 scarabeus Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.47 2011/01/16 04:22:12 mr_bones_ Exp $
+
+ 16 Jan 2011; Michael Sterrett <mr_bones_@gentoo.org> clanlib-0.8.1.ebuild:
+ add static-libs support
17 Sep 2010; Tomáš Chvátal <scarabeus@gentoo.org> clanlib-0.8.1.ebuild:
Remove virtual/glu where already virtual/opengl is stated.
1.7 dev-games/clanlib/clanlib-0.8.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?r1=1.6&r2=1.7
Index: clanlib-0.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- clanlib-0.8.1.ebuild 17 Sep 2010 10:55:17 -0000 1.6
+++ clanlib-0.8.1.ebuild 16 Jan 2011 04:22:12 -0000 1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v 1.6 2010/09/17 10:55:17 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v 1.7 2011/01/16 04:22:12 mr_bones_ Exp $
EAPI=2
inherit flag-o-matic eutils
@@ -12,7 +12,7 @@
LICENSE="ZLIB"
SLOT="0.8"
KEYWORDS="amd64 x86" #not big endian safe #82779
-IUSE="opengl sdl vorbis doc mikmod ipv6"
+IUSE="doc ipv6 mikmod opengl sdl static-libs vorbis"
# opengl keyword does not drop the GL/GLU requirement.
# Autoconf files need to be fixed
@@ -57,7 +57,8 @@
$(use_enable sdl clanSDL) \
$(use_enable vorbis clanVorbis) \
$(use_enable mikmod clanMikMod) \
- $(use_enable ipv6 getaddr)
+ $(use_enable ipv6 getaddr) \
+ $(use_enable static-libs static)
}
src_install() {
@@ -68,5 +69,9 @@
rm -rf "${D}"/usr/share/doc/clanlib
cp -r Examples Resources "${D}"/usr/share/doc/${PF}/ || die
fi
+ if ! use static-libs ; then
+ find "${D}" -type f -name '*.la' -exec rm {} + \
+ || die "la removal failed"
+ fi
dodoc CODING_STYLE CREDITS NEWS PATCHES README* INSTALL.linux
}
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-games/clanlib: ChangeLog clanlib-0.8.1.ebuild
@ 2011-02-25 18:24 Kevin McCarthy (signals)
0 siblings, 0 replies; 10+ messages in thread
From: Kevin McCarthy (signals) @ 2011-02-25 18:24 UTC (permalink / raw
To: gentoo-commits
signals 11/02/25 18:24:23
Modified: ChangeLog clanlib-0.8.1.ebuild
Log:
depend virtual/jpeg
(Portage version: 2.2.0_alpha25/cvs/Linux x86_64)
Revision Changes Path
1.48 dev-games/clanlib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?r1=1.47&r2=1.48
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog 16 Jan 2011 04:22:12 -0000 1.47
+++ ChangeLog 25 Feb 2011 18:24:23 -0000 1.48
@@ -1,6 +1,9 @@
# ChangeLog for dev-games/clanlib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.47 2011/01/16 04:22:12 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.48 2011/02/25 18:24:23 signals Exp $
+
+ 25 Feb 2011; Kevin McCarthy <signals@gentoo.org> clanlib-0.8.1.ebuild:
+ Update depends from media-libs/jpeg to virtual/jpeg
16 Jan 2011; Michael Sterrett <mr_bones_@gentoo.org> clanlib-0.8.1.ebuild:
add static-libs support
1.8 dev-games/clanlib/clanlib-0.8.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?r1=1.7&r2=1.8
Index: clanlib-0.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- clanlib-0.8.1.ebuild 16 Jan 2011 04:22:12 -0000 1.7
+++ clanlib-0.8.1.ebuild 25 Feb 2011 18:24:23 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v 1.7 2011/01/16 04:22:12 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v 1.8 2011/02/25 18:24:23 signals Exp $
EAPI=2
inherit flag-o-matic eutils
@@ -17,7 +17,7 @@
# opengl keyword does not drop the GL/GLU requirement.
# Autoconf files need to be fixed
RDEPEND="media-libs/libpng
- media-libs/jpeg
+ virtual/jpeg
virtual/opengl
sdl? (
media-libs/libsdl
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-games/clanlib: ChangeLog clanlib-0.8.1.ebuild
@ 2011-09-15 2:31 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 10+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-09-15 2:31 UTC (permalink / raw
To: gentoo-commits
ssuominen 11/09/15 02:31:01
Modified: ChangeLog clanlib-0.8.1.ebuild
Log:
Fix building with libpng15 wrt #378203 by Diego Elio Pettenò
(Portage version: 2.2.0_alpha55/cvs/Linux x86_64)
Revision Changes Path
1.49 dev-games/clanlib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?r1=1.48&r2=1.49
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog 25 Feb 2011 18:24:23 -0000 1.48
+++ ChangeLog 15 Sep 2011 02:31:01 -0000 1.49
@@ -1,6 +1,10 @@
# ChangeLog for dev-games/clanlib
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.48 2011/02/25 18:24:23 signals Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.49 2011/09/15 02:31:01 ssuominen Exp $
+
+ 15 Sep 2011; Samuli Suominen <ssuominen@gentoo.org> clanlib-0.8.1.ebuild,
+ +files/clanlib-0.8.1-libpng15.patch:
+ Fix building with libpng15 wrt #378203 by Diego Elio Pettenò
25 Feb 2011; Kevin McCarthy <signals@gentoo.org> clanlib-0.8.1.ebuild:
Update depends from media-libs/jpeg to virtual/jpeg
1.9 dev-games/clanlib/clanlib-0.8.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?r1=1.8&r2=1.9
Index: clanlib-0.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- clanlib-0.8.1.ebuild 25 Feb 2011 18:24:23 -0000 1.8
+++ clanlib-0.8.1.ebuild 15 Sep 2011 02:31:01 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v 1.8 2011/02/25 18:24:23 signals Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v 1.9 2011/09/15 02:31:01 ssuominen Exp $
EAPI=2
inherit flag-o-matic eutils
@@ -38,7 +38,8 @@
epatch \
"${FILESDIR}"/${P}-ndebug.patch \
"${FILESDIR}"/${P}-gcc43.patch \
- "${FILESDIR}"/${P}-gcc44.patch
+ "${FILESDIR}"/${P}-gcc44.patch \
+ "${FILESDIR}"/${P}-libpng15.patch
}
src_configure() {
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-games/clanlib: ChangeLog clanlib-0.8.1.ebuild
@ 2012-03-07 15:58 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 10+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2012-03-07 15:58 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 12/03/07 15:58:05
Modified: ChangeLog clanlib-0.8.1.ebuild
Log:
Adjust X deps (bug #407273)
(Portage version: 2.1.10.44/cvs/Linux i686)
Revision Changes Path
1.52 dev-games/clanlib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.52&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.52&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?r1=1.51&r2=1.52
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog 7 Feb 2012 10:02:38 -0000 1.51
+++ ChangeLog 7 Mar 2012 15:58:04 -0000 1.52
@@ -1,6 +1,9 @@
# 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.51 2012/02/07 10:02:38 tupone Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.52 2012/03/07 15:58:04 mr_bones_ Exp $
+
+ 07 Mar 2012; Michael Sterrett <mr_bones_@gentoo.org> clanlib-0.8.1.ebuild:
+ Adjust X deps (bug #407273)
07 Feb 2012; Tupone Alfredo <tupone@gentoo.org> clanlib-2.3.4.ebuild:
mikmod and vorbis require sound
1.10 dev-games/clanlib/clanlib-0.8.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?r1=1.9&r2=1.10
Index: clanlib-0.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- clanlib-0.8.1.ebuild 15 Sep 2011 02:31:01 -0000 1.9
+++ clanlib-0.8.1.ebuild 7 Mar 2012 15:58:04 -0000 1.10
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# 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-0.8.1.ebuild,v 1.9 2011/09/15 02:31:01 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v 1.10 2012/03/07 15:58:04 mr_bones_ Exp $
EAPI=2
inherit flag-o-matic eutils
@@ -23,7 +23,7 @@
media-libs/libsdl
media-libs/sdl-gfx
)
- x11-libs/libXt
+ x11-libs/libXi
x11-libs/libXmu
x11-libs/libXxf86vm
media-libs/alsa-lib
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-games/clanlib: ChangeLog clanlib-0.8.1.ebuild
@ 2012-12-29 21:58 Sergey Popov (pinkbyte)
0 siblings, 0 replies; 10+ messages in thread
From: Sergey Popov (pinkbyte) @ 2012-12-29 21:58 UTC (permalink / raw
To: gentoo-commits
pinkbyte 12/12/29 21:58:59
Modified: ChangeLog clanlib-0.8.1.ebuild
Log:
Add missing dependency on virtual/glu
(Portage version: 2.2.0_alpha144/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.61 dev-games/clanlib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.61&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.61&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?r1=1.60&r2=1.61
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog 4 Dec 2012 11:16:08 -0000 1.60
+++ ChangeLog 29 Dec 2012 21:58:59 -0000 1.61
@@ -1,6 +1,9 @@
# 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.60 2012/12/04 11:16:08 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.61 2012/12/29 21:58:59 pinkbyte Exp $
+
+ 29 Dec 2012; Sergey Popov <pinkbyte@gentoo.org> clanlib-0.8.1.ebuild:
+ Add missing dependency on virtual/glu
04 Dec 2012; <ago@gentoo.org> clanlib-2.3.6.ebuild:
Stable for x86, wrt bug #440168
1.11 dev-games/clanlib/clanlib-0.8.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?r1=1.10&r2=1.11
Index: clanlib-0.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- clanlib-0.8.1.ebuild 7 Mar 2012 15:58:04 -0000 1.10
+++ clanlib-0.8.1.ebuild 29 Dec 2012 21:58:59 -0000 1.11
@@ -1,6 +1,6 @@
# 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-0.8.1.ebuild,v 1.10 2012/03/07 15:58:04 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v 1.11 2012/12/29 21:58:59 pinkbyte Exp $
EAPI=2
inherit flag-o-matic eutils
@@ -18,6 +18,7 @@
# Autoconf files need to be fixed
RDEPEND="media-libs/libpng
virtual/jpeg
+ virtual/glu
virtual/opengl
sdl? (
media-libs/libsdl
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-games/clanlib: ChangeLog clanlib-0.8.1.ebuild
@ 2012-12-29 22:01 Sergey Popov (pinkbyte)
0 siblings, 0 replies; 10+ messages in thread
From: Sergey Popov (pinkbyte) @ 2012-12-29 22:01 UTC (permalink / raw
To: gentoo-commits
pinkbyte 12/12/29 22:01:44
Modified: ChangeLog clanlib-0.8.1.ebuild
Log:
Fix building with gcc 4.7, wrt bug #448428
(Portage version: 2.2.0_alpha144/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.62 dev-games/clanlib/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.62&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.62&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?r1=1.61&r2=1.62
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog 29 Dec 2012 21:58:59 -0000 1.61
+++ ChangeLog 29 Dec 2012 22:01:44 -0000 1.62
@@ -1,6 +1,11 @@
# 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.61 2012/12/29 21:58:59 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.62 2012/12/29 22:01:44 pinkbyte Exp $
+
+ 29 Dec 2012; Sergey Popov <pinkbyte@gentoo.org> clanlib-0.8.1.ebuild,
+ +files/clanlib-0.8.1-gcc47.patch:
+ Fix building with gcc 4.7, wrt bug #448428. Thanks to Diego Elio Pettenò for
+ discovering this issue
29 Dec 2012; Sergey Popov <pinkbyte@gentoo.org> clanlib-0.8.1.ebuild:
Add missing dependency on virtual/glu
1.12 dev-games/clanlib/clanlib-0.8.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild?r1=1.11&r2=1.12
Index: clanlib-0.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- clanlib-0.8.1.ebuild 29 Dec 2012 21:58:59 -0000 1.11
+++ clanlib-0.8.1.ebuild 29 Dec 2012 22:01:44 -0000 1.12
@@ -1,6 +1,6 @@
# 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-0.8.1.ebuild,v 1.11 2012/12/29 21:58:59 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.8.1.ebuild,v 1.12 2012/12/29 22:01:44 pinkbyte Exp $
EAPI=2
inherit flag-o-matic eutils
@@ -40,6 +40,7 @@
"${FILESDIR}"/${P}-ndebug.patch \
"${FILESDIR}"/${P}-gcc43.patch \
"${FILESDIR}"/${P}-gcc44.patch \
+ "${FILESDIR}"/${P}-gcc47.patch \
"${FILESDIR}"/${P}-libpng15.patch
}
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2012-12-29 22:01 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-29 22:01 [gentoo-commits] gentoo-x86 commit in dev-games/clanlib: ChangeLog clanlib-0.8.1.ebuild Sergey Popov (pinkbyte)
-- strict thread matches above, loose matches on Subject: below --
2012-12-29 21:58 Sergey Popov (pinkbyte)
2012-03-07 15:58 Michael Sterrett (mr_bones_)
2011-09-15 2:31 Samuli Suominen (ssuominen)
2011-02-25 18:24 Kevin McCarthy (signals)
2011-01-16 4:22 Michael Sterrett (mr_bones_)
2010-09-17 10:55 Tomas Chvatal (scarabeus)
2009-08-04 21:24 Michael Sterrett (mr_bones_)
2008-05-29 10:53 Christian Faulhammer (opfer)
2008-04-30 20:03 Tristan Heaven (nyhm)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox