You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
870 B
36 lines
870 B
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="2"
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Open source command-line RTMP client intended to stream audio or video flash content"
|
|
HOMEPAGE="https://savannah.nongnu.org/projects/flvstreamer/"
|
|
SRC_URI="mirror://nongnu/${PN}/source/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc x86"
|
|
IUSE=""
|
|
S="${WORKDIR}/${PN}"
|
|
|
|
src_prepare() {
|
|
#fix Makefile ( bug #298535 and bug #318353)
|
|
sed -i 's/\$(MAKEFLAGS)//g' Makefile \
|
|
|| die "failed to fixe Makefile"
|
|
}
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)" \
|
|
CXX="$(tc-getCXX)" \
|
|
CFLAGS="${CFLAGS} `sed -n 's/DEF=\(.*\)/\1/p' Makefile`" \
|
|
CXXFLAGS="${CXXFLAGS}" \
|
|
LDFLAGS="${LDFLAGS}" linux
|
|
}
|
|
|
|
src_install() {
|
|
dobin {${PN},streams} || die "dobin failed"
|
|
dodoc README ChangeLog || die "dodoc failed"
|
|
}
|