blob: 03de2574922399cf7b89a0c0810150627eb608c4 (
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
38
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3splt/mp3splt-2.1.ebuild,v 1.11 2007/01/11 16:44:11 corsair Exp $
inherit eutils
DESCRIPTION="A command line utility to split mp3 and vorbis files"
HOMEPAGE="http://mp3splt.sourceforge.net/"
SRC_URI="mirror://sourceforge/mp3splt/${P}-src.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ~hppa -mips ppc ~ppc64 sparc x86"
IUSE="vorbis"
DEPEND="vorbis? ( media-libs/libvorbis )
media-libs/libmad"
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${P}-gcc41.patch
}
src_compile() {
local myconf
# --enable-ogg doesn't enable ogg...
use vorbis || myconf="--disable-ogg"
econf ${myconf} || die "econf failed"
emake || die "build failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog NEWS README
}
|