Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome-common/
Date: Sun, 04 Dec 2016 11:51:12
Message-Id: 1480849157.c2cdce5a758eaad375933233e2877866e3229947.pacho@gentoo
1 commit: c2cdce5a758eaad375933233e2877866e3229947
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 4 10:59:17 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 4 10:59:17 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2cdce5a
7
8 gnome-base/gnome-common: People must DEPEND directly on sys-devel/autoconf-archive for the macros when needed instead of relying on dead/obsolete gnome-common ones (#594084)
9
10 Package-Manager: portage-2.3.2
11
12 .../gnome-common/gnome-common-3.18.0-r1.ebuild | 22 ++++++++++++++++++++++
13 1 file changed, 22 insertions(+)
14
15 diff --git a/gnome-base/gnome-common/gnome-common-3.18.0-r1.ebuild b/gnome-base/gnome-common/gnome-common-3.18.0-r1.ebuild
16 new file mode 100644
17 index 00000000..3175224
18 --- /dev/null
19 +++ b/gnome-base/gnome-common/gnome-common-3.18.0-r1.ebuild
20 @@ -0,0 +1,22 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +inherit gnome2
27 +
28 +DESCRIPTION="Common files for development of Gnome packages"
29 +HOMEPAGE="https://git.gnome.org/browse/gnome-common"
30 +
31 +LICENSE="GPL-3"
32 +SLOT="3"
33 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
34 +IUSE="+autoconf-archive"
35 +
36 +RDEPEND=""
37 +DEPEND=""
38 +
39 +src_configure() {
40 + # Force people to rely on sys-devel/autoconf-archive, bug #594084
41 + gnome2_src_configure --with-autoconf-archive
42 +}