Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libcroco/
Date: Sun, 13 Dec 2015 22:10:55
Message-Id: 1450044622.cbece8e7ed3161b63e91557ba16b4c465a214dd3.eva@gentoo
1 commit: cbece8e7ed3161b63e91557ba16b4c465a214dd3
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 13 22:09:07 2015 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 13 22:10:22 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbece8e7
7
8 dev-libs/libcroco: version bump to 0.6.10
9
10 Package-Manager: portage-2.2.26
11
12 dev-libs/libcroco/Manifest | 1 +
13 dev-libs/libcroco/libcroco-0.6.10.ebuild | 56 ++++++++++++++++++++++++++++++++
14 2 files changed, 57 insertions(+)
15
16 diff --git a/dev-libs/libcroco/Manifest b/dev-libs/libcroco/Manifest
17 index 394c8a5..77a507a 100644
18 --- a/dev-libs/libcroco/Manifest
19 +++ b/dev-libs/libcroco/Manifest
20 @@ -1,2 +1,3 @@
21 +DIST libcroco-0.6.10.tar.xz 476928 SHA256 72066611df77f5c4fb28268cfc7306ecc1517212a6182c2ea756c326a154246c SHA512 c990fc7873f6c6bf2c6994409cb7f79aa19a73a44d4b62a5dae81c2f9ff587cf6c778a87dc3e0d32da6df5a6764f39feed9d39938cdb8056d198ff869b2e6839 WHIRLPOOL 6ffce77ee04be812d81863dde90ff1461ae6449722366ab7e116fd0bdbe0c8ab0838c59986283cb00799e1061f3e83516e067685f7a53c3f2f58fb8bc81c437b
22 DIST libcroco-0.6.8.tar.xz 464992 SHA256 ea6e1b858c55219cefd7109756bff5bc1a774ba7a55f7d3ccd734d6b871b8570 SHA512 acfbebb59e5ea1e70da41f35970fb40a58331a1258eee6c981a575fdd23b420b4cc6d8983c90ad1e6afc0a461e675cb24667e03cfc8ec1aa5e9918e606913413 WHIRLPOOL 704fd5d6df6d62c15645b9901b807e5fd8916567fd32b975f4bd0ce013126617cc16e6a14fc334d0733012cfde8403978f5a23c1254fcdfae156a0720fa266e7
23 DIST libcroco-0.6.9.tar.xz 475844 SHA256 38b9a6aed1813e55b3ca07a68d1af845ad4d1f984602e9272fe692930c0be0ae SHA512 2bdb16a9004ff7304bc3cf91495925d1502c165b54dc1121d2f0fc9b627ec9c5b81e78b48e3f092855c3accc3295e5a3870eb6225ddb1b1fcd037004af78583b WHIRLPOOL 59767afbbb9a180eb87a5821ec85df50f85a16d687687de1267c86218d1bc587bf37759ba05a34bf0d109dc8e5b7b69209c5c5bdf930fd721e42533670bdb523
24
25 diff --git a/dev-libs/libcroco/libcroco-0.6.10.ebuild b/dev-libs/libcroco/libcroco-0.6.10.ebuild
26 new file mode 100644
27 index 0000000..74ab744
28 --- /dev/null
29 +++ b/dev-libs/libcroco/libcroco-0.6.10.ebuild
30 @@ -0,0 +1,56 @@
31 +# Copyright 1999-2015 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI="5"
36 +GCONF_DEBUG="no"
37 +GNOME2_LA_PUNT="yes"
38 +
39 +inherit gnome2 multilib-minimal
40 +
41 +DESCRIPTION="Generic Cascading Style Sheet (CSS) parsing and manipulation toolkit"
42 +HOMEPAGE="https://git.gnome.org/browse/libcroco/"
43 +
44 +LICENSE="LGPL-2"
45 +SLOT="0.6"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
47 +IUSE="test"
48 +
49 +RDEPEND="
50 + >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
51 + >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}]
52 +"
53 +DEPEND="${RDEPEND}
54 + dev-util/gtk-doc-am
55 + >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
56 +"
57 +
58 +src_prepare() {
59 + if ! use test; then
60 + # don't waste time building tests
61 + sed 's/^\(SUBDIRS .*\=.*\)tests\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
62 + || die "sed failed"
63 + fi
64 +
65 + gnome2_src_prepare
66 +}
67 +
68 +multilib_src_configure() {
69 + ECONF_SOURCE=${S} \
70 + gnome2_src_configure \
71 + --disable-static \
72 + $([[ ${CHOST} == *-darwin* ]] && echo --disable-Bsymbolic)
73 +
74 + if multilib_is_native_abi; then
75 + ln -s "${S}"/docs/reference/html docs/reference/html || die
76 + fi
77 +}
78 +
79 +multilib_src_install() {
80 + gnome2_src_install
81 +}
82 +
83 +multilib_src_install_all() {
84 + DOCS="AUTHORS ChangeLog HACKING NEWS README TODO"
85 + einstalldocs
86 +}