Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/libglademm/
Date: Sat, 19 Dec 2015 10:10:31
Message-Id: 1450519811.795b07fb414051778edd62fa47e1d8332fe6610b.pacho@gentoo
1 commit: 795b07fb414051778edd62fa47e1d8332fe6610b
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 19 09:54:35 2015 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 19 10:10:11 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=795b07fb
7
8 dev-cpp/libglademm: Drop old
9
10 Package-Manager: portage-2.2.26
11
12 dev-cpp/libglademm/libglademm-2.6.7.ebuild | 62 ------------------------------
13 1 file changed, 62 deletions(-)
14
15 diff --git a/dev-cpp/libglademm/libglademm-2.6.7.ebuild b/dev-cpp/libglademm/libglademm-2.6.7.ebuild
16 deleted file mode 100644
17 index 7d3d9da..0000000
18 --- a/dev-cpp/libglademm/libglademm-2.6.7.ebuild
19 +++ /dev/null
20 @@ -1,62 +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 -GCONF_DEBUG="no"
27 -GNOME_TARBALL_SUFFIX="bz2"
28 -
29 -inherit gnome2
30 -
31 -DESCRIPTION="C++ bindings for libglade"
32 -HOMEPAGE="http://www.gtkmm.org"
33 -
34 -LICENSE="LGPL-2.1+"
35 -SLOT="2.4"
36 -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd"
37 -IUSE="doc examples"
38 -
39 -RDEPEND="
40 - >=gnome-base/libglade-2.6.1:2.0
41 - >=dev-cpp/gtkmm-2.6:2.4
42 - >=dev-cpp/glibmm-2.4:2
43 -"
44 -DEPEND="${RDEPEND}
45 - virtual/pkgconfig
46 -"
47 -
48 -src_prepare() {
49 - # we will control install manually in install
50 - sed -i 's/^\(SUBDIRS =.*\)docs\(.*\)$/\1\2/' Makefile.am Makefile.in || \
51 - die "sed Makefile.{am,in} failed (1)"
52 -
53 - # don't waste time building the examples
54 - sed -i 's/^\(SUBDIRS =.*\)examples\(.*\)$/\1\2/' \
55 - Makefile.am Makefile.in || die "sed Makefile.{am,in} failed (2)"
56 -
57 - gnome2_src_prepare
58 -}
59 -
60 -src_compile() {
61 - gnome2_src_compile
62 -
63 - if use doc; then
64 - emake -C "${S}/docs/reference" all || die "emake doc failed"
65 - fi
66 -}
67 -
68 -src_install() {
69 - gnome2_src_install
70 -
71 - if use doc ; then
72 - dohtml -r docs/reference/html/*
73 - fi
74 -
75 - if use examples; then
76 - emake -C "${S}/examples" distclean || die "examples clean up failed"
77 - find "${S}/examples" -name "Makefile*" -delete \
78 - || die "examples cleanup failed"
79 - insinto "/usr/share/doc/${PF}"
80 - doins -r examples || die "doins failed"
81 - fi
82 -}