diff options
author | Pacho Ramos <pacho@gentoo.org> | 2011-09-22 16:29:41 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2011-09-22 16:29:41 +0000 |
commit | b49991a344fc42241a6959abafd0b41d63a134bc (patch) | |
tree | 5fc165adeaad73b92a4bf94d635839825af45c31 /dev-libs/totem-pl-parser | |
parent | Version bump, EAPI4, remove la file and don't build static libs. Drop old (diff) | |
download | gentoo-2-b49991a344fc42241a6959abafd0b41d63a134bc.tar.gz gentoo-2-b49991a344fc42241a6959abafd0b41d63a134bc.tar.bz2 gentoo-2-b49991a344fc42241a6959abafd0b41d63a134bc.zip |
Version bump.
(Portage version: 2.1.10.19/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/totem-pl-parser')
-rw-r--r-- | dev-libs/totem-pl-parser/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/totem-pl-parser/totem-pl-parser-2.32.6.ebuild | 68 |
2 files changed, 74 insertions, 1 deletions
diff --git a/dev-libs/totem-pl-parser/ChangeLog b/dev-libs/totem-pl-parser/ChangeLog index f1a9a85e73cc..c7a1f1401e50 100644 --- a/dev-libs/totem-pl-parser/ChangeLog +++ b/dev-libs/totem-pl-parser/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/totem-pl-parser # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/totem-pl-parser/ChangeLog,v 1.100 2011/08/16 22:28:25 nirbheek Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/totem-pl-parser/ChangeLog,v 1.101 2011/09/22 16:29:41 pacho Exp $ + +*totem-pl-parser-2.32.6 (22 Sep 2011) + + 22 Sep 2011; Pacho Ramos <pacho@gentoo.org> +totem-pl-parser-2.32.6.ebuild: + Version bump. *totem-pl-parser-2.32.5-r1 (16 Aug 2011) diff --git a/dev-libs/totem-pl-parser/totem-pl-parser-2.32.6.ebuild b/dev-libs/totem-pl-parser/totem-pl-parser-2.32.6.ebuild new file mode 100644 index 000000000000..dae058b20491 --- /dev/null +++ b/dev-libs/totem-pl-parser/totem-pl-parser-2.32.6.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/totem-pl-parser/totem-pl-parser-2.32.6.ebuild,v 1.1 2011/09/22 16:29:41 pacho Exp $ + +EAPI="4" +GCONF_DEBUG="no" +GNOME2_LA_PUNT="yes" + +inherit gnome2 + +DESCRIPTION="Playlist parsing library" +HOMEPAGE="http://projects.gnome.org/totem/ http://developer.gnome.org/totem-pl-parser/stable/" + +# eautoreconf needs: +#SRC_URI="${SRC_URI} mirror://gentoo/introspection-20110205.m4.tar.bz2" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="archive doc +introspection +quvi" + +RDEPEND=">=dev-libs/glib-2.24:2 + dev-libs/gmime:2.4 + >=net-libs/libsoup-gnome-2.30:2.4 + archive? ( >=app-arch/libarchive-2.8.4 ) + introspection? ( >=dev-libs/gobject-introspection-0.9.5 ) + quvi? ( >=media-libs/quvi-0.2.15 )" +DEPEND="${RDEPEND} + !<media-video/totem-2.21 + >=sys-devel/gettext-0.17 + >=dev-util/intltool-0.35 + doc? ( >=dev-util/gtk-doc-1.11 )" +# eautoreconf needs: +# >=dev-util/gtk-doc-am-1.11 + +pkg_setup() { + G2CONF="${G2CONF} + --disable-static + --disable-maintainer-mode + $(use_enable archive libarchive) + $(use_enable quvi) + $(use_enable introspection)" + DOCS="AUTHORS ChangeLog NEWS" +} + +# eautoreconf needs: +#src_unpack() { +# # If gobject-introspection is installed, we don't need the extra .m4 +# if has_version "dev-libs/gobject-introspection"; then +# unpack ${P}.tar.bz2 +# else +# unpack ${A} +# fi +#} + +src_prepare() { + gnome2_src_prepare + + # Disable tests requiring network access, bug #346127 + sed -e 's:\(g_test_add_func.*/parser/resolution.*\):/*\1*/:' \ + -e 's:\(g_test_add_func.*/parser/parsing/itms_link.*\):/*\1*/:' \ + -i plparse/tests/parser.c || die "sed failed" +} + +src_test() { + # This is required as told by upstream in bgo#629542 + dbus-launch emake check || die "emake check failed" +} |