Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libgpod/
Date: Sun, 26 Jun 2016 17:26:32
Message-Id: 1466961974.f1f1fd5e778146b973aa7037f2b4bd8c9b50432e.kensington@gentoo
1 commit: f1f1fd5e778146b973aa7037f2b4bd8c9b50432e
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 26 17:23:58 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 26 17:26:14 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1f1fd5e
7
8 media-libs/libgpod: remove old
9
10 Package-Manager: portage-2.3.0
11
12 media-libs/libgpod/libgpod-0.8.3.ebuild | 73 ---------------------------------
13 1 file changed, 73 deletions(-)
14
15 diff --git a/media-libs/libgpod/libgpod-0.8.3.ebuild b/media-libs/libgpod/libgpod-0.8.3.ebuild
16 deleted file mode 100644
17 index 5b2a7f1..0000000
18 --- a/media-libs/libgpod/libgpod-0.8.3.ebuild
19 +++ /dev/null
20 @@ -1,73 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -
27 -# TODO: Use python-r1 instead and support Python 3.x?
28 -
29 -PYTHON_COMPAT=( python2_7 )
30 -
31 -inherit eutils mono-env python-single-r1 udev
32 -
33 -DESCRIPTION="Shared library to access the contents of an iPod"
34 -HOMEPAGE="http://www.gtkpod.org/libgpod/"
35 -SRC_URI="mirror://sourceforge/gtkpod/${P}.tar.bz2"
36 -
37 -LICENSE="LGPL-2"
38 -SLOT="0"
39 -KEYWORDS="amd64 x86"
40 -IUSE="+gtk python +udev ios mono static-libs"
41 -
42 -RDEPEND=">=app-pda/libplist-1.0:=
43 - >=dev-db/sqlite-3
44 - >=dev-libs/glib-2.16:2
45 - dev-libs/libxml2
46 - sys-apps/sg3_utils
47 - gtk? ( x11-libs/gdk-pixbuf:2 )
48 - ios? ( app-pda/libimobiledevice:= )
49 - python? (
50 - ${PYTHON_DEPS}
51 - >=media-libs/mutagen-1.8[${PYTHON_USEDEP}]
52 - >=dev-python/pygobject-2.8:2[${PYTHON_USEDEP}]
53 - )
54 - udev? ( virtual/udev )
55 - mono? (
56 - >=dev-lang/mono-1.9.1
57 - >=dev-dotnet/gtk-sharp-2.12
58 - )"
59 -DEPEND="${RDEPEND}
60 - python? ( >=dev-lang/swig-1.3.24 )
61 - dev-libs/libxslt
62 - dev-util/intltool
63 - sys-devel/gettext
64 - virtual/pkgconfig"
65 -
66 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
67 -
68 -DOCS="AUTHORS NEWS README* TROUBLESHOOTING"
69 -
70 -pkg_setup() {
71 - use mono && mono-env_pkg_setup
72 - use python && python-single-r1_pkg_setup
73 -}
74 -
75 -src_configure() {
76 - econf \
77 - $(use_enable static-libs static) \
78 - $(use_enable udev) \
79 - $(use_enable gtk gdk-pixbuf) \
80 - $(use_enable python pygobject) \
81 - --without-hal \
82 - $(use_with ios libimobiledevice) \
83 - --with-udev-dir="$(get_udevdir)"
84 - --with-html-dir=/usr/share/doc/${PF}/html \
85 - $(use_with python) \
86 - $(use_with mono)
87 -}
88 -
89 -src_install() {
90 - default
91 - rmdir "${ED}"/tmp
92 - prune_libtool_files --all
93 -}