From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 006E3139085 for ; Tue, 17 Jan 2017 14:08:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7FBEB23400B; Tue, 17 Jan 2017 14:08:36 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5F0D823400B for ; Tue, 17 Jan 2017 14:08:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4B9233415A2 for ; Tue, 17 Jan 2017 14:08:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8255A24E5 for ; Tue, 17 Jan 2017 14:08:33 +0000 (UTC) From: "Markos Chandras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Markos Chandras" Message-ID: <1484661977.371f53892017f96a06d82c17b14645088f0e1a4e.hwoarang@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/ushare/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/ushare/ushare-1.1a-r5.ebuild X-VCS-Directories: media-video/ushare/ X-VCS-Committer: hwoarang X-VCS-Committer-Name: Markos Chandras X-VCS-Revision: 371f53892017f96a06d82c17b14645088f0e1a4e X-VCS-Branch: master Date: Tue, 17 Jan 2017 14:08:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 066213bf-6796-4b42-a934-054562825755 X-Archives-Hash: c44a595594c3a4a561070781d9a2acff commit: 371f53892017f96a06d82c17b14645088f0e1a4e Author: Markos Chandras gentoo org> AuthorDate: Tue Jan 17 14:06:17 2017 +0000 Commit: Markos Chandras gentoo org> CommitDate: Tue Jan 17 14:06:17 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=371f5389 media-video/ushare: Remove old Package-Manager: Portage-2.3.3, Repoman-2.3.1 media-video/ushare/ushare-1.1a-r5.ebuild | 55 -------------------------------- 1 file changed, 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 6fe5136..00000000 --- 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 -}