From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0EDB4139694 for ; Mon, 13 Mar 2017 13:00:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72D5FE0DAC; Mon, 13 Mar 2017 13:00:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4EAE1E0DAC for ; Mon, 13 Mar 2017 13:00:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 242FC341616 for ; Mon, 13 Mar 2017 13:00:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 11B8C66C8 for ; Mon, 13 Mar 2017 13:00:08 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1489410004.fcc184cf9d8aec52a5cda3022f736e46ac967b20.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/physfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-games/physfs/physfs-2.0.3-r1.ebuild X-VCS-Directories: dev-games/physfs/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: fcc184cf9d8aec52a5cda3022f736e46ac967b20 X-VCS-Branch: master Date: Mon, 13 Mar 2017 13:00:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: fb773acb-a426-4678-b1e9-7c47edde083a X-Archives-Hash: e66621bfbf84a65e7f352a2581959987 commit: fcc184cf9d8aec52a5cda3022f736e46ac967b20 Author: Lars Wendler gentoo org> AuthorDate: Mon Mar 13 12:58:39 2017 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Mar 13 13:00:04 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcc184cf dev-games/physfs: Removed old. Package-Manager: Portage-2.3.4, Repoman-2.3.2 dev-games/physfs/physfs-2.0.3-r1.ebuild | 56 --------------------------------- 1 file changed, 56 deletions(-) diff --git a/dev-games/physfs/physfs-2.0.3-r1.ebuild b/dev-games/physfs/physfs-2.0.3-r1.ebuild deleted file mode 100644 index 2b833d91725..00000000000 --- a/dev-games/physfs/physfs-2.0.3-r1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -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 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 - # 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-multilib_src_configure -} - -src_compile() { - cmake-multilib_src_compile - - if multilib_is_native_abi && 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-multilib_src_install -}