diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-06-17 20:08:10 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-06-17 20:08:10 +0000 |
commit | f33b91161dbf32f74644930b31e5c4d362fdf1ad (patch) | |
tree | 21498e7ecdaafba4ec5d010ad926894bbee549cc /dev-libs/libcroco | |
parent | Version bump. (diff) | |
download | gentoo-2-f33b91161dbf32f74644930b31e5c4d362fdf1ad.tar.gz gentoo-2-f33b91161dbf32f74644930b31e5c4d362fdf1ad.tar.bz2 gentoo-2-f33b91161dbf32f74644930b31e5c4d362fdf1ad.zip |
Enable multilib support, needed by gnome-base/librsvg.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'dev-libs/libcroco')
-rw-r--r-- | dev-libs/libcroco/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libcroco/libcroco-0.6.8-r1.ebuild | 53 |
2 files changed, 59 insertions, 1 deletions
diff --git a/dev-libs/libcroco/ChangeLog b/dev-libs/libcroco/ChangeLog index 51a16e75a8d4..c76c8b513b06 100644 --- a/dev-libs/libcroco/ChangeLog +++ b/dev-libs/libcroco/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libcroco # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcroco/ChangeLog,v 1.95 2014/04/26 06:40:12 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcroco/ChangeLog,v 1.96 2014/06/17 20:08:10 mgorny Exp $ + +*libcroco-0.6.8-r1 (17 Jun 2014) + + 17 Jun 2014; Michał Górny <mgorny@gentoo.org> +libcroco-0.6.8-r1.ebuild: + Enable multilib support, needed by gnome-base/librsvg. 26 Apr 2014; Pacho Ramos <pacho@gentoo.org> -libcroco-0.6.5.ebuild: drop old diff --git a/dev-libs/libcroco/libcroco-0.6.8-r1.ebuild b/dev-libs/libcroco/libcroco-0.6.8-r1.ebuild new file mode 100644 index 000000000000..d9cb9f7ef7ff --- /dev/null +++ b/dev-libs/libcroco/libcroco-0.6.8-r1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcroco/libcroco-0.6.8-r1.ebuild,v 1.1 2014/06/17 20:08:10 mgorny Exp $ + +EAPI="5" +GCONF_DEBUG="no" +GNOME2_LA_PUNT="yes" + +inherit gnome2 multilib-minimal + +DESCRIPTION="Generic Cascading Style Sheet (CSS) parsing and manipulation toolkit" +HOMEPAGE="http://git.gnome.org/browse/libcroco/" + +LICENSE="LGPL-2" +SLOT="0.6" +KEYWORDS="~alpha ~amd64 ~arm ~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" +IUSE="test" + +RDEPEND="dev-libs/glib:2[${MULTILIB_USEDEP}] + >=dev-libs/libxml2-2.4.23[${MULTILIB_USEDEP}]" +DEPEND="${RDEPEND} + dev-util/gtk-doc-am + virtual/pkgconfig[${MULTILIB_USEDEP}]" + +src_prepare() { + if ! use test; then + # don't waste time building tests + sed 's/^\(SUBDIRS .*\=.*\)tests\(.*\)$/\1\2/' -i Makefile.am Makefile.in \ + || die "sed failed" + fi + + gnome2_src_prepare +} + +multilib_src_configure() { + ECONF_SOURCE=${S} \ + gnome2_src_configure \ + --disable-static \ + $([[ ${CHOST} == *-darwin* ]] && echo --disable-Bsymbolic) + + if multilib_is_native_abi; then + ln -s "${S}"/docs/reference/html docs/reference/html || die + fi +} + +multilib_src_install() { + gnome2_src_install +} + +multilib_src_install_all() { + DOCS="AUTHORS ChangeLog HACKING NEWS README TODO" + einstalldocs +} |