diff options
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/tremor/ChangeLog | 10 | ||||
-rw-r--r-- | media-libs/tremor/Manifest | 18 | ||||
-rw-r--r-- | media-libs/tremor/metadata.xml | 5 | ||||
-rw-r--r-- | media-libs/tremor/tremor-0_pre20120120.ebuild | 38 |
4 files changed, 71 insertions, 0 deletions
diff --git a/media-libs/tremor/ChangeLog b/media-libs/tremor/ChangeLog new file mode 100644 index 000000000000..5c28777ea35d --- /dev/null +++ b/media-libs/tremor/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for media-libs/tremor +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/tremor/ChangeLog,v 1.1 2012/01/20 19:51:10 ssuominen Exp $ + +*tremor-0_pre20120120 (20 Jan 2012) + + 20 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> + +tremor-0_pre20120120.ebuild: + Initial commit wrt #264327 by Robert Piasek + diff --git a/media-libs/tremor/Manifest b/media-libs/tremor/Manifest new file mode 100644 index 000000000000..22ee2511d999 --- /dev/null +++ b/media-libs/tremor/Manifest @@ -0,0 +1,18 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +DIST tremor-0_pre20120120.tar.xz 110008 RMD160 9aa2da186d8b0df29cf8f17048f2ee65a3ede3e0 SHA1 c1dc22bbf7a99328bce88c165675f7b6096d81bd SHA256 4caa4711c41fd190f0be6c2d8ef78cfd5027c71d3a0588f1b9a3608595afd42e +EBUILD tremor-0_pre20120120.ebuild 881 RMD160 bfcc68a37d5d722841374cd341219b6b514d6978 SHA1 188d7072e5283155beeb151729398d4dbdc373b8 SHA256 715e1e4a0de69111daff2fdc6a96a2fa511ee225a8d432fa0cec39bf55b89868 +MISC ChangeLog 380 RMD160 c9cd10d493dcf1c583b42a46da4e23c851d78d72 SHA1 89be24042b0bc15f512eedf4ea1b6e4d57cb9180 SHA256 0dcee9f25e1bb9530729c060bf558029a6e2431f637e7b74d73d856d8bf82206 +MISC metadata.xml 158 RMD160 6842e2189a50bd8a98e84802c38180ac1421c00e SHA1 703cea5a2109d41f7c87993c1f01d418a4c85174 SHA256 dfb5b47e6836db39fb187301dfcff1c2605e91d13d21db160806a563d8c75f9b +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v2.0.18 (GNU/Linux) + +iQEcBAEBAgAGBQJPGcUxAAoJEEdUh39IaPFNC2QH/iwSHxS+7VxLMW7u9dLiZFaD +Un2/kVOvJ6Imyy2EBaRPfQ0Sf6VSSlaZgEQURL3oCdZcbieJ+gVxre2yz/PRlkMU +Jh5H6orFTnwIdxupBhxvqhsXXXC8lYxHnn88z8z5Io0Fq7eWtYCN9O5WZmQqP7np +FDv4Aow2iGZxXGx3QL0u65We5G27F4kAaegEQFuvSJqfb3yajurVzhOnlnPaT0Dj +UpAeHqldOG2ekDtyMZ281I5xpXlzI6hMpeecKi5qWpj2ZoMI4ytKg7gy6izYSibG +hOyUYOX5GmIacj+FeYpduqYr0aSdoBZhzDubYmVFxC0fIYcVjtZyNu6Fk1/aKVY= +=hi2K +-----END PGP SIGNATURE----- diff --git a/media-libs/tremor/metadata.xml b/media-libs/tremor/metadata.xml new file mode 100644 index 000000000000..e1774e3d9ad7 --- /dev/null +++ b/media-libs/tremor/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>sound</herd> +</pkgmetadata> diff --git a/media-libs/tremor/tremor-0_pre20120120.ebuild b/media-libs/tremor/tremor-0_pre20120120.ebuild new file mode 100644 index 000000000000..0fa82e89730b --- /dev/null +++ b/media-libs/tremor/tremor-0_pre20120120.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/tremor/tremor-0_pre20120120.ebuild,v 1.1 2012/01/20 19:51:10 ssuominen Exp $ + +# svn export http://svn.xiph.org/trunk/Tremor tremor-${PV} + +EAPI=4 +inherit autotools + +DESCRIPTION="A fixed-point version of the Ogg Vorbis decoder (also known as libvorbisidec)" +HOMEPAGE="http://wiki.xiph.org/Tremor" +SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.xz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs" + +RDEPEND="media-libs/libogg" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +DOCS="CHANGELOG README" + +src_prepare() { + sed -i -e '/CFLAGS/s:-O2::' configure.in || die + eautoreconf +} + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + default + dohtml -r doc/* + rm -f "${ED}"usr/lib*/lib*.la +} |