diff options
author | Mike Frysinger <vapier@gentoo.org> | 2014-01-25 09:34:57 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2014-01-25 09:34:57 +0000 |
commit | 3fe700b8389674cf8f9728f339642ed2d18d8956 (patch) | |
tree | e3ccd339eab44e13eafcf7d1b0d8b6bdf15b8ae5 /media-sound/gmtp | |
parent | Remove old. (diff) | |
download | gentoo-2-3fe700b8389674cf8f9728f339642ed2d18d8956.tar.gz gentoo-2-3fe700b8389674cf8f9728f339642ed2d18d8956.tar.bz2 gentoo-2-3fe700b8389674cf8f9728f339642ed2d18d8956.zip |
Version bump.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'media-sound/gmtp')
-rw-r--r-- | media-sound/gmtp/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/gmtp/gmtp-1.3.5.ebuild | 44 |
2 files changed, 51 insertions, 2 deletions
diff --git a/media-sound/gmtp/ChangeLog b/media-sound/gmtp/ChangeLog index e8c27f3350c1..ba2298a3cf03 100644 --- a/media-sound/gmtp/ChangeLog +++ b/media-sound/gmtp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/gmtp -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/gmtp/ChangeLog,v 1.13 2012/11/15 00:21:04 vapier Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/gmtp/ChangeLog,v 1.14 2014/01/25 09:34:57 vapier Exp $ + +*gmtp-1.3.5 (25 Jan 2014) + + 25 Jan 2014; Mike Frysinger <vapier@gentoo.org> +gmtp-1.3.5.ebuild: + Version bump. *gmtp-1.3.4 (15 Nov 2012) diff --git a/media-sound/gmtp/gmtp-1.3.5.ebuild b/media-sound/gmtp/gmtp-1.3.5.ebuild new file mode 100644 index 000000000000..7f78c4544f1b --- /dev/null +++ b/media-sound/gmtp/gmtp-1.3.5.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/gmtp/gmtp-1.3.5.ebuild,v 1.1 2014/01/25 09:34:57 vapier Exp $ + +EAPI=4 +inherit gnome2-utils + +DESCRIPTION="A simple MTP client for MP3 players" +HOMEPAGE="http://gmtp.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-libs/glib:2 + media-libs/flac + media-libs/libid3tag + media-libs/libmtp + media-libs/libvorbis + x11-libs/gtk+:3" +DEPEND="${RDEPEND} + sys-devel/gettext + virtual/pkgconfig" + +src_configure() { + econf --with-gtk3 +} + +pkg_preinst() { + gnome2_icon_savelist + gnome2_schemas_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update + gnome2_schemas_update +} + +pkg_postrm() { + gnome2_icon_cache_update + gnome2_schemas_update +} |