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/streamtranscoder | |
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/streamtranscoder')
5 files changed, 128 insertions, 0 deletions
diff --git a/media-sound/streamtranscoder/Manifest b/media-sound/streamtranscoder/Manifest new file mode 100644 index 000000000000..d6e62dd8b8f1 --- /dev/null +++ b/media-sound/streamtranscoder/Manifest @@ -0,0 +1,2 @@ +DIST streamtranscoder-1.2.4.tar.gz 352873 SHA256 8cea5f0f4b27a31eb92b6e72c73d6bbf737f7a7ac6248399c591e44e1b280c71 SHA512 c2a4d866e65628777a15ac301bbd06bdc5cab1558747c07d4b12d2b007989ab871ee0e5109f503779bf8554897a2ff11aab0ea9c522979bdee540235d2054071 WHIRLPOOL ff1293a6b7acae736704b57f19c74f72282416c86b475d330f4ca1a365725e10860b65b6109b2414ddaa61571f621b40947238ead79b76fb98ec35f79230feb5 +DIST streamtranscoderv3-3.1.11.tar.gz 480731 SHA256 f69cf4b2d5a08c2cc4b6be63053954a55a6fe156877dca49abb37aa962d38e09 SHA512 5682d8bc8f93a85bd84ba4bba37d1613f3b53afea9499d9417daa40806b4fb7e4fd77c209df2e68ea5e102a783ad8c2424468022e71366114006d041d4e20b99 WHIRLPOOL 408f6dde24e61f20a574a95e5e840520a3b6bc0fb4561d31a63cc92d22176556d34823a4c0f4f422eb9d77af8f8a2a7420f8d5d633c962f26d2cf5a82d6bcfe0 diff --git a/media-sound/streamtranscoder/files/streamtranscoder-1.2.4-build.patch b/media-sound/streamtranscoder/files/streamtranscoder-1.2.4-build.patch new file mode 100644 index 000000000000..07128bb95596 --- /dev/null +++ b/media-sound/streamtranscoder/files/streamtranscoder-1.2.4-build.patch @@ -0,0 +1,59 @@ +--- configure.in ++++ configure.in +@@ -83,22 +83,29 @@ + + dnl -- configure options -- + +-XIPH_PATH_OGG(, AC_MSG_ERROR(must have Ogg installed!(Perhaps you need --with-ogg-prefix=/usr/local))) +-XIPH_PATH_VORBIS(, AC_MSG_ERROR(must have Vorbis installed!(Perhaps you need --with-vorbis-prefix=/usr/local))) +-AM_PATH_CURL(,,AC_MSG_ERROR(must have libcurl installed!)) +-AM_PATH_MAD(, AC_MSG_ERROR(must have libmad installed!)) +-AM_PATH_LAME(, AC_MSG_ERROR(must have libmp3lame installed!)) ++PKG_CHECK_MODULES([OGG],[ogg]) ++PKG_CHECK_MODULES([VORBIS],[vorbis]) ++PKG_CHECK_MODULES([VORBISENC],[vorbisenc]) ++PKG_CHECK_MODULES([VORBISFILE],[vorbisfile]) ++PKG_CHECK_MODULES([CURL],[libcurl]) ++PKG_CHECK_MODULES([MAD],[mad]) ++ ++AC_PATH_PROG([LAME],[lame]) + + dnl Make substitutions + + AC_SUBST(MAD_CFLAGS) + AC_SUBST(MAD_LIBS) + AC_SUBST(LAME_CFLAGS) +-AC_SUBST(LAME_LIBS) ++AC_SUBST([LAME_LIBS],[-lmp3lame]) + AC_SUBST(OGG_CFLAGS) + AC_SUBST(VORBIS_CFLAGS) ++AC_SUBST(VORBISENC_CFLAGS) ++AC_SUBST(VORBISFILE_CFLAGS) + AC_SUBST(OGG_LIBS) + AC_SUBST(VORBIS_LIBS) ++AC_SUBST(VORBISENC_LIBS) ++AC_SUBST(VORBISFILE_LIBS) + AC_SUBST(LIBTOOL_DEPS) + AC_SUBST(OPT) + AC_SUBST(LIBS) +--- src/Makefile.am ++++ src/Makefile.am +@@ -17,5 +17,6 @@ + + INCLUDES = -I$(srcdir)/liboddcast -I$(srcdir)/libtranscoder + +-install-hook: +- cp transcoder.cfg $(DESTDIR)$(sysconfdir)/transcoder.cfg ++install-data-hook: ++ $(INSTALL) -d $(DESTDIR)$(sysconfdir) ++ $(INSTALL) -m644 transcoder.cfg $(DESTDIR)$(sysconfdir)/transcoder.cfg +--- src/libtranscoder/transcurl.cpp ++++ src/libtranscoder/transcurl.cpp +@@ -18,7 +18,6 @@ + #include <winsock2.h> + #endif + #include <curl/curl.h> +-#include <curl/types.h> + #include <curl/easy.h> + #include "transcurl.h" + #include "cbuffer.h" diff --git a/media-sound/streamtranscoder/metadata.xml b/media-sound/streamtranscoder/metadata.xml new file mode 100644 index 000000000000..e1774e3d9ad7 --- /dev/null +++ b/media-sound/streamtranscoder/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-sound/streamtranscoder/streamtranscoder-1.2.4.ebuild b/media-sound/streamtranscoder/streamtranscoder-1.2.4.ebuild new file mode 100644 index 000000000000..5b235109052a --- /dev/null +++ b/media-sound/streamtranscoder/streamtranscoder-1.2.4.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +inherit autotools eutils + +DESCRIPTION="Command line application to transcode shoutcast/icecast streams to different bitrates" +HOMEPAGE="http://www.oddsock.org" +SRC_URI="http://www.oddsock.org/tools/streamTranscoder/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ppc sparc x86" +IUSE="" + +RDEPEND=">=media-libs/libogg-1.1 + >=media-libs/libvorbis-1.0.1-r2 + >=media-sound/lame-3.96 + >=media-libs/libmad-0.15.1b + >=net-misc/curl-7.11.0" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + epatch "${FILESDIR}"/${P}-build.patch + eautoreconf +} + +src_install() { + default + dodoc AUTHORS README +} diff --git a/media-sound/streamtranscoder/streamtranscoder-3.1.11.ebuild b/media-sound/streamtranscoder/streamtranscoder-3.1.11.ebuild new file mode 100644 index 000000000000..5bb3ca9ea07f --- /dev/null +++ b/media-sound/streamtranscoder/streamtranscoder-3.1.11.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +MY_P=${PN}v3-${PV} + +DESCRIPTION="Command line application to transcode shoutcast/icecast streams to different bitrates" +HOMEPAGE="http://www.oddsock.org/tools/streamTranscoderV3" +SRC_URI="http://www.oddsock.org/tools/streamTranscoderV3/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~ppc ~sparc x86" +IUSE="" + +RDEPEND=">=media-libs/libogg-1.1 + >=media-libs/libvorbis-1.0.1-r2 + >=media-sound/lame-3.96 + >=media-libs/libmad-0.15.1b + >=net-misc/curl-7.11.0" +DEPEND="${RDEPEND}" + +S="${WORKDIR}"/${MY_P} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS +} |