diff options
author | Ben Kohler <bkohler@gentoo.org> | 2020-01-23 14:47:52 -0600 |
---|---|---|
committer | Ben Kohler <bkohler@gentoo.org> | 2020-01-23 14:48:25 -0600 |
commit | 8f7d7171ab120423460b5cf729a31e652ef830ed (patch) | |
tree | ddeb7bb40700e986550f67670eb86f3b13b57250 /media-video/ushare/ushare-1.1a-r9.ebuild | |
parent | app-admin/terraform: Version bump (v0.12.20) (diff) | |
download | gentoo-8f7d7171ab120423460b5cf729a31e652ef830ed.tar.gz gentoo-8f7d7171ab120423460b5cf729a31e652ef830ed.tar.bz2 gentoo-8f7d7171ab120423460b5cf729a31e652ef830ed.zip |
media-video/ushare: adjust libupnp dep, take package
Closes: https://bugs.gentoo.org/700398
Package-Manager: Portage-2.3.85, Repoman-2.3.20
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'media-video/ushare/ushare-1.1a-r9.ebuild')
-rw-r--r-- | media-video/ushare/ushare-1.1a-r9.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/media-video/ushare/ushare-1.1a-r9.ebuild b/media-video/ushare/ushare-1.1a-r9.ebuild new file mode 100644 index 000000000000..cc9171b8ad97 --- /dev/null +++ b/media-video/ushare/ushare-1.1a-r9.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 +inherit eutils multilib readme.gentoo toolchain-funcs user systemd + +DESCRIPTION="uShare is a UPnP (TM) A/V & DLNA Media Server" +HOMEPAGE="http://ushare.geexbox.org/" +SRC_URI="http://ushare.geexbox.org/releases/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="nls" + +RDEPEND="=net-libs/libupnp-1.6*:0" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + EPATCH_EXCLUDE="06_all_ushare_disable_sysconf.patch" + EPATCH_SOURCE="${FILESDIR}" EPATCH_SUFFIX="patch" \ + EPATCH_OPTS="-p1" epatch + + DOC_CONTENTS="Please edit /etc/ushare.conf to set the shared directories + and other important settings. Check system log if ushare is + not booting." +} + +src_configure() { + local myconf + myconf="--prefix=/usr --sysconfdir=/etc --disable-strip --disable-dlna" + # nls can only be disabled, on by default. + use nls || myconf="${myconf} --disable-nls" + + # I can't use econf + # --host is not implemented in ./configure file + tc-export CC CXX + + ./configure ${myconf} || die "./configure failed" +} + +src_install() { + emake DESTDIR="${D}" install + doman src/ushare.1 + newconfd "${FILESDIR}"/${PN}.conf.d ${PN} + newinitd "${FILESDIR}"/${PN}.init.d.ng ${PN} + dodoc NEWS README TODO THANKS AUTHORS + systemd_dounit "${FILESDIR}"/${PN}.service + readme.gentoo_create_doc +} + +pkg_postinst() { + enewuser ushare + readme.gentoo_print_elog + elog + elog "The config file has been moved to /etc/ushare.conf" + elog "Please migrate your settings from /etc/conf.d/ushare" + elog "to /etc/ushare.conf in order to use the ushare init script" + elog "and systemd unit service." + elog +} |