summaryrefslogtreecommitdiff
blob: 579f4058f3439912bbab61b19afbb0fd50829c94 (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

DESCRIPTION="Media Tag Tools - a mp3/ogg/flac tagger"
HOMEPAGE="http://mediatagtools.berlios.de"
SRC_URI="mirror://berlios/mediatagtools/mediatagtools-0.2.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""

DEPEND="=x11-libs/qt-3*
		>=media-libs/taglib-1.4"
RDEPEND="$DEPEND"

src_compile() {
	cd "${S}"
	# Without this qmake find the wrong version of uic
	PATH="${QTDIR}/bin:${PATH}"
	# Asked around, the only way to ensure non-interactivity
	echo "${D}/usr/" | qmake || die "failed to configure"
	emake || die "failed to make"
}

src_install() {
	emake install INSTALL_ROOT="${D}/usr/" || die "make install failed"
}