diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /media-sound/sweep | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'media-sound/sweep')
-rw-r--r-- | media-sound/sweep/Manifest | 1 | ||||
-rw-r--r-- | media-sound/sweep/files/sweep-0.9.3-configure.patch | 53 | ||||
-rw-r--r-- | media-sound/sweep/metadata.xml | 8 | ||||
-rw-r--r-- | media-sound/sweep/sweep-0.9.3-r1.ebuild | 50 |
4 files changed, 112 insertions, 0 deletions
diff --git a/media-sound/sweep/Manifest b/media-sound/sweep/Manifest new file mode 100644 index 000000000000..69c25de4d2ab --- /dev/null +++ b/media-sound/sweep/Manifest @@ -0,0 +1 @@ +DIST sweep-0.9.3.tar.gz 1248948 SHA256 be65f19e9d63c74d47d79acfc4fbb6fd4b93dfa794417c7b7a3379e217ecd4fc diff --git a/media-sound/sweep/files/sweep-0.9.3-configure.patch b/media-sound/sweep/files/sweep-0.9.3-configure.patch new file mode 100644 index 000000000000..38c8717c4cdd --- /dev/null +++ b/media-sound/sweep/files/sweep-0.9.3-configure.patch @@ -0,0 +1,53 @@ +--- sweep-0.9.3/configure.ac.orig ++++ sweep-0.9.3/configure.ac +@@ -137,13 +137,13 @@ + + ac_enable_oggvorbis=yes + AC_ARG_ENABLE(oggvorbis, +- [ --disable-oggvorbis disable Ogg Vorbis support], +- [ ac_enable_oggvorbis=no ], [ ac_enable_oggvorbis=yes ]) ++ [ --enable-oggvorbis enable Ogg Vorbis support], ++ [ ac_enable_oggvorbis=yes ], [ ac_enable_oggvorbis=no ]) + + ac_enable_speex=yes + AC_ARG_ENABLE(speex, +- [ --disable-speex disable Speex support], +- [ ac_enable_speex=no ], [ ac_enable_speex=yes ]) ++ [ --enable-speex enable Speex support], ++ [ ac_enable_speex=yes ], [ ac_enable_speex=no ]) + + dnl Both Vorbis and Speex require Ogg, so check for it first either way + if test "x${ac_enable_oggvorbis}" != xno || +@@ -274,8 +274,8 @@ + + ac_enable_mad=yes + AC_ARG_ENABLE(mad, +- [ --disable-mad disable libmad (MPEG audio loading) support], +- [ ac_enable_mad=no ], [ ac_enable_mad=yes ]) ++ [ --enable-mad enable libmad (MPEG audio loading) support], ++ [ ac_enable_mad=yes ], [ ac_enable_mad=no ]) + + if test "x${ac_enable_mad}" != xno ; then + AC_CHECK_LIB(mad, mad_decoder_init, HAVE_MAD="maybe") +@@ -301,8 +301,8 @@ + + ac_enable_src=yes + AC_ARG_ENABLE(src, +- [ --disable-src enable secret rabbit code (libsamplerate)], +- [ ac_enable_src=no ], [ ac_enable_src=yes]) ++ [ --enable-src enable secret rabbit code (libsamplerate)], ++ [ ac_enable_src=yes ], [ ac_enable_src=no]) + + if test "x${ac_enable_src}" != xno ; then + PKG_CHECK_MODULES(SAMPLERATE, samplerate >= 0.0.9, +@@ -324,8 +324,8 @@ + + ac_enable_alsa=yes + AC_ARG_ENABLE(alsa, +- [ --disable-alsa Disable ALSA, and enable use of OSS], +- [ ac_enable_alsa=no ]) ++ [ --enable-alsa enable ALSA support], ++ [ ac_enable_alsa=yes ], [ ac_enable_alsa=no ]) + + if test "x${ac_enable_alsa}" != xno ; then + diff --git a/media-sound/sweep/metadata.xml b/media-sound/sweep/metadata.xml new file mode 100644 index 000000000000..c78de3906349 --- /dev/null +++ b/media-sound/sweep/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>proaudio</herd> + <upstream> + <remote-id type="sourceforge">sweep</remote-id> + </upstream> +</pkgmetadata> diff --git a/media-sound/sweep/sweep-0.9.3-r1.ebuild b/media-sound/sweep/sweep-0.9.3-r1.ebuild new file mode 100644 index 000000000000..a47e36c1fd9b --- /dev/null +++ b/media-sound/sweep/sweep-0.9.3-r1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +inherit eutils autotools + +DESCRIPTION="Audio editor and live playback tool" +HOMEPAGE="http://www.metadecks.org/software/sweep/" +SRC_URI="mirror://sourceforge/sweep/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86" +IUSE="alsa ladspa vorbis mp3 libsamplerate speex" + +RDEPEND=">=media-libs/libsndfile-1.0 + >=x11-libs/gtk+-2.4.0:2 + >=dev-libs/glib-2.2.0:2 + alsa? ( media-libs/alsa-lib ) + libsamplerate? ( media-libs/libsamplerate ) + speex? ( media-libs/speex ) + vorbis? ( media-libs/libogg media-libs/libvorbis ) + mp3? ( media-libs/libmad ) + ladspa? ( media-libs/ladspa-sdk )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS=(AUTHORS ChangeLog NEWS README TODO) + +LANGS="de el es_ES fr hu it ja pl ru" + +for X in ${LANGS}; do + IUSE="${IUSE} linguas_${X}" +done + +src_prepare() { + epatch "${FILESDIR}"/${P}-configure.patch + eautoreconf +} + +src_configure() { + econf \ + $(use_enable vorbis oggvorbis) \ + $(use_enable mp3 mad) \ + $(use_enable speex) \ + $(use_enable libsamplerate src) \ + $(use_enable alsa) +} |