summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2013-06-01 23:52:05 +0000
committerTim Harder <radhermit@gentoo.org>2013-06-01 23:52:05 +0000
commit8d9978c841297c6f22ee88bc8d1ace2937935ea4 (patch)
tree18ef6856945eec4c025efb0fe0bcc54557b0dd46 /media-libs/libreplaygain
parentRemove old. (diff)
downloadgentoo-2-8d9978c841297c6f22ee88bc8d1ace2937935ea4.tar.gz
gentoo-2-8d9978c841297c6f22ee88bc8d1ace2937935ea4.tar.bz2
gentoo-2-8d9978c841297c6f22ee88bc8d1ace2937935ea4.zip
Remove old.
(Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'media-libs/libreplaygain')
-rw-r--r--media-libs/libreplaygain/ChangeLog6
-rw-r--r--media-libs/libreplaygain/files/libreplaygain-444-multilib.patch42
-rw-r--r--media-libs/libreplaygain/libreplaygain-444.ebuild30
-rw-r--r--media-libs/libreplaygain/libreplaygain-465.ebuild30
4 files changed, 5 insertions, 103 deletions
diff --git a/media-libs/libreplaygain/ChangeLog b/media-libs/libreplaygain/ChangeLog
index a2733fde100d..96dae2e185fe 100644
--- a/media-libs/libreplaygain/ChangeLog
+++ b/media-libs/libreplaygain/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/libreplaygain
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libreplaygain/ChangeLog,v 1.39 2013/06/01 14:16:15 creffett Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libreplaygain/ChangeLog,v 1.40 2013/06/01 23:52:05 radhermit Exp $
+
+ 01 Jun 2013; Tim Harder <radhermit@gentoo.org> -libreplaygain-444.ebuild,
+ -libreplaygain-465.ebuild, -files/libreplaygain-444-multilib.patch:
+ Remove old.
01 Jun 2013; Chris Reffett <creffett@gentoo.org> libreplaygain-444.ebuild:
EAPI bump wrt bug 460572
diff --git a/media-libs/libreplaygain/files/libreplaygain-444-multilib.patch b/media-libs/libreplaygain/files/libreplaygain-444-multilib.patch
deleted file mode 100644
index 16bc0ea5aa8f..000000000000
--- a/media-libs/libreplaygain/files/libreplaygain-444-multilib.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-diff -ruN libreplaygain-444.orig/CMakeLists.txt libreplaygain-444/CMakeLists.txt
---- libreplaygain-444.orig/CMakeLists.txt 2009-07-25 14:49:52.000000000 +0300
-+++ libreplaygain-444/CMakeLists.txt 2009-07-31 16:29:50.000000000 +0300
-@@ -4,8 +4,11 @@
-
- set(CMAKE_VERBOSE_MAKEFILE false)
-
-+option(SHARED "Use shared libreplaygain" OFF)
-+
- if(NOT MSVC)
- set(CMAKE_C_FLAGS "-O3 -fomit-frame-pointer -pipe")
- endif(NOT MSVC)
-
--add_subdirectory(src)
-\ No newline at end of file
-+add_subdirectory(src)
-+add_subdirectory(include)
-diff -ruN libreplaygain-444.orig/include/CMakeLists.txt libreplaygain-444/include/CMakeLists.txt
---- libreplaygain-444.orig/include/CMakeLists.txt 1970-01-01 02:00:00.000000000 +0200
-+++ libreplaygain-444/include/CMakeLists.txt 2009-07-31 16:28:59.000000000 +0300
-@@ -0,0 +1 @@
-+INSTALL(DIRECTORY replaygain DESTINATION include)
-diff -ruN libreplaygain-444.orig/src/CMakeLists.txt libreplaygain-444/src/CMakeLists.txt
---- libreplaygain-444.orig/src/CMakeLists.txt 2009-07-25 14:49:52.000000000 +0300
-+++ libreplaygain-444/src/CMakeLists.txt 2009-07-31 16:31:36.000000000 +0300
-@@ -3,7 +3,13 @@
- add_library(replaygain-static STATIC gain_analysis)
- set_target_properties(replaygain-static PROPERTIES OUTPUT_NAME replaygain CLEAN_DIRECT_OUTPUT 1)
-
--add_library(replaygain-shared SHARED gain_analysis)
--set_target_properties(replaygain-shared PROPERTIES OUTPUT_NAME replaygain CLEAN_DIRECT_OUTPUT 1 VERSION 1.0.0 SOVERSION 1)
-+if(SHARED)
-+ add_library(replaygain-shared SHARED gain_analysis)
-+ set_target_properties(replaygain-shared PROPERTIES OUTPUT_NAME replaygain CLEAN_DIRECT_OUTPUT 1 VERSION 1.0.0 SOVERSION 1)
-+endif(SHARED)
-
--install(TARGETS replaygain-static replaygain-shared LIBRARY DESTINATION lib ARCHIVE DESTINATION lib)
-+install(TARGETS replaygain-static LIBRARY DESTINATION "lib${LIB_SUFFIX}" ARCHIVE DESTINATION "lib${LIB_SUFFIX}")
-+
-+if(SHARED)
-+ install(TARGETS replaygain-shared LIBRARY DESTINATION "lib${LIB_SUFFIX}" ARCHIVE DESTINATION "lib${LIB_SUFFIX}")
-+endif(SHARED)
diff --git a/media-libs/libreplaygain/libreplaygain-444.ebuild b/media-libs/libreplaygain/libreplaygain-444.ebuild
deleted file mode 100644
index d55e621a3fba..000000000000
--- a/media-libs/libreplaygain/libreplaygain-444.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libreplaygain/libreplaygain-444.ebuild,v 1.18 2013/06/01 14:16:15 creffett Exp $
-EAPI=5
-
-inherit cmake-utils
-
-# svn co http://svn.musepack.net/libreplaygain libreplaygain-${PV}
-# tar -cjf libreplaygain-${PV}.tar.bz2 libreplaygain-${PV}
-
-DESCRIPTION="Replay Gain library from Musepack"
-HOMEPAGE="http://www.musepack.net"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ppc ppc64 x86 ~x86-fbsd"
-IUSE=""
-
-PATCHES=( "${FILESDIR}/${P}-multilib.patch" )
-
-pkg_setup() {
- mycmakeargs="-DSHARED=ON"
-}
-
-src_install() {
- cmake-utils_src_install
- # Forgot to remove .svn directories from snapshot.
- rm -rf "${D}"/usr/include/replaygain/.svn || die "rm -rf failed"
-}
diff --git a/media-libs/libreplaygain/libreplaygain-465.ebuild b/media-libs/libreplaygain/libreplaygain-465.ebuild
deleted file mode 100644
index 4d704d864abc..000000000000
--- a/media-libs/libreplaygain/libreplaygain-465.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libreplaygain/libreplaygain-465.ebuild,v 1.9 2011/08/17 17:01:35 chithanh Exp $
-
-EAPI=3
-inherit cmake-utils
-
-# svn export http://svn.musepack.net/libreplaygain libreplaygain-${PV}
-# tar -cjf libreplaygain-${PV}.tar.bz2 libreplaygain-${PV}
-
-DESCRIPTION="Replay Gain library from Musepack"
-HOMEPAGE="http://www.musepack.net"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
-IUSE=""
-
-src_prepare() {
- sed -i \
- -e '/CMAKE_C_FLAGS/d' \
- CMakeLists.txt || die
-}
-
-src_install() {
- cmake-utils_src_install
- insinto /usr/include
- doins -r include/replaygain || die
-}