Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-mobilephone/obexftp/
Date: Sat, 03 Dec 2016 08:58:41
Message-Id: 1480755505.515f0865d762ee3b6f34aa65db85a91a8b1f3204.graaff@gentoo
1 commit: 515f0865d762ee3b6f34aa65db85a91a8b1f3204
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 3 08:38:51 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 3 08:58:25 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=515f0865
7
8 app-mobilephone/obexftp: cleanup
9
10 Package-Manager: portage-2.3.0
11
12 app-mobilephone/obexftp/obexftp-0.24.ebuild | 58 -----------------------------
13 1 file changed, 58 deletions(-)
14
15 diff --git a/app-mobilephone/obexftp/obexftp-0.24.ebuild b/app-mobilephone/obexftp/obexftp-0.24.ebuild
16 deleted file mode 100644
17 index 4cdecc6..00000000
18 --- a/app-mobilephone/obexftp/obexftp-0.24.ebuild
19 +++ /dev/null
20 @@ -1,58 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -
27 -PYTHON_COMPAT=( python{2_7,3_4} )
28 -inherit cmake-utils python-single-r1 python-utils-r1 eutils multilib
29 -
30 -DESCRIPTION="File transfer over OBEX for mobile phones"
31 -HOMEPAGE="http://dev.zuckschwerdt.org/openobex/wiki/ObexFtp"
32 -SRC_URI="mirror://sourceforge/openobex/${P}-Source.tar.gz"
33 -SLOT="0"
34 -
35 -LICENSE="GPL-2"
36 -KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
37 -IUSE="bluetooth perl python ruby tcl"
38 -
39 -RDEPEND="
40 - >=dev-libs/openobex-1.7
41 - bluetooth? ( net-wireless/bluez )
42 - perl? ( dev-lang/perl:= )
43 - python? ( ${PYTHON_DEPS} )
44 - ruby? ( || ( dev-lang/ruby:2.0 dev-lang/ruby:1.9 ) )
45 - tcl? ( dev-lang/tcl:0= )
46 -"
47 -DEPEND="
48 - ${RDEPEND}
49 - perl? ( dev-lang/swig )
50 - python? ( dev-lang/swig )
51 - ruby? ( dev-lang/swig )
52 - tcl? ( dev-lang/swig )
53 - virtual/pkgconfig
54 -"
55 -
56 -S=${WORKDIR}/${P}-Source
57 -
58 -DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
59 -
60 -PATCHES=(
61 - "${FILESDIR}"/${PN}-0.23-gentoo.patch
62 - "${FILESDIR}"/${PN}-0.24-config.patch
63 - "${FILESDIR}"/${PN}-0.24-enable_bluetooth.patch
64 - "${FILESDIR}"/${PN}-0.24-python_sitedir.patch
65 -)
66 -
67 -src_configure() {
68 - local mycmakeargs=(
69 - -DENABLE_PERL=$(usex perl)
70 - -DENABLE_BLUETOOTH=$(usex bluetooth)
71 - -DENABLE_PYTHON=$(usex python)
72 - $(usex python -DPYTHON_SITE_DIR=$(python_get_sitedir) '')
73 - -DENABLE_RUBY=$(usex ruby)
74 - -DENABLE_TCL=$(usex tcl)
75 - )
76 -
77 - cmake-utils_src_configure
78 -}