diff options
author | Nirbheek Chauhan <nirbheek@gentoo.org> | 2012-09-21 05:21:31 +0000 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@gentoo.org> | 2012-09-21 05:21:31 +0000 |
commit | 2383de0efefa8778aed5df3e6dcb41841f35ae72 (patch) | |
tree | 657aa72e64bbbb71399a1ab0223e610f5e8f59f1 /dev-libs/libcroco | |
parent | Force latest dev-libs/libusbx because <1.0.13 had issues with namespace colli... (diff) | |
download | gentoo-2-2383de0efefa8778aed5df3e6dcb41841f35ae72.tar.gz gentoo-2-2383de0efefa8778aed5df3e6dcb41841f35ae72.tar.bz2 gentoo-2-2383de0efefa8778aed5df3e6dcb41841f35ae72.zip |
Bump to 0.6.6
(Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libcroco')
-rw-r--r-- | dev-libs/libcroco/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libcroco/libcroco-0.6.6.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/dev-libs/libcroco/ChangeLog b/dev-libs/libcroco/ChangeLog index e69861b48d0a..0fcbf03ca036 100644 --- a/dev-libs/libcroco/ChangeLog +++ b/dev-libs/libcroco/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libcroco # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcroco/ChangeLog,v 1.76 2012/07/15 16:47:00 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcroco/ChangeLog,v 1.77 2012/09/21 05:21:31 nirbheek Exp $ + +*libcroco-0.6.6 (21 Sep 2012) + + 21 Sep 2012; Nirbheek Chauhan <nirbheek@gentoo.org> +libcroco-0.6.6.ebuild: + Bump to 0.6.6 15 Jul 2012; Raúl Porcel <armin76@gentoo.org> libcroco-0.6.5.ebuild: alpha/ia64/m68k/s390/sh/sparc stable wrt #410611 diff --git a/dev-libs/libcroco/libcroco-0.6.6.ebuild b/dev-libs/libcroco/libcroco-0.6.6.ebuild new file mode 100644 index 000000000000..bf84525b3a93 --- /dev/null +++ b/dev-libs/libcroco/libcroco-0.6.6.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcroco/libcroco-0.6.6.ebuild,v 1.1 2012/09/21 05:21:31 nirbheek Exp $ + +EAPI="4" +GCONF_DEBUG="no" +GNOME2_LA_PUNT="yes" + +inherit gnome2 + +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" +IUSE="doc test" + +RDEPEND="dev-libs/glib:2 + >=dev-libs/libxml2-2.4.23" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( >=dev-util/gtk-doc-1 )" + +pkg_setup() { + G2CONF="${G2CONF} --disable-static" + DOCS="AUTHORS ChangeLog HACKING NEWS README TODO" +} + +src_prepare() { + gnome2_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 +} |