diff options
author | Dan Armak <danarmak@gentoo.org> | 2001-08-27 17:05:03 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2001-08-27 17:05:03 +0000 |
commit | a2aa3a77298f4392ba599544b32990714da5fa94 (patch) | |
tree | 8c844e8fad87576ab0c333f0455f30f09fcfc5f2 /media-libs | |
parent | stupid bugfix 3 (diff) | |
download | gentoo-2-a2aa3a77298f4392ba599544b32990714da5fa94.tar.gz gentoo-2-a2aa3a77298f4392ba599544b32990714da5fa94.tar.bz2 gentoo-2-a2aa3a77298f4392ba599544b32990714da5fa94.zip |
new version correspoding to ogg vorbis rc2
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libao/files/digest-libao-0.8.0 | 1 | ||||
-rw-r--r-- | media-libs/libao/libao-0.8.0.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/media-libs/libao/files/digest-libao-0.8.0 b/media-libs/libao/files/digest-libao-0.8.0 new file mode 100644 index 000000000000..682959372e5c --- /dev/null +++ b/media-libs/libao/files/digest-libao-0.8.0 @@ -0,0 +1 @@ +MD5 e387df473b23e3cd15d2d8fbb5b5d236 libao-0.8.0.tar.gz diff --git a/media-libs/libao/libao-0.8.0.ebuild b/media-libs/libao/libao-0.8.0.ebuild new file mode 100644 index 000000000000..380081a7e3bf --- /dev/null +++ b/media-libs/libao/libao-0.8.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Peter Gavin <pbg1854@garnet.acns.fsu.edu> +# $Header: /var/cvsroot/gentoo-x86/media-libs/libao/libao-0.8.0.ebuild,v 1.1 2001/08/27 17:05:03 danarmak Exp $ + + +A=${PN}-${PV}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="the audio output library" +SRC_URI="http://www.vorbis.com/files/rc2/unix/${A}" +HOMEPAGE="http://www.xiph.org/ogg/vorbis/index.html" +DEPEND=">=media-sound/esound-0.2.22" + +src_compile() { + try ./configure --prefix=/usr --host=${CHOST} --enable-shared --enable-static + try make +} + +src_install () { + try make DESTDIR=${D} install + + echo "Removing docs installed by make install" + rm -rf ${D}/usr/share/doc + dodoc AUTHORS CHANGES COPYING README TODO + dodoc doc/API doc/DRIVERS doc/USAGE doc/WANTED +} |