From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 906E358973 for ; Sat, 16 Jan 2016 19:29:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B28621C006; Sat, 16 Jan 2016 19:29:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BE5CC21C006 for ; Sat, 16 Jan 2016 19:29:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DE05E340B35 for ; Sat, 16 Jan 2016 19:29:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 12FCFC6F for ; Sat, 16 Jan 2016 19:29:02 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1452972528.79d667a434cbfeb260971ebbdaf08652c48f2dd7.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mp3diags/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/mp3diags/mp3diags-1.2.02-r1.ebuild X-VCS-Directories: media-sound/mp3diags/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 79d667a434cbfeb260971ebbdaf08652c48f2dd7 X-VCS-Branch: master Date: Sat, 16 Jan 2016 19:29:02 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ec5e0d30-8d72-49c6-885d-88f633520fee X-Archives-Hash: f9545d3f34d9a570d2e8d95f6194c7c4 commit: 79d667a434cbfeb260971ebbdaf08652c48f2dd7 Author: Michael Palimaka gentoo org> AuthorDate: Sat Jan 16 19:28:15 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sat Jan 16 19:28:48 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79d667a4 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 media-sound/mp3diags/mp3diags-1.2.02-r1.ebuild | 59 ++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) 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 0000000..70075ba --- /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 +}