summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2010-09-24 15:08:47 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2010-09-24 15:08:47 +0000
commit526bff00fa7263e697e2c2da8d9d6a1e80e61312 (patch)
tree4cdbcd4e3adab3ed54d039d33da0e2760a02176f /media-libs/libvorbis
parentAdd ree18 target. (diff)
downloadgentoo-2-526bff00fa7263e697e2c2da8d9d6a1e80e61312.tar.gz
gentoo-2-526bff00fa7263e697e2c2da8d9d6a1e80e61312.tar.bz2
gentoo-2-526bff00fa7263e697e2c2da8d9d6a1e80e61312.zip
old
(Portage version: 2.2_rc86/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/libvorbis')
-rw-r--r--media-libs/libvorbis/Manifest3
-rw-r--r--media-libs/libvorbis/files/libvorbis-1.2.3-optional_examples_and_tests.patch46
-rw-r--r--media-libs/libvorbis/libvorbis-1.2.3.ebuild48
3 files changed, 0 insertions, 97 deletions
diff --git a/media-libs/libvorbis/Manifest b/media-libs/libvorbis/Manifest
index a30496014522..5eb08e36477f 100644
--- a/media-libs/libvorbis/Manifest
+++ b/media-libs/libvorbis/Manifest
@@ -1,7 +1,4 @@
-AUX libvorbis-1.2.3-optional_examples_and_tests.patch 1570 RMD160 9c51f33cc5c1649f0641b2ca0b6b55a31aa02a4c SHA1 2e22deb38ab65b53e22e237782100f019333013b SHA256 7d1c2b6c3cca0af8cb7e5731eea6991e6c40aba77b070c6414864ca0cd65ad9c
-DIST libvorbis-1.2.3.tar.gz 1474492 RMD160 e80ad7de3c2599e0d88994876407ac8fe3c9a0e7 SHA1 a93251aa5e4f142db4fa6433de80797f80960fac SHA256 c679d1e5e45a3ec8aceb5e71de8e3712630b7a6dec6952886c17435a65955947
DIST libvorbis-1.3.1.tar.bz2 1218287 RMD160 02c99cde88b9a69553ff5460e56355da20ebf11e SHA1 2962c4f2c7eb98220f0b7f3e5345da4c2d1a0936 SHA256 42485c40cfe903dd21e12be01d151bd71c4e54403df492b0ecaf70f31254cfe0
-EBUILD libvorbis-1.2.3.ebuild 1163 RMD160 3eeecb6d3e749396554dce15386beaf06c559c7b SHA1 e2779e67d19ce0c76a50c6048339555306efbdef SHA256 1d947ee4f049033b2a300d3aa8a6e57e3486eae1bb884f9723f1083b2054dc50
EBUILD libvorbis-1.3.1.ebuild 964 RMD160 85211958ff1115bcfbc095fb4bf1d2365e25fcd9 SHA1 dc6a35e11752f8a956de83d7d157d97f31e0b2d7 SHA256 71748a7c3e6dccbfa99eeea914b753f3cda273395adca0e41ada271d40458ef2
MISC ChangeLog 18559 RMD160 e0aeccac42cf3b22f37fcbddd9c75a4ed40891bf SHA1 701b8278e4fdd48a879ca5abc729f96fca9f762a SHA256 2243c9274edd9b20f3b5cfdcf6391a2544b02cb135c1cec18cdf4ee26f3b80ac
MISC metadata.xml 158 RMD160 6842e2189a50bd8a98e84802c38180ac1421c00e SHA1 703cea5a2109d41f7c87993c1f01d418a4c85174 SHA256 dfb5b47e6836db39fb187301dfcff1c2605e91d13d21db160806a563d8c75f9b
diff --git a/media-libs/libvorbis/files/libvorbis-1.2.3-optional_examples_and_tests.patch b/media-libs/libvorbis/files/libvorbis-1.2.3-optional_examples_and_tests.patch
deleted file mode 100644
index 141be680331e..000000000000
--- a/media-libs/libvorbis/files/libvorbis-1.2.3-optional_examples_and_tests.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-diff -ur libvorbis-1.2.3.orig/configure.ac libvorbis-1.2.3/configure.ac
---- libvorbis-1.2.3.orig/configure.ac 2009-07-09 13:02:25.000000000 +0300
-+++ libvorbis-1.2.3/configure.ac 2009-07-23 01:08:54.000000000 +0300
-@@ -77,6 +77,11 @@
-
- AM_CONDITIONAL(BUILD_DOCS, [test "x$enable_docs" = xyes])
-
-+AC_ARG_ENABLE(examples,
-+ AS_HELP_STRING([--enable-examples], [build the examples]))
-+
-+AM_CONDITIONAL(BUILD_EXAMPLES, [test "x$enable_examples" = xyes])
-+
- dnl --------------------------------------------------
- dnl Set build flags based on environment
- dnl --------------------------------------------------
-diff -ur libvorbis-1.2.3.orig/Makefile.am libvorbis-1.2.3/Makefile.am
---- libvorbis-1.2.3.orig/Makefile.am 2008-02-20 22:33:47.000000000 +0200
-+++ libvorbis-1.2.3/Makefile.am 2009-07-23 01:09:09.000000000 +0300
-@@ -2,7 +2,11 @@
-
- AUTOMAKE_OPTIONS = 1.6 foreign dist-zip dist-bzip2
-
--SUBDIRS = m4 include vq lib examples test doc
-+SUBDIRS = m4 include vq lib test doc
-+
-+if BUILD_EXAMPLES
-+SUBDIRS += examples
-+endif
-
- m4datadir = $(datadir)/aclocal
- m4data_DATA = vorbis.m4
-diff -ur libvorbis-1.2.3.orig/test/Makefile.am libvorbis-1.2.3/test/Makefile.am
---- libvorbis-1.2.3.orig/test/Makefile.am 2008-04-25 22:14:29.000000000 +0300
-+++ libvorbis-1.2.3/test/Makefile.am 2009-07-23 01:01:37.000000000 +0300
-@@ -4,9 +4,9 @@
-
- INCLUDES = -I$(top_srcdir)/include @OGG_CFLAGS@
-
--noinst_PROGRAMS = test
-+check_PROGRAMS = test
-
--check: $(noinst_PROGRAMS)
-+check: $(check_PROGRAMS)
- ./test$(EXEEXT)
-
- test_SOURCES = util.c util.h write_read.c write_read.h test.c
diff --git a/media-libs/libvorbis/libvorbis-1.2.3.ebuild b/media-libs/libvorbis/libvorbis-1.2.3.ebuild
deleted file mode 100644
index 1d56ce60c958..000000000000
--- a/media-libs/libvorbis/libvorbis-1.2.3.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libvorbis/libvorbis-1.2.3.ebuild,v 1.10 2009/08/23 09:06:37 nixnut Exp $
-
-EAPI=2
-MY_P=${P/_}
-inherit autotools flag-o-matic eutils toolchain-funcs
-
-DESCRIPTION="The Ogg Vorbis sound file format library"
-HOMEPAGE="http://xiph.org/vorbis"
-SRC_URI="http://downloads.xiph.org/releases/vorbis/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd"
-IUSE="doc"
-
-RDEPEND="media-libs/libogg"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-optional_examples_and_tests.patch
-
- sed -e 's:-O20::g' -e 's:-mfused-madd::g' -e 's:-mcpu=750::g' \
- -i configure.ac || die "sed failed"
-
- AT_M4DIR=m4 eautoreconf
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
-
- rm -rf "${D}"/usr/share/doc/${PN}*
-
- dodoc AUTHORS CHANGES README todo.txt
-
- if use doc; then
- docinto txt
- dodoc doc/*.txt
- docinto html
- dohtml -r doc/*
- insinto /usr/share/doc/${PF}/pdf
- doins doc/*.pdf
- fi
-}