blob: cbf10b12a67880ae6f4f6ce07b334ba14243747e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit toolchain-funcs
DESCRIPTION="Open source command-line RTMP client intended to stream audio or video flash content"
HOMEPAGE="http://rtmpdump.mplayerhq.hu/"
SRC_URI="http://rtmpdump.mplayerhq.hu/download/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="gnutls polarssl ssl"
DEPEND="ssl? (
gnutls? ( net-libs/gnutls )
polarssl? ( !gnutls? ( net-libs/polarssl ) )
!gnutls? ( !polarssl? ( dev-libs/openssl ) )
)
sys-libs/zlib"
RDEPEND="${DEPEND}"
pkg_setup() {
if ! use ssl && ( use gnutls || use polarssl ) ; then
ewarn "USE='gnutls polarssl' are ignored without USE='ssl'."
ewarn "Please review the local USE flags for this package."
fi
}
src_prepare() {
# fix Makefile ( bug #298535 and bug #318353 )
sed -i 's/\$(MAKEFLAGS)//g' Makefile \
|| die "failed to fix Makefile"
}
src_compile() {
local crypto=""
if use ssl ; then
if use gnutls ; then
crypto="GNUTLS"
elif use polarssl ; then
crypto="POLARSSL"
else
crypto="OPENSSL"
fi
fi
emake CC=$(tc-getCC) LD=$(tc-getLD) \
OPT="${CFLAGS}" XLDFLAGS="${LDFLAGS}" CRYPTO="${crypto}" posix || die "emake failed"
}
src_install() {
dobin rtmpdump rtmpsuck rtmpsrv rtmpgw || die "dobin failed"
dodoc README ChangeLog rtmpdump.1.html rtmpgw.8.html || die "dodoc failed"
doman rtmpdump.1 rtmpgw.8 || die "doman failed"
}
|