diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2007-11-01 20:24:02 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2007-11-01 20:24:02 +0000 |
commit | ea9193aacbb68868f7e51ca90da40b2795a7c983 (patch) | |
tree | 01c40ce4b71dec713fb20f62dfddd1b5493c4b99 /media-libs | |
parent | Move 2.1 slot ebuild to java overlay as nothing in the main tree needs it. (diff) | |
download | gentoo-2-ea9193aacbb68868f7e51ca90da40b2795a7c983.tar.gz gentoo-2-ea9193aacbb68868f7e51ca90da40b2795a7c983.tar.bz2 gentoo-2-ea9193aacbb68868f7e51ca90da40b2795a7c983.zip |
old
(Portage version: 2.1.3.16)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/sdl-sound/files/digest-sdl-sound-1.0.1-r1 | 3 | ||||
-rw-r--r-- | media-libs/sdl-sound/sdl-sound-1.0.1-r1.ebuild | 46 |
2 files changed, 0 insertions, 49 deletions
diff --git a/media-libs/sdl-sound/files/digest-sdl-sound-1.0.1-r1 b/media-libs/sdl-sound/files/digest-sdl-sound-1.0.1-r1 deleted file mode 100644 index a46d066d44c6..000000000000 --- a/media-libs/sdl-sound/files/digest-sdl-sound-1.0.1-r1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 49e197ef7c8ab623d0640dc74be43160 SDL_sound-1.0.1.tar.gz 1019056 -RMD160 28d934d604e5db9b3b0b681785406587323ea765 SDL_sound-1.0.1.tar.gz 1019056 -SHA256 8289b483d994283d599686643d402d073c8dd6c067a9c5b232a7e3e03eca4089 SDL_sound-1.0.1.tar.gz 1019056 diff --git a/media-libs/sdl-sound/sdl-sound-1.0.1-r1.ebuild b/media-libs/sdl-sound/sdl-sound-1.0.1-r1.ebuild deleted file mode 100644 index 47361df3d219..000000000000 --- a/media-libs/sdl-sound/sdl-sound-1.0.1-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2006 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.1-r1.ebuild,v 1.8 2006/11/08 21:31:55 mr_bones_ Exp $ - -WANT_AUTOCONF="latest" -WANT_AUTOMAKE="latest" -inherit autotools - -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 ppc ppc64 sparc x86" -IUSE="flac mikmod vorbis speex physfs" - -DEPEND=">=media-libs/libsdl-1.2 - flac? ( ~media-libs/flac-1.1.2 ) - mikmod? ( >=media-libs/libmikmod-3.1.9 ) - vorbis? ( >=media-libs/libvorbis-1.0_beta4 ) - speex? ( media-libs/speex - media-libs/libogg ) - physfs? ( dev-games/physfs )" - -S=${WORKDIR}/${MY_P} - -src_compile() { - econf \ - --disable-dependency-tracking \ - --enable-midi \ - --disable-smpeg \ - $(use_enable flac) \ - $(use_enable speex) \ - $(use_enable mikmod) \ - $(use_enable physfs) \ - $(use_enable vorbis ogg) \ - || die - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc CHANGELOG CREDITS README TODO -} |