media-sound/streamtranscoder: drop 1.2.4

Signed-off-by: David Seifert <soap@gentoo.org>
This commit is contained in:
David Seifert
2022-01-30 12:14:03 +01:00
parent 3c2e7f9c4f
commit 33fa8f71de
3 changed files with 0 additions and 91 deletions

View File

@@ -1,2 +1 @@
DIST streamtranscoder-1.2.4.tar.gz 352873 BLAKE2B ab6fa290469a68273eeb1acf1790ccdf00aab23862130e903a0c70594fa791766c9f09422de81feec39a1ce6be4e24e44d652bedf8ab9cd8e8bc63d7cb85d4f7 SHA512 c2a4d866e65628777a15ac301bbd06bdc5cab1558747c07d4b12d2b007989ab871ee0e5109f503779bf8554897a2ff11aab0ea9c522979bdee540235d2054071
DIST streamtranscoderv3-3.1.11.tar.gz 480731 BLAKE2B 2b1adb68d8b92f392e6807cba5a92be6fb03b84ad649f717a4ed0cd3b69a32cbc870561eb1f67aade7c123f05194ad5589056ef337848d09adf2948d6511f12c SHA512 5682d8bc8f93a85bd84ba4bba37d1613f3b53afea9499d9417daa40806b4fb7e4fd77c209df2e68ea5e102a783ad8c2424468022e71366114006d041d4e20b99

View File

@@ -1,59 +0,0 @@
--- a/configure.in
+++ b/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)
--- a/src/Makefile.am
+++ b/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
--- a/src/libtranscoder/transcurl.cpp
+++ b/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"

View File

@@ -1,31 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools
DESCRIPTION="Commandline program 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"
PATCHES=( "${FILESDIR}"/${P}-build.patch )
src_prepare() {
default
mv configure.{in,ac} || die
eautoreconf
}