diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-10-29 16:04:58 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-10-29 16:04:58 +0000 |
commit | def6b59caf4dbef09a3caa7d695c1b138acdc11b (patch) | |
tree | fbab35bc2daea53f587420f55a1fe46fdf8fea79 /dev-games | |
parent | amd64/x86 stable, bug #289368 (diff) | |
download | gentoo-2-def6b59caf4dbef09a3caa7d695c1b138acdc11b.tar.gz gentoo-2-def6b59caf4dbef09a3caa7d695c1b138acdc11b.tar.bz2 gentoo-2-def6b59caf4dbef09a3caa7d695c1b138acdc11b.zip |
add static-libs support
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'dev-games')
-rw-r--r-- | dev-games/physfs/ChangeLog | 5 | ||||
-rw-r--r-- | dev-games/physfs/physfs-2.0.0.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/dev-games/physfs/ChangeLog b/dev-games/physfs/ChangeLog index 5eb8162b3345..526fd37e7315 100644 --- a/dev-games/physfs/ChangeLog +++ b/dev-games/physfs/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-games/physfs # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/physfs/ChangeLog,v 1.28 2009/10/11 16:46:20 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-games/physfs/ChangeLog,v 1.29 2009/10/29 16:04:58 mr_bones_ Exp $ + + 29 Oct 2009; Michael Sterrett <mr_bones_@gentoo.org> physfs-2.0.0.ebuild: + add static-libs support 11 Oct 2009; Raúl Porcel <armin76@gentoo.org> physfs-2.0.0.ebuild: sparc stable wrt #284979 diff --git a/dev-games/physfs/physfs-2.0.0.ebuild b/dev-games/physfs/physfs-2.0.0.ebuild index 2e09adce72ec..e2157ff9df8f 100644 --- a/dev-games/physfs/physfs-2.0.0.ebuild +++ b/dev-games/physfs/physfs-2.0.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/physfs/physfs-2.0.0.ebuild,v 1.8 2009/10/11 16:46:20 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-games/physfs/physfs-2.0.0.ebuild,v 1.9 2009/10/29 16:04:58 mr_bones_ Exp $ EAPI=2 inherit cmake-utils @@ -12,7 +12,7 @@ SRC_URI="http://icculus.org/physfs/downloads/${P}.tar.gz" LICENSE="ZLIB" SLOT="0" KEYWORDS="alpha amd64 hppa ~ppc ppc64 sparc x86 ~x86-fbsd" -IUSE="doc grp hog mvl wad qpak +zip" +IUSE="doc grp hog mvl qpak static-libs wad +zip" RDEPEND="" DEPEND="doc? ( app-doc/doxygen )" @@ -31,10 +31,10 @@ src_configure() { local mycmakeargs=" -DPHYSFS_ARCHIVE_7Z=OFF -DPHYSFS_BUILD_SHARED=ON - -DPHYSFS_BUILD_STATIC=ON -DPHYSFS_BUILD_TEST=OFF -DPHYSFS_BUILD_WX_TEST=OFF -DPHYSFS_INTERNAL_ZLIB=OFF + $(cmake-utils_use static-libs PHYSFS_BUILD_STATIC) $(cmake-utils_use grp PHYSFS_ARCHIVE_GRP) $(cmake-utils_use hog PHYSFS_ARCHIVE_HOG) $(cmake-utils_use mvl PHYSFS_ARCHIVE_MVL) |