diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2008-10-20 20:14:12 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2008-10-20 20:14:12 +0000 |
commit | 88680eeecb41be655c289190bbae12398bc5eea2 (patch) | |
tree | f5fa53f9f6aa9c55021185674117edcd8607f691 /dev-libs | |
parent | Marking iprutils-2.2.9 ppc and ppc64 stable (diff) | |
download | gentoo-2-88680eeecb41be655c289190bbae12398bc5eea2.tar.gz gentoo-2-88680eeecb41be655c289190bbae12398bc5eea2.tar.bz2 gentoo-2-88680eeecb41be655c289190bbae12398bc5eea2.zip |
New version for GNOME 2.24. Port to GIO and bug fixes.
(Portage version: 2.2_rc12/cvs/Linux 2.6.24-gentoo-r8-mactel x86_64)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/totem-pl-parser/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/totem-pl-parser/totem-pl-parser-2.24.1.ebuild | 33 |
2 files changed, 40 insertions, 1 deletions
diff --git a/dev-libs/totem-pl-parser/ChangeLog b/dev-libs/totem-pl-parser/ChangeLog index d995aefabd73..66c3b644f92b 100644 --- a/dev-libs/totem-pl-parser/ChangeLog +++ b/dev-libs/totem-pl-parser/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/totem-pl-parser # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/totem-pl-parser/ChangeLog,v 1.12 2008/08/13 22:01:42 leio Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/totem-pl-parser/ChangeLog,v 1.13 2008/10/20 20:14:12 eva Exp $ + +*totem-pl-parser-2.24.1 (20 Oct 2008) + + 20 Oct 2008; Gilles Dartiguelongue <eva@gentoo.org> + +totem-pl-parser-2.24.1.ebuild: + New version for GNOME 2.24. Port to GIO and bug fixes. 13 Aug 2008; Mart Raudsepp <leio@gentoo.org> -totem-pl-parser-2.22.2.ebuild: diff --git a/dev-libs/totem-pl-parser/totem-pl-parser-2.24.1.ebuild b/dev-libs/totem-pl-parser/totem-pl-parser-2.24.1.ebuild new file mode 100644 index 000000000000..46a714185eb1 --- /dev/null +++ b/dev-libs/totem-pl-parser/totem-pl-parser-2.24.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2008 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.24.1.ebuild,v 1.1 2008/10/20 20:14:12 eva Exp $ + +inherit gnome.org + +DESCRIPTION="Playlist parsing library" +HOMEPAGE="http://www.gnome.org/projects/totem/" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="doc hal" + +RDEPEND=">=dev-libs/glib-2.16.3 + >=x11-libs/gtk+-2.12 + >=gnome-extra/evolution-data-server-1.12 + hal? ( + =sys-apps/hal-0.5* + >=sys-apps/dbus-1.0 )" +DEPEND="${RDEPEND} + !<media-video/totem-2.21 + >=dev-util/intltool-0.40 + doc? ( dev-util/gtk-doc )" + +src_compile() { + econf $(use_with hal) + emake || die "build failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" +} |