diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-11-24 16:25:40 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-11-24 16:25:40 +0000 |
commit | feaadaab2f4c1391d5f7def4ba0838acdbb45703 (patch) | |
tree | d1839e29b203de5c5f4d208d3537f5f3a1b3a734 /media-libs/gmtk | |
parent | Version bump. (diff) | |
download | gentoo-2-feaadaab2f4c1391d5f7def4ba0838acdbb45703.tar.gz gentoo-2-feaadaab2f4c1391d5f7def4ba0838acdbb45703.tar.bz2 gentoo-2-feaadaab2f4c1391d5f7def4ba0838acdbb45703.zip |
Version bump wrt #440978 by Alessandro Capogna
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'media-libs/gmtk')
-rw-r--r-- | media-libs/gmtk/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/gmtk/gmtk-1.0.7.ebuild | 48 |
2 files changed, 54 insertions, 1 deletions
diff --git a/media-libs/gmtk/ChangeLog b/media-libs/gmtk/ChangeLog index 67c66fd010bc..d2c77e82d701 100644 --- a/media-libs/gmtk/ChangeLog +++ b/media-libs/gmtk/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/gmtk # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gmtk/ChangeLog,v 1.9 2012/06/08 11:32:01 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/gmtk/ChangeLog,v 1.10 2012/11/24 16:25:40 ssuominen Exp $ + +*gmtk-1.0.7 (24 Nov 2012) + + 24 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> +gmtk-1.0.7.ebuild: + Version bump wrt #440978 by Alessandro Capogna 08 Jun 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> gmtk-1.0.6.ebuild: x86 stable wrt bug #417819 diff --git a/media-libs/gmtk/gmtk-1.0.7.ebuild b/media-libs/gmtk/gmtk-1.0.7.ebuild new file mode 100644 index 000000000000..7c4bf0d8f582 --- /dev/null +++ b/media-libs/gmtk/gmtk-1.0.7.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gmtk/gmtk-1.0.7.ebuild,v 1.1 2012/11/24 16:25:40 ssuominen Exp $ + +EAPI=5 +inherit eutils + +DESCRIPTION="GTK+ widget and function libraries for gnome-mplayer" +HOMEPAGE="http://code.google.com/p/gmtk/" +SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86" +IUSE="alsa +dconf pulseaudio" + +COMMON_DEPEND=">=dev-libs/glib-2.30 + >=x11-libs/gtk+-3.2:3 + x11-libs/libX11 + alsa? ( media-libs/alsa-lib ) + pulseaudio? ( media-sound/pulseaudio )" +RDEPEND="${COMMON_DEPEND} + dconf? ( gnome-base/dconf )" +DEPEND="${COMMON_DEPEND} + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig" + +DOCS="ChangeLog" + +src_configure() { + econf \ + --disable-static \ + --enable-gtk3 \ + $(use_enable dconf gsettings) \ + --disable-gconf \ + $(use_enable !dconf keystore) \ + --with-gio \ + $(use_with alsa) \ + $(use_with pulseaudio) +} + +src_install() { + default + + rm -rf "${ED}"/usr/share/doc/${PN} + prune_libtool_files +} |