diff options
author | Michael Palimaka <kensington@gentoo.org> | 2016-01-17 06:28:15 +1100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2016-01-17 06:28:48 +1100 |
commit | 79d667a434cbfeb260971ebbdaf08652c48f2dd7 (patch) | |
tree | caebef69881753bb8a0e4c972cf550f9521ecfdd /media-sound | |
parent | sys-fs/zfs-0.6.5.3-r3: Many fixes (diff) | |
download | gentoo-79d667a434cbfeb260971ebbdaf08652c48f2dd7.tar.gz gentoo-79d667a434cbfeb260971ebbdaf08652c48f2dd7.tar.bz2 gentoo-79d667a434cbfeb260971ebbdaf08652c48f2dd7.zip |
media-sound/mp3diags: revision bump
* Port away from qt4-r4.eclass
* Add missing license (used by icons)
* Add missing dependency
* Update icon cache
Package-Manager: portage-2.2.26
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/mp3diags/mp3diags-1.2.02-r1.ebuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/media-sound/mp3diags/mp3diags-1.2.02-r1.ebuild b/media-sound/mp3diags/mp3diags-1.2.02-r1.ebuild new file mode 100644 index 000000000000..70075baba0db --- /dev/null +++ b/media-sound/mp3diags/mp3diags-1.2.02-r1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils gnome2-utils qmake-utils + +MY_PN=MP3Diags +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Qt-based MP3 diagnosis and repair tool" +HOMEPAGE="http://mp3diags.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +LICENSE="LGPL-3 GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + >=dev-libs/boost-1.37 + dev-qt/qtcore:4 + dev-qt/qtgui:4 + sys-libs/zlib +" +RDEPEND="${DEPEND} + dev-qt/qtsvg:4 +" + +S=${WORKDIR}/${MY_P} + +src_configure() { + eqmake4 ${PN}.pro +} + +src_install() { + dobin bin/${MY_PN} + dodoc changelog.txt + + local size + for size in 16 22 24 32 36 40 48; do + insinto /usr/share/icons/hicolor/${size}x${size}/apps + newins desktop/${MY_PN}${size}.png ${MY_PN}.png + done + domenu desktop/${MY_PN}.desktop +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} |