summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2017-06-16 11:35:01 +0200
committerAlexis Ballier <aballier@gentoo.org>2017-06-16 11:36:30 +0200
commitd2c8c9e1808fb97548ae0592df5aae2517c6a05a (patch)
tree5f26cd4faf1c45c7e7d1e0a5233c2264ca3176e2 /media-libs/soxr
parentmedia-libs/fdk-aac: keyword ~arm64 (diff)
downloadgentoo-d2c8c9e1808fb97548ae0592df5aae2517c6a05a.tar.gz
gentoo-d2c8c9e1808fb97548ae0592df5aae2517c6a05a.tar.bz2
gentoo-d2c8c9e1808fb97548ae0592df5aae2517c6a05a.zip
media-libs/soxr: remove old
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'media-libs/soxr')
-rw-r--r--media-libs/soxr/Manifest1
-rw-r--r--media-libs/soxr/files/libsuffix.patch13
-rw-r--r--media-libs/soxr/soxr-0.1.0.ebuild35
3 files changed, 0 insertions, 49 deletions
diff --git a/media-libs/soxr/Manifest b/media-libs/soxr/Manifest
index e51f4c53310c..c4cf73794a91 100644
--- a/media-libs/soxr/Manifest
+++ b/media-libs/soxr/Manifest
@@ -1,3 +1,2 @@
-DIST soxr-0.1.0-Source.tar.xz 78900 SHA256 12ce532a3045a3f6942736ac3417c6cafe0204896eb86537527d79723ddbffb1 SHA512 c11ad01461adde4ebd9db63d130b96c2e0335b75f166d7d966da7d2efa54495dfdf5cda271b806816945f880e61e4e9e0c6b29df7735f33b6adf3a857b336c85 WHIRLPOOL 8125926d8802d89f2a70b5f400df1c9452dc689fb94af0e3da54dcf8ba396a8cd5f325460ecb41af441c70dffe5639bad17b0ecd105426794482a2284f3eee77
DIST soxr-0.1.1-Source.tar.xz 80716 SHA256 dcc16868d1a157079316f84233afcc2b52dd0bd541dd8439dc25bceb306faac2 SHA512 377d9c0bb72cd673f89021a86da18861d35ab52f773afd97b6b5f7a2fa8e78865f3484cab4b795ceafacbbb34be6b77efeaaed75c66a839d5e891d70f00d6679 WHIRLPOOL bde1b4a0069200b5352c065a15e7296f6b58c902585ae384a3b2c31e38daa86db6df4d05c948072f83db0a1bb11364e21b02814bf0f65fb6ad625a3b38d618e8
DIST soxr-0.1.2-Source.tar.xz 83760 SHA256 54e6f434f1c491388cd92f0e3c47f1ade082cc24327bdc43762f7d1eefe0c275 SHA512 ee902c1bc713e05b748f917d78222b68b5fe01d43f405e0954c21ce4d1ee494d01000caa79f696cb8d202c662a4c4d958b332dae034d6f929e0480abf27cd07c WHIRLPOOL 77ea4be0fc57d4dadca9779c7fda5ed75532d220f3fa36afdfba12746e0a76344bfdfdb085d353432e83fe3f94ae7b8c79e6993e9e68f0e1f19a2da74ca97bfe
diff --git a/media-libs/soxr/files/libsuffix.patch b/media-libs/soxr/files/libsuffix.patch
deleted file mode 100644
index e22512b78188..000000000000
--- a/media-libs/soxr/files/libsuffix.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: soxr-0.1.0-Source/CMakeLists.txt
-===================================================================
---- soxr-0.1.0-Source.orig/CMakeLists.txt
-+++ soxr-0.1.0-Source/CMakeLists.txt
-@@ -180,7 +180,7 @@ if (NOT DEFINED BIN_INSTALL_DIR)
- set (BIN_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/bin")
- endif ()
- if (NOT DEFINED LIB_INSTALL_DIR)
-- set (LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib")
-+ set (LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}")
- endif ()
- if (NOT DEFINED INCLUDE_INSTALL_DIR)
- set (INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include")
diff --git a/media-libs/soxr/soxr-0.1.0.ebuild b/media-libs/soxr/soxr-0.1.0.ebuild
deleted file mode 100644
index a0d6781c1795..000000000000
--- a/media-libs/soxr/soxr-0.1.0.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-multilib
-
-MY_P=${P}-Source
-DESCRIPTION="The SoX Resampler library"
-HOMEPAGE="https://sourceforge.net/p/soxr/wiki/Home/"
-SRC_URI="mirror://sourceforge/soxr/${MY_P}.tar.xz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~mips"
-IUSE="examples"
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-DOCS=( "README" "TODO" "NEWS" "AUTHORS" )
-PATCHES=(
- "${FILESDIR}/libsuffix.patch"
- "${FILESDIR}/nodoc.patch"
- "${FILESDIR}/noexamples.patch"
- )
-
-src_install() {
- cmake-multilib_src_install
- if use examples ; then
- dodoc -r examples
- docompress -x /usr/share/doc/${PF}/examples
- fi
-}