summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2012-03-02 20:50:16 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2012-03-02 20:50:16 +0000
commit00a03a763456bd6f43d0d413098384a77cd709ef (patch)
tree46eb6e01ce3317fd384d909f30fe5b10253218e7 /media-libs/alure
parentMarking lksctp-tools-1.0.11-r1 ppc64 for bug 400449 (diff)
downloadgentoo-2-00a03a763456bd6f43d0d413098384a77cd709ef.tar.gz
gentoo-2-00a03a763456bd6f43d0d413098384a77cd709ef.tar.bz2
gentoo-2-00a03a763456bd6f43d0d413098384a77cd709ef.zip
old
(Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/alure')
-rw-r--r--media-libs/alure/ChangeLog7
-rw-r--r--media-libs/alure/alure-1.0.ebuild38
-rw-r--r--media-libs/alure/alure-1.1.ebuild44
-rw-r--r--media-libs/alure/files/alure-1.0-gcc44.patch11
-rw-r--r--media-libs/alure/files/alure-1.0-multilib.patch21
5 files changed, 6 insertions, 115 deletions
diff --git a/media-libs/alure/ChangeLog b/media-libs/alure/ChangeLog
index a280ffbf3bde..8110be8531cc 100644
--- a/media-libs/alure/ChangeLog
+++ b/media-libs/alure/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-libs/alure
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alure/ChangeLog,v 1.7 2012/03/02 20:49:24 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alure/ChangeLog,v 1.8 2012/03/02 20:50:15 ssuominen Exp $
+
+ 02 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> -alure-1.0.ebuild,
+ -files/alure-1.0-gcc44.patch, -files/alure-1.0-multilib.patch,
+ -alure-1.1.ebuild:
+ old
02 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> alure-1.2.ebuild:
Keyword ~ppc/~ppc64 wrt #388577
diff --git a/media-libs/alure/alure-1.0.ebuild b/media-libs/alure/alure-1.0.ebuild
deleted file mode 100644
index a1e8127fdffc..000000000000
--- a/media-libs/alure/alure-1.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alure/alure-1.0.ebuild,v 1.3 2010/04/27 20:11:55 ssuominen Exp $
-
-EAPI=2
-inherit cmake-utils
-
-DESCRIPTION="The OpenAL Utility Toolkit"
-HOMEPAGE="http://kcat.strangesoft.net/alure.html"
-SRC_URI="http://kcat.strangesoft.net/alure-releases/${P}-src.tar.bz2"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE="sndfile vorbis"
-
-DEPEND="media-libs/openal
- sndfile? ( media-libs/libsndfile )
- vorbis? ( media-libs/libvorbis )"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-gcc44.patch \
- "${FILESDIR}"/${P}-multilib.patch
-
- sed -i \
- -e "/DESTINATION/s:doc/alure:doc/${PF}:" \
- CMakeLists.txt || die
-}
-
-src_configure() {
- mycmakeargs=(
- "-DFLAC=OFF"
- $(cmake-utils_use sndfile)
- $(cmake-utils_use vorbis)
- )
-
- cmake-utils_src_configure
-}
diff --git a/media-libs/alure/alure-1.1.ebuild b/media-libs/alure/alure-1.1.ebuild
deleted file mode 100644
index c7a574a01456..000000000000
--- a/media-libs/alure/alure-1.1.ebuild
+++ /dev/null
@@ -1,44 +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/alure/alure-1.1.ebuild,v 1.2 2011/04/11 17:12:42 ssuominen Exp $
-
-EAPI=2
-inherit cmake-utils
-
-DESCRIPTION="The OpenAL Utility Toolkit"
-HOMEPAGE="http://kcat.strangesoft.net/alure.html"
-SRC_URI="http://kcat.strangesoft.net/alure-releases/${P}.tar.bz2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="dumb flac fluidsynth mp3 sndfile static-libs vorbis"
-
-RDEPEND=">=media-libs/openal-1.1
- dumb? ( media-libs/dumb )
- flac? ( media-libs/flac )
- fluidsynth? ( >=media-sound/fluidsynth-1.1.1 )
- mp3? ( media-sound/mpg123 )
- sndfile? ( media-libs/libsndfile )
- vorbis? ( media-libs/libvorbis )"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- sed -i -e "/DESTINATION/s:doc/alure:doc/${PF}:" CMakeLists.txt || die
-}
-
-src_configure() {
- # FIXME: libmodplug/sndfile.h from libmodplug conflict with sndfile.h from libsndfile
- local mycmakeargs=(
- $(cmake-utils_use dumb)
- $(cmake-utils_use flac)
- $(cmake-utils_use fluidsynth)
- -DMODPLUG=OFF
- $(cmake-utils_use mp3 MPG123)
- $(cmake-utils_use sndfile)
- $(cmake-utils_use_build static-libs STATIC)
- $(cmake-utils_use vorbis)
- )
-
- cmake-utils_src_configure
-}
diff --git a/media-libs/alure/files/alure-1.0-gcc44.patch b/media-libs/alure/files/alure-1.0-gcc44.patch
deleted file mode 100644
index 671ad507d13c..000000000000
--- a/media-libs/alure/files/alure-1.0-gcc44.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -ur alure-1.0.orig/src/stream.cpp alure-1.0/src/stream.cpp
---- alure-1.0.orig/src/stream.cpp 2009-01-14 12:19:37.000000000 +0200
-+++ alure-1.0/src/stream.cpp 2009-12-13 17:10:51.000000000 +0200
-@@ -4,6 +4,7 @@
-
- #include "main.h"
-
-+#include <stdio.h>
- #include <string.h>
-
- #include <algorithm>
diff --git a/media-libs/alure/files/alure-1.0-multilib.patch b/media-libs/alure/files/alure-1.0-multilib.patch
deleted file mode 100644
index 30cfb3c9bb34..000000000000
--- a/media-libs/alure/files/alure-1.0-multilib.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -ur alure-1.0.orig/CMakeLists.txt alure-1.0/CMakeLists.txt
---- alure-1.0.orig/CMakeLists.txt 2009-01-16 10:29:52.000000000 +0200
-+++ alure-1.0/CMakeLists.txt 2009-12-13 17:18:10.000000000 +0200
-@@ -27,7 +27,7 @@
- SET(LIB_BUILD_VERSION "72")
- SET(LIB_VERSION "${LIB_MAJOR_VERSION}.${LIB_MINOR_VERSION}.${LIB_BUILD_VERSION}")
- IF(NOT DEFINED LIB_INSTALL_DIR)
-- SET(LIB_INSTALL_DIR "lib")
-+ SET(LIB_INSTALL_DIR "lib${LIB_SUFFIX}")
- ENDIF(NOT DEFINED LIB_INSTALL_DIR)
-
-
-@@ -323,7 +323,7 @@
- DESTINATION "include/${INCPATH}"
- )
- INSTALL(FILES "${ALURE_BINARY_DIR}/alure.pc"
-- DESTINATION lib/pkgconfig
-+ DESTINATION ${LIB_INSTALL_DIR}/pkgconfig
- )
-
-