blob: da502d8ba381370ae34904ab992631ceae14ccec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/qtgain/qtgain-0.9.5.ebuild,v 1.2 2012/05/21 20:06:26 ssuominen Exp $
EAPI=4
MY_PN="QtGain"
inherit eutils qt4-r2
DESCRIPTION="A simple frontend to mp3gain, vorbisgain and metaflac"
HOMEPAGE="http://www.qt-apps.org/content/show.php/QtGain?content=56842"
SRC_URI="http://www.qt-apps.org/CONTENT/content-files/56842-${MY_PN}.tar.lzma
-> ${P}.tar.lzma"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="flac mp3 mp4 vorbis"
DEPEND="x11-libs/qt-gui:4"
RDEPEND="${DEPEND}
flac? ( media-libs/flac )
mp3? ( media-sound/mp3gain )
mp4? ( media-sound/aacgain )
vorbis? ( media-sound/vorbisgain )
media-sound/id3v2"
S="${WORKDIR}/${MY_PN}"
src_install() {
dobin bin/${PN}
newicon Icons/lsongs.png ${PN}.png
make_desktop_entry ${PN} ${MY_PN}
}
|