summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2013-01-22 18:02:09 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2013-01-22 18:02:09 +0000
commit56f3763742256794e861130eb4fa888af1c531d1 (patch)
tree2da4df8e5940d0c8848efd4fcc589eda20b501eb /dev-games
parentold (diff)
downloadgentoo-2-56f3763742256794e861130eb4fa888af1c531d1.tar.gz
gentoo-2-56f3763742256794e861130eb4fa888af1c531d1.tar.bz2
gentoo-2-56f3763742256794e861130eb4fa888af1c531d1.zip
old
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-games')
-rw-r--r--dev-games/physfs/ChangeLog6
-rw-r--r--dev-games/physfs/physfs-2.0.1.ebuild61
-rw-r--r--dev-games/physfs/physfs-2.0.2-r1.ebuild60
3 files changed, 5 insertions, 122 deletions
diff --git a/dev-games/physfs/ChangeLog b/dev-games/physfs/ChangeLog
index 99260c377af5..550808e53959 100644
--- a/dev-games/physfs/ChangeLog
+++ b/dev-games/physfs/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-games/physfs
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/physfs/ChangeLog,v 1.54 2013/01/20 13:11:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/physfs/ChangeLog,v 1.55 2013/01/22 18:02:07 mr_bones_ Exp $
+
+ 22 Jan 2013; Michael Sterrett <mr_bones_@gentoo.org> -physfs-2.0.1.ebuild,
+ -physfs-2.0.2-r1.ebuild:
+ old
20 Jan 2013; Agostino Sarubbo <ago@gentoo.org> physfs-2.0.3.ebuild:
Stable for arm, wrt bug #449930
diff --git a/dev-games/physfs/physfs-2.0.1.ebuild b/dev-games/physfs/physfs-2.0.1.ebuild
deleted file mode 100644
index b2c9adeaf610..000000000000
--- a/dev-games/physfs/physfs-2.0.1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/physfs/physfs-2.0.1.ebuild,v 1.7 2010/10/15 12:41:05 ranger Exp $
-
-EAPI=2
-inherit cmake-utils
-
-DESCRIPTION="Abstraction layer for filesystem and archive access"
-HOMEPAGE="http://icculus.org/physfs/"
-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 qpak static-libs wad +zip"
-
-RDEPEND=""
-DEPEND="doc? ( app-doc/doxygen )"
-
-src_prepare() {
- sed -i \
- -e 's:-Werror::' \
- -e '/DESTINATION/s:lib:lib${LIB_SUFFIX}:' \
- CMakeLists.txt \
- || die "sed failed"
- # make sure these libs aren't used
- rm -rf lzma zlib*
-}
-
-src_configure() {
- local mycmakeargs="
- -DPHYSFS_ARCHIVE_7Z=OFF
- -DPHYSFS_BUILD_SHARED=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)
- $(cmake-utils_use wad PHYSFS_ARCHIVE_WAD)
- $(cmake-utils_use qpak PHYSFS_ARCHIVE_QPAK)
- $(cmake-utils_use zip PHYSFS_ARCHIVE_ZIP)"
-
- cmake-utils_src_configure
-}
-
-src_compile() {
- cmake-utils_src_compile
-
- if use doc ; then
- doxygen || die "doxygen failed"
- fi
-}
-
-src_install() {
- local DOCS="CHANGELOG.txt CREDITS.txt TODO.txt"
- local HTML_DOCS=$(use doc && echo docs/html/*)
-
- cmake-utils_src_install
-}
diff --git a/dev-games/physfs/physfs-2.0.2-r1.ebuild b/dev-games/physfs/physfs-2.0.2-r1.ebuild
deleted file mode 100644
index 24dea4ad11e8..000000000000
--- a/dev-games/physfs/physfs-2.0.2-r1.ebuild
+++ /dev/null
@@ -1,60 +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/physfs/physfs-2.0.2-r1.ebuild,v 1.7 2012/09/03 15:28:40 chithanh Exp $
-
-EAPI=2
-inherit cmake-utils
-
-DESCRIPTION="Abstraction layer for filesystem and archive access"
-HOMEPAGE="http://icculus.org/physfs/"
-SRC_URI="http://icculus.org/physfs/downloads/${P}.tar.gz"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ppc ppc64 sparc x86 ~x86-fbsd"
-IUSE="doc grp hog mvl qpak static-libs wad +zip"
-
-RDEPEND=""
-DEPEND="doc? ( app-doc/doxygen )"
-
-src_prepare() {
- sed -i \
- -e 's:-Werror::' \
- CMakeLists.txt \
- || die "sed failed"
- # make sure these libs aren't used
- rm -rf lzma zlib*
-}
-
-src_configure() {
- local mycmakeargs="
- -DPHYSFS_ARCHIVE_7Z=OFF
- -DPHYSFS_BUILD_SHARED=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)
- $(cmake-utils_use wad PHYSFS_ARCHIVE_WAD)
- $(cmake-utils_use qpak PHYSFS_ARCHIVE_QPAK)
- $(cmake-utils_use zip PHYSFS_ARCHIVE_ZIP)"
-
- cmake-utils_src_configure
-}
-
-src_compile() {
- cmake-utils_src_compile
-
- if use doc ; then
- doxygen || die "doxygen failed"
- fi
-}
-
-src_install() {
- local DOCS="CHANGELOG.txt CREDITS.txt TODO.txt"
- local HTML_DOCS=$(use doc && echo docs/html/*)
-
- cmake-utils_src_install
-}