blob: 226f64bcadec2b2ccf7d988a18bbff271722c929 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3unicode/mp3unicode-1.2.ebuild,v 1.2 2007/12/06 15:37:48 drac Exp $
DESCRIPTION="MP3Unicode is a command line utility to convert ID3 tags in mp3 files between different encodings"
HOMEPAGE="http://mp3unicode.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=media-libs/taglib-1.4"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
rm -rf "${D}"/usr/share/doc/${PN}
dodoc AUTHORS ChangeLog README
}
|