summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2016-09-14 18:30:18 +0200
committerAlexis Ballier <aballier@gentoo.org>2016-09-14 18:30:18 +0200
commit4ff8903a00af9928ea908f89d063f2e07e423adf (patch)
tree6f3d9125617a3b627f477da1cc12bf4c8548cc5d /media-video/rtmpdump/rtmpdump-9999.ebuild
parentnet-misc/sslh: remove old (diff)
downloadgentoo-4ff8903a00af9928ea908f89d063f2e07e423adf.tar.gz
gentoo-4ff8903a00af9928ea908f89d063f2e07e423adf.tar.bz2
gentoo-4ff8903a00af9928ea908f89d063f2e07e423adf.zip
Revert "media-video/rtmpdump: Move to EAPI6 and git-r3."
It doesnt even build... This reverts commit 3252a86b2afff788707c84c540504cca87ac8630.
Diffstat (limited to 'media-video/rtmpdump/rtmpdump-9999.ebuild')
-rw-r--r--media-video/rtmpdump/rtmpdump-9999.ebuild13
1 files changed, 5 insertions, 8 deletions
diff --git a/media-video/rtmpdump/rtmpdump-9999.ebuild b/media-video/rtmpdump/rtmpdump-9999.ebuild
index 4c568c33bd0a..c9348c0dbd97 100644
--- a/media-video/rtmpdump/rtmpdump-9999.ebuild
+++ b/media-video/rtmpdump/rtmpdump-9999.ebuild
@@ -2,9 +2,9 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI="6"
+EAPI="4"
-inherit git-r3 multilib toolchain-funcs multilib-minimal
+inherit git-2 multilib toolchain-funcs multilib-minimal
DESCRIPTION="RTMP client intended to stream audio or video flash content"
HOMEPAGE="http://rtmpdump.mplayerhq.hu/"
@@ -24,9 +24,6 @@ DEPEND="ssl? (
)"
RDEPEND="${DEPEND}"
-DOCS=( README ChangeLog )
-HTML_DOCS=( rtmpdump.1.html rtmpgw.8.html )
-
pkg_setup() {
if ! use ssl && { use gnutls || use polarssl; }; then
ewarn "USE='gnutls polarssl' are ignored without USE='ssl'."
@@ -35,8 +32,6 @@ pkg_setup() {
}
src_prepare() {
- default
-
# fix #571106 by restoring pre-GCC5 inline semantics
append-cflags -std=gnu89
# fix Makefile ( bug #298535 , bug #318353 and bug #324513 )
@@ -70,7 +65,9 @@ multilib_src_compile() {
multilib_src_install() {
mkdir -p "${ED}"/usr/$(get_libdir) || die
- if ! multilib_is_native_abi; then
+ if multilib_is_native_abi; then
+ dodoc README ChangeLog rtmpdump.1.html rtmpgw.8.html
+ else
cd librtmp || die
fi
emake DESTDIR="${ED}" prefix="/usr" mandir="/usr/share/man" \