diff options
author | Michael Imhof <tantive@gentoo.org> | 2003-03-28 21:44:56 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2003-03-28 21:44:56 +0000 |
commit | 34adf654226e16286e761b9878022c1de8c9c4ca (patch) | |
tree | be9c9688c947d0e0f6c86195854b0ded09d490ef | |
parent | Changed path to omdiscd, should close #18372 (diff) | |
download | historical-34adf654226e16286e761b9878022c1de8c9c4ca.tar.gz historical-34adf654226e16286e761b9878022c1de8c9c4ca.tar.bz2 historical-34adf654226e16286e761b9878022c1de8c9c4ca.zip |
Version bumped. Should close #18396.
-rw-r--r-- | media-libs/speex/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/speex/files/digest-speex-1.0 | 1 | ||||
-rw-r--r-- | media-libs/speex/speex-1.0.ebuild | 30 |
3 files changed, 38 insertions, 0 deletions
diff --git a/media-libs/speex/ChangeLog b/media-libs/speex/ChangeLog index d674567b7574..ecc1806dabe4 100644 --- a/media-libs/speex/ChangeLog +++ b/media-libs/speex/ChangeLog @@ -2,6 +2,13 @@ # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 # $Header +*speex-1.0 (28 Mar 2003) + + 28 Mar 2003; Michael Imhof <tantive@gentoo.org> speex-1.0.ebuild : + User submission from Andy Dustman <andy-gentoo.54e552@dustman.net>. + Masked it until someone confirms it works as it should. + Should close #18396. + *speex-1.0_beta3 (12 Nov 2002) 15 nov 2002; Nick Hadaway <raker@gentoo.org> speex-1.0_beta3.ebuild : diff --git a/media-libs/speex/files/digest-speex-1.0 b/media-libs/speex/files/digest-speex-1.0 new file mode 100644 index 000000000000..add2a25d78cc --- /dev/null +++ b/media-libs/speex/files/digest-speex-1.0 @@ -0,0 +1 @@ +MD5 d4ea30440a57ce5a57e915c46a5b7163 speex-1.0.tar.gz 381643 diff --git a/media-libs/speex/speex-1.0.ebuild b/media-libs/speex/speex-1.0.ebuild new file mode 100644 index 000000000000..f37ccbf582b4 --- /dev/null +++ b/media-libs/speex/speex-1.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header + +MY_P=${P/_/} +S=${WORKDIR}/${MY_P} + +DESCRIPTION="Speex - Speech encoding library" +HOMEPAGE="http://www.speex.org" +SRC_URI="http://www.speex.org/download/${MY_P}.tar.gz" +SLOT="0" +LICENSE="BSD as-is" +KEYWORDS="~x86 ~ppc" +IUSE="" + +DEPEND="virtual/glibc" + +src_compile() { + econf || die + emake || die +} + +src_install () { + einstall || die + rm -rf ${D}/usr/share/doc/* + + insinto /usr/share/doc/${P} + doins ${S}/doc/manual.pdf + dodoc AUTHORS ChangeLog README TODO NEWS +} |