diff options
-rw-r--r-- | media-libs/osalp/ChangeLog | 9 | ||||
-rw-r--r-- | media-libs/osalp/files/digest-osalp-0.7.3 | 1 | ||||
-rw-r--r-- | media-libs/osalp/osalp-0.7.3.ebuild | 33 |
3 files changed, 43 insertions, 0 deletions
diff --git a/media-libs/osalp/ChangeLog b/media-libs/osalp/ChangeLog new file mode 100644 index 000000000000..37782ff8ab63 --- /dev/null +++ b/media-libs/osalp/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for media-libs/osalp +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/osalp/ChangeLog,v 1.1 2002/08/21 01:37:30 agenkin Exp $ + +*osalp-0.7.3 (20 Aug 2002) + + 20 Aug 2002; osalp-0.7.3.ebuild : + + Initial ebuild for osalp by Julien PONGE <julien@izforge.com>. diff --git a/media-libs/osalp/files/digest-osalp-0.7.3 b/media-libs/osalp/files/digest-osalp-0.7.3 new file mode 100644 index 000000000000..d0ef19dfa75b --- /dev/null +++ b/media-libs/osalp/files/digest-osalp-0.7.3 @@ -0,0 +1 @@ +MD5 5cadd32241f37ece1716364289186ebf osalp-0.7.3.tar.gz 1025642 diff --git a/media-libs/osalp/osalp-0.7.3.ebuild b/media-libs/osalp/osalp-0.7.3.ebuild new file mode 100644 index 000000000000..fedda8b90809 --- /dev/null +++ b/media-libs/osalp/osalp-0.7.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/osalp/osalp-0.7.3.ebuild,v 1.1 2002/08/21 01:37:30 agenkin Exp $ + +DESCRIPTION="Open Source Audio Library Project" +HOMEPAGE="http://osalp.sourceforge.net/" +LICENSE="GPL" + +DEPEND="encode? ( >=media-sound/lame-1.89 ) + oggvorbis? ( >=media-libs/libvorbis-1.0 )" + +SLOT="0" +KEYWORDS="x86" +SRC_URI="mirror://sourceforge/osalp/${P}.tar.gz" +S=${WORKDIR}/${P} + +src_compile() { + local myconf + use encode && myconf="--enable-lame" + use oggvorbis && myconf="${myconf} --enable-ogg" + ./configure \ + ${myconf} \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + emake || die "make failed" +} + +src_install() { + make DESTDIR=${D} install || die "install failed" + dodoc AUTHORS COPYING COPYING.LIB INSTALL README TODO NEWS +} |