blob: 11f583fe28d220a85a529f103ec385008d5b6e09 (
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
35
36
37
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/musicman/musicman-0.11-r1.ebuild,v 1.10 2005/10/30 22:36:08 flameeyes Exp $
IUSE=""
inherit eutils kde
S="${WORKDIR}/musicman"
DESCRIPTION="A Konqueror plugin for manipulating ID3 tags in MP3 files"
HOMEPAGE="http://musicman.sourceforge.net/"
SRC_URI="mirror://sourceforge/musicman/${P}.tar.gz"
LICENSE="GPL-1"
SLOT="0"
KEYWORDS="amd64 ~ppc sparc x86"
DEPEND="|| ( kde-base/libkonq >=kde-base/kdebase-3.2.1 )"
need-kde 3.2
pkg_setup() {
if ! useq arts; then
eerror "${PN} needs the USE=\"arts\" enabled and also the kdelibs compiled with the USE=\"arts\" enabled"
die
fi
}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gcc34.patch
epatch ${FILESDIR}/${P}-amd64.patch
}
|