Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/gnome-vfsmm/
Date: Wed, 15 Feb 2017 19:24:05
Message-Id: 1487186577.cd3c93a23d247c7065714d50a936349022cc01e4.leio@gentoo
1 commit: cd3c93a23d247c7065714d50a936349022cc01e4
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 15 17:53:20 2017 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 15 19:22:57 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd3c93a2
7
8 dev-cpp/gnome-vfsmm: remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-cpp/gnome-vfsmm/gnome-vfsmm-2.26.0.ebuild | 56 ---------------------------
13 1 file changed, 56 deletions(-)
14
15 diff --git a/dev-cpp/gnome-vfsmm/gnome-vfsmm-2.26.0.ebuild b/dev-cpp/gnome-vfsmm/gnome-vfsmm-2.26.0.ebuild
16 deleted file mode 100644
17 index 9255db60b8..0000000000
18 --- a/dev-cpp/gnome-vfsmm/gnome-vfsmm-2.26.0.ebuild
19 +++ /dev/null
20 @@ -1,56 +0,0 @@
21 -# Copyright 1999-2013 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -GCONF_DEBUG="no"
27 -GNOME_TARBALL_SUFFIX="bz2"
28 -
29 -inherit gnome2
30 -
31 -DESCRIPTION="C++ bindings for gnome-vfs"
32 -HOMEPAGE="http://www.gtkmm.org"
33 -
34 -LICENSE="LGPL-2.1"
35 -SLOT="1.1"
36 -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd"
37 -IUSE="doc examples"
38 -
39 -# glibmm dep is because build fails with older versions...
40 -RDEPEND="
41 - >=gnome-base/gnome-vfs-2.8.1
42 - >=dev-cpp/glibmm-2.12
43 -"
44 -DEPEND="${RDEPEND}
45 - virtual/pkgconfig
46 - doc? ( app-doc/doxygen )
47 -"
48 -
49 -src_prepare() {
50 - if ! use doc; then
51 - # documentation requires Doxygen and takes time
52 - sed -i 's/^\(SUBDIRS =.*\)docs\(.*\)$/\1\2/' Makefile.in || \
53 - die "sed Makefile.in failed"
54 - fi
55 -
56 - if ! use examples; then
57 - # don't waste time building the examples
58 - sed -i 's/^\(SUBDIRS =.*\)examples\(.*\)$/\1\2/' Makefile.in || \
59 - die "sed Makefile.in failed"
60 - fi
61 -
62 - gnome2_src_prepare
63 -}
64 -
65 -src_install() {
66 - gnome2_src_install
67 -
68 - if use doc ; then
69 - dohtml -r docs/reference/html/*
70 - fi
71 -
72 - if use examples; then
73 - find examples -type d -name '.deps' -exec rm -fr {} \; 2>/dev/null
74 - cp -R examples "${ED}"/usr/share/doc/${PF}
75 - fi
76 -}