diff options
author | 2013-06-03 06:44:36 +0000 | |
---|---|---|
committer | 2013-06-03 06:44:36 +0000 | |
commit | 07a4ae3888660d6af1ab27247bf304bdae6123fb (patch) | |
tree | 6324aa36c8fd1c80bc10448e9b96af64bf7fafe7 /media-libs | |
parent | Clarify that only CONFIG processing is skipped. (diff) | |
download | gentoo-2-07a4ae3888660d6af1ab27247bf304bdae6123fb.tar.gz gentoo-2-07a4ae3888660d6af1ab27247bf304bdae6123fb.tar.bz2 gentoo-2-07a4ae3888660d6af1ab27247bf304bdae6123fb.zip |
Version bump.
(Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/gmtk/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/gmtk/gmtk-1.0.8.ebuild | 48 |
2 files changed, 54 insertions, 1 deletions
diff --git a/media-libs/gmtk/ChangeLog b/media-libs/gmtk/ChangeLog index e12f1ba7013d..e5be17ca65d8 100644 --- a/media-libs/gmtk/ChangeLog +++ b/media-libs/gmtk/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/gmtk # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gmtk/ChangeLog,v 1.15 2013/02/14 18:37:52 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/gmtk/ChangeLog,v 1.16 2013/06/03 06:44:36 ssuominen Exp $ + +*gmtk-1.0.8 (03 Jun 2013) + + 03 Jun 2013; Samuli Suominen <ssuominen@gentoo.org> +gmtk-1.0.8.ebuild: + Version bump. 14 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> -gmtk-1.0.6.ebuild: old diff --git a/media-libs/gmtk/gmtk-1.0.8.ebuild b/media-libs/gmtk/gmtk-1.0.8.ebuild new file mode 100644 index 000000000000..7ae5c4174837 --- /dev/null +++ b/media-libs/gmtk/gmtk-1.0.8.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gmtk/gmtk-1.0.8.ebuild,v 1.1 2013/06/03 06:44:36 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 +} |