diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2017-01-17 14:06:17 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2017-01-17 14:06:17 +0000 |
commit | 371f53892017f96a06d82c17b14645088f0e1a4e (patch) | |
tree | a7d8f84f5d8cc6806fef80588ce7ae287d7a8a36 /media-video | |
parent | d837e06844f42dcc33da0bf4ef616261f4cb0240 (diff) | |
download | gentoo-371f53892017f96a06d82c17b14645088f0e1a4e.tar.gz gentoo-371f53892017f96a06d82c17b14645088f0e1a4e.tar.xz |
media-video/ushare: Remove old
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/ushare/ushare-1.1a-r5.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/media-video/ushare/ushare-1.1a-r5.ebuild b/media-video/ushare/ushare-1.1a-r5.ebuild deleted file mode 100644 index 6fe5136a625..00000000000 --- a/media-video/ushare/ushare-1.1a-r5.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 -inherit eutils multilib readme.gentoo toolchain-funcs user - -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.14" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - EPATCH_SOURCE="${FILESDIR}" EPATCH_SUFFIX="patch" \ - EPATCH_OPTS="-p1" epatch - - DOC_CONTENTS="Please edit /etc/conf.d/ushare to set the shared directories - and other important settings. Check system log if ushare is - not booting." -} - -src_configure() { - local myconf - myconf="--prefix=/usr --disable-sysconf --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}"/ushare.conf.d ushare - newinitd "${FILESDIR}"/ushare.init.d ushare - dodoc NEWS README TODO THANKS AUTHORS - readme.gentoo_create_doc -} - -pkg_postinst() { - enewuser ushare - readme.gentoo_print_elog -} |