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/net-misc/gerbera/gerbera-9999.ebuild

102 lines
2.4 KiB

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils eutils linux-info systemd tmpfiles user
if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/v00d00/${PN}.git"
KEYWORDS=""
SRC_URI=""
inherit git-r3
else
SRC_URI="https://github.com/v00d00/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${P}"
fi
DESCRIPTION="UPnP Media Server (Based on MediaTomb)"
HOMEPAGE="https://github.com/v00d00/gerbera"
LICENSE="GPL-2"
SLOT="0"
IUSE="curl debug +exif +ffmpeg +javascript lastfm libav +magic mysql +taglib"
DEPEND="
!!net-misc/mediatomb
net-libs/libupnp:1.8[ipv6,reuseaddr]
>=dev-db/sqlite-3
dev-libs/expat
mysql? ( virtual/mysql )
javascript? ( dev-lang/duktape )
taglib? ( >=media-libs/taglib-1.11 )
lastfm? ( >=media-libs/lastfmlib-0.4 )
exif? ( media-libs/libexif )
ffmpeg? (
libav? ( >=media-video/libav-10:0= )
!libav? ( >=media-video/ffmpeg-2.2:0= )
)
curl? ( net-misc/curl net-misc/youtube-dl )
magic? ( sys-apps/file )
sys-apps/util-linux
sys-libs/zlib
virtual/libiconv
"
RDEPEND="${DEPEND}"
CONFIG_CHECK="~INOTIFY_USER"
pkg_setup() {
linux-info_pkg_setup
enewgroup ${PN}
enewuser ${PN} -1 -1 /dev/null ${PN}
}
src_configure() {
local mycmakeargs=(
-DWITH_CURL="$(usex curl)" \
-DWITH_LOGGING=1 \
-DWITH_DEBUG_LOGGING="$(usex debug)" \
-DWITH_EXIF="$(usex exif)" \
-DWITH_AVCODEC="$(usex ffmpeg)" \
-DWITH_JS="$(usex javascript)" \
-DWITH_LASTFM="$(usex lastfm)" \
-DWITH_MAGIC="$(usex magic)" \
-DWITH_MYSQL="$(usex mysql)"
-DWITH_TAGLIB="$(usex taglib)"
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
systemd_dounit "${S}/scripts/systemd/${PN}.service"
use mysql && systemd_dounit "${S}/scripts/systemd/${PN}-mysql.service"
newinitd "${FILESDIR}/${PN}-1.0.0.initd" "${PN}"
use mysql || sed -i -e "/use mysql/d" "${ED}/etc/init.d/${PN}"
newconfd "${FILESDIR}/${PN}-1.0.0.confd" "${PN}"
insinto /etc/${PN}
newins "${FILESDIR}/${PN}-1.0.0.config" config.xml
fperms 0600 /etc/${PN}/config.xml
fowners gerbera:gerbera /etc/${PN}/config.xml
keepdir /var/lib/${PN}
fowners ${PN}:${PN} /var/lib/${PN}
newtmpfiles "${FILESDIR}"/${PN}.tmpfiles ${PN}.conf
}
pkg_postinst() {
if use mysql ; then
elog "Gerbera has been built with MySQL support and needs"
elog "to be configured before being started. By default"
elog "SQLite will be used."
fi
}