summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiroslav Šulc <fordfrog@gentoo.org>2020-12-30 18:06:03 +0100
committerMiroslav Šulc <fordfrog@gentoo.org>2020-12-30 18:06:19 +0100
commit3f6442393ec861223bac1924579bc36336db1a6b (patch)
tree1c7fad3dc54b4e669b68b0424cb915735e2860c0 /media-libs/libshout/libshout-2.4.2.ebuild
parentdev-lang/lua: remove unneeded reference to BROOT in patches (diff)
downloadgentoo-3f6442393ec861223bac1924579bc36336db1a6b.tar.gz
gentoo-3f6442393ec861223bac1924579bc36336db1a6b.tar.bz2
gentoo-3f6442393ec861223bac1924579bc36336db1a6b.zip
media-libs/libshout: removed obsolete 2.4.2
Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-libs/libshout/libshout-2.4.2.ebuild')
-rw-r--r--media-libs/libshout/libshout-2.4.2.ebuild57
1 files changed, 0 insertions, 57 deletions
diff --git a/media-libs/libshout/libshout-2.4.2.ebuild b/media-libs/libshout/libshout-2.4.2.ebuild
deleted file mode 100644
index 4a18881e6e10..000000000000
--- a/media-libs/libshout/libshout-2.4.2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools multilib-minimal
-
-DESCRIPTION="library for connecting and sending data to icecast servers"
-HOMEPAGE="https://www.icecast.org/"
-SRC_URI="http://downloads.xiph.org/releases/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="libressl speex static-libs theora"
-
-RDEPEND="
- >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
- >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}]
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- speex? ( >=media-libs/speex-1.2_rc1-r1[${MULTILIB_USEDEP}] )
- theora? ( >=media-libs/libtheora-1.1.1[${MULTILIB_USEDEP}] )
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
-"
-
-MULTILIB_WRAPPED_HEADERS=(
- /usr/include/shout/shout.h
-)
-
-PATCHES=(
- "${FILESDIR}"/${PN}-2.4.1-underlinking.patch
- "${FILESDIR}"/${PN}-2.4.2-tls-compile-with-OpenSSL-1.1.0.patch
-)
-
-src_prepare() {
- default
- # Fix docdir
- sed '/^docdir/s@$(PACKAGE)@$(PF)@' -i Makefile.am || die
- eautoreconf
- multilib_copy_sources
-}
-
-multilib_src_configure() {
- local myeconfargs=(
- $(use_enable speex)
- $(use_enable static-libs static)
- $(use_enable theora)
- )
- ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
-}
-
-multilib_src_install_all() {
- find "${ED}" -name '*.la' -delete || die
-}