blob: 756e693355262a500ef0f5cc211a3e02f5636d38 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/wavsplit/wavsplit-1.2.1.ebuild,v 1.1 2005/01/18 20:26:39 centic Exp $
inherit eutils
DESCRIPTION="WavSplit is a simple command line tool to split WAV files"
HOMEPAGE="http://sourceforge.net/projects/wavsplit/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
#-sparc, -amd64: 1.0: "Only supports PCM wave format" error message.
KEYWORDS="~x86 -sparc -amd64"
IUSE=""
DEPEND=""
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-large-files.patch
}
#src_compile() {
# emake || die
#}
src_install() {
dobin wavsplit wavren
doman wavsplit.1 wavren.1
dodoc BUGS CHANGES COPYING CREDITS README README.wavren
}
|