summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2015-04-28 03:58:09 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2015-04-28 03:58:09 +0000
commit8cd27e25a59ff040c78542819f9bd050a06fb30e (patch)
tree7c7fc405f7969b6374f2acf03d07607bad02277e
parentadd missing dep, fixes Bug #546926 (diff)
downloadgentoo-2-8cd27e25a59ff040c78542819f9bd050a06fb30e.tar.gz
gentoo-2-8cd27e25a59ff040c78542819f9bd050a06fb30e.tar.bz2
gentoo-2-8cd27e25a59ff040c78542819f9bd050a06fb30e.zip
old
(Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)
-rw-r--r--media-libs/sdl-sound/ChangeLog5
-rw-r--r--media-libs/sdl-sound/sdl-sound-1.0.3.ebuild59
2 files changed, 4 insertions, 60 deletions
diff --git a/media-libs/sdl-sound/ChangeLog b/media-libs/sdl-sound/ChangeLog
index a798d07f3066..4bb02aea37c1 100644
--- a/media-libs/sdl-sound/ChangeLog
+++ b/media-libs/sdl-sound/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/sdl-sound
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-sound/ChangeLog,v 1.53 2015/04/28 02:16:15 jmorgan Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-sound/ChangeLog,v 1.54 2015/04/28 03:58:09 mr_bones_ Exp $
+
+ 28 Apr 2015; Michael Sterrett <mr_bones_@gentoo.org> -sdl-sound-1.0.3.ebuild:
+ old
28 Apr 2015; Jack Morgan <jmorgan@gentoo.org> sdl-sound-1.0.3-r1.ebuild:
ppc64 stable wrt bug #525764
diff --git a/media-libs/sdl-sound/sdl-sound-1.0.3.ebuild b/media-libs/sdl-sound/sdl-sound-1.0.3.ebuild
deleted file mode 100644
index 8b1f41eb917d..000000000000
--- a/media-libs/sdl-sound/sdl-sound-1.0.3.ebuild
+++ /dev/null
@@ -1,59 +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/sdl-sound/sdl-sound-1.0.3.ebuild,v 1.12 2013/04/30 21:13:39 hasufell Exp $
-
-EAPI=2
-inherit autotools eutils
-
-MY_P="${P/sdl-/SDL_}"
-DESCRIPTION="A library that handles the decoding of sound file formats"
-HOMEPAGE="http://icculus.org/SDL_sound/"
-SRC_URI="http://icculus.org/SDL_sound/downloads/${MY_P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc ppc64 sparc x86 ~x86-fbsd ~x64-macos"
-IUSE="flac mikmod modplug mp3 mpeg physfs speex static-libs vorbis"
-
-RDEPEND=">=media-libs/libsdl-1.2
- flac? ( media-libs/flac )
- mikmod? ( >=media-libs/libmikmod-3.1.9 )
- modplug? ( media-libs/libmodplug )
- vorbis? ( >=media-libs/libvorbis-1.0_beta4 )
- speex? ( media-libs/speex media-libs/libogg )
- physfs? ( dev-games/physfs )
- mpeg? ( media-libs/smpeg )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-{underlinking,automake-1.13}.patch
- mv configure.in configure.ac || die
- eautoreconf
-}
-
-src_configure() {
- econf \
- --disable-dependency-tracking \
- --enable-midi \
- $(use_enable mpeg smpeg) \
- $(use_enable mp3 mpglib) \
- $(use_enable flac) \
- $(use_enable speex) \
- $(use_enable static-libs static) \
- $(use_enable mikmod) \
- $(use_enable modplug) \
- $(use_enable physfs) \
- $(use_enable vorbis ogg)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc CHANGELOG CREDITS README TODO
- if ! use static-libs ; then
- find "${D}" -type f -name '*.la' -exec rm {} + \
- || die "la removal failed"
- fi
-}