summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Strogin <stefan.strogin@gmail.com>2019-03-03 17:51:02 +0200
committerJames Le Cuirot <chewi@gentoo.org>2019-03-04 20:48:49 +0000
commit1fb8aecf58eca5aa0d9ee7dc623d71f95190a23e (patch)
treec01a3f05f77d189bb38fc524cd372ec6cc36f78a /dev-games/physfs
parentdev-games/physfs: use https; bump EAPI to 7 (diff)
downloadgentoo-1fb8aecf58eca5aa0d9ee7dc623d71f95190a23e.tar.gz
gentoo-1fb8aecf58eca5aa0d9ee7dc623d71f95190a23e.tar.bz2
gentoo-1fb8aecf58eca5aa0d9ee7dc623d71f95190a23e.zip
dev-games/physfs: drop old
Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Stefan Strogin <stefan.strogin@gmail.com> Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'dev-games/physfs')
-rw-r--r--dev-games/physfs/physfs-3.0.1.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-games/physfs/physfs-3.0.1.ebuild b/dev-games/physfs/physfs-3.0.1.ebuild
deleted file mode 100644
index 4b0afd2bd59b..000000000000
--- a/dev-games/physfs/physfs-3.0.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit cmake-multilib
-
-DESCRIPTION="Abstraction layer for filesystem and archive access"
-HOMEPAGE="http://icculus.org/physfs/"
-SRC_URI="http://icculus.org/physfs/downloads/${P}.tar.bz2"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86 ~x86-fbsd"
-IUSE="grp hog mvl qpak static-libs wad +zip"
-
-RDEPEND=""
-DEPEND=""
-
-DOCS=( docs/CHANGELOG.txt docs/CREDITS.txt docs/TODO.txt )
-
-src_prepare() {
- cmake-utils_src_prepare
-
- sed -i -e 's:-Werror::' CMakeLists.txt || die
- # 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
- -DPHYSFS_BUILD_STATIC="$(usex static-libs)"
- -DPHYSFS_ARCHIVE_GRP="$(usex grp)"
- -DPHYSFS_ARCHIVE_HOG="$(usex hog)"
- -DPHYSFS_ARCHIVE_MVL="$(usex mvl)"
- -DPHYSFS_ARCHIVE_WAD="$(usex wad)"
- -DPHYSFS_ARCHIVE_QPAK="$(usex qpak)"
- -DPHYSFS_ARCHIVE_ZIP="$(usex zip)"
- )
-
- cmake-multilib_src_configure
-}