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.
gentoo-overlay/media-sound/pianobar/pianobar-2019.02.14.ebuild

48 lines
1.0 KiB

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs flag-o-matic
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/PromyLOPh/pianobar.git"
else
SRC_URI="https://6xq.net/${PN}/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
fi
DESCRIPTION="A console-based replacement for Pandora's flash player"
HOMEPAGE="https://6xq.net/pianobar/"
LICENSE="MIT"
SLOT="0"
IUSE="libav static-libs"
RDEPEND="media-libs/libao
net-misc/curl
dev-libs/libgcrypt:0=
dev-libs/json-c:=
libav? ( >=media-video/libav-12:0= )
!libav? ( >=media-video/ffmpeg-3.1:0= )
"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_compile() {
append-cflags -std=c99
tc-export AR CC
emake V=1 DYNLINK=1
}
src_install() {
emake DESTDIR="${D}" PREFIX=/usr LIBDIR=/usr/$(get_libdir) DYNLINK=1 install
dodoc ChangeLog README.md
use static-libs || { rm "${D}"/usr/lib*/*.a || die; }
docinto contrib
dodoc -r contrib/{config-example,*.sh,eventcmd-examples}
docompress -x /usr/share/doc/${PF}/contrib
}