Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/airdcpp-webclient/
Date: Thu, 26 Jan 2017 22:40:41
Message-Id: 1485470340.1c60dcd2781200be2f414fbf9c314d2edbf43f3f.soap@gentoo
1 commit: 1c60dcd2781200be2f414fbf9c314d2edbf43f3f
2 Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
3 AuthorDate: Wed Jan 25 20:38:47 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 26 22:39:00 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c60dcd2
7
8 net-p2p/airdcpp-webclient: remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11 Closes: https://github.com/gentoo/gentoo/pull/3651
12
13 .../airdcpp-webclient-1.4.1.ebuild | 64 ----------------------
14 1 file changed, 64 deletions(-)
15
16 diff --git a/net-p2p/airdcpp-webclient/airdcpp-webclient-1.4.1.ebuild b/net-p2p/airdcpp-webclient/airdcpp-webclient-1.4.1.ebuild
17 deleted file mode 100644
18 index ccfa4e5..00000000
19 --- a/net-p2p/airdcpp-webclient/airdcpp-webclient-1.4.1.ebuild
20 +++ /dev/null
21 @@ -1,64 +0,0 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -# $Id$
25 -
26 -EAPI=6
27 -PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy{,3} )
28 -
29 -inherit cmake-utils user python-any-r1
30 -
31 -DESCRIPTION="Cross-platform Direct Connect client"
32 -HOMEPAGE="https://airdcpp-web.github.io/"
33 -SRC_URI="https://github.com/airdcpp-web/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
34 -
35 -KEYWORDS="~amd64 ~x86"
36 -LICENSE="GPL-2+"
37 -SLOT="0"
38 -IUSE="nat-pmp +tbb +webui"
39 -
40 -RDEPEND="
41 - app-arch/bzip2
42 - dev-cpp/websocketpp
43 - dev-libs/boost:=
44 - dev-libs/geoip
45 - dev-libs/leveldb
46 - dev-libs/openssl:0=[-bindist]
47 - net-libs/miniupnpc:=
48 - sys-libs/zlib
49 - virtual/libiconv
50 - nat-pmp? ( net-libs/libnatpmp )
51 - tbb? ( dev-cpp/tbb )
52 -"
53 -DEPEND="
54 - virtual/pkgconfig
55 - ${PYTHON_DEPS}
56 - ${RDEPEND}
57 -"
58 -PDEPEND="webui? ( www-apps/airdcpp-webui )"
59 -
60 -pkg_setup() {
61 - python-any-r1_pkg_setup
62 - enewgroup airdcppd
63 - enewuser airdcppd -1 -1 /var/lib/airdcppd airdcppd
64 -}
65 -
66 -src_configure() {
67 - local mycmakeargs=(
68 - -DINSTALL_WEB_UI=OFF
69 - )
70 - cmake-utils_src_configure
71 -}
72 -
73 -src_install() {
74 - newconfd "${FILESDIR}/airdcppd.confd" airdcppd
75 - newinitd "${FILESDIR}/airdcppd.initd" airdcppd
76 - keepdir /var/lib/airdcppd
77 - fowners airdcppd:airdcppd /var/lib/airdcppd
78 - cmake-utils_src_install
79 -}
80 -
81 -pkg_postinst() {
82 - if [[ -z "${REPLACING_VERSIONS}" ]]; then
83 - elog "Run 'airdcppd --configure' to set up ports and authentication"
84 - fi
85 -}