summaryrefslogtreecommitdiff
blob: c4adc63bd2e4069164db951e41511fbeee943abc (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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/vbrfixc/vbrfixc-0.24.ebuild,v 1.3 2007/07/10 17:37:17 angelos Exp $

inherit eutils

DESCRIPTION="Vbrfix fixes MP3s and re-constructs VBR headers"
HOMEPAGE="http://www.willwap.co.uk/Programs/vbrfix.php"
SRC_URI="http://www.willwap.co.uk/Downloads/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""

src_unpack() {
	unpack ${A}
	cd "${S}"

	# every bigendian arch needs this patch
	#use ppc && epatch "${FILESDIR}/${P}-bigendian.diff"
}

src_install() {
	make DESTDIR="${D}" install || die "make install failed"
	dodoc AUTHORS README TODO
	dohtml vbrfixc/docs/en/*.html
}