diff options
author | Dominik Stadler <centic@gentoo.org> | 2005-01-18 20:26:39 +0000 |
---|---|---|
committer | Dominik Stadler <centic@gentoo.org> | 2005-01-18 20:26:39 +0000 |
commit | 1d1dd02a2d6bb7c9207698cc71f2d5f03e6e7883 (patch) | |
tree | 3a0544986fe44dd08da68148902f16eb9d1b1ee3 /media-sound/wavsplit/wavsplit-1.2.1.ebuild | |
parent | rev bump to CVS snapshot to support CVS snapshot of MythTV, purge old versions (diff) | |
download | gentoo-2-1d1dd02a2d6bb7c9207698cc71f2d5f03e6e7883.tar.gz gentoo-2-1d1dd02a2d6bb7c9207698cc71f2d5f03e6e7883.tar.bz2 gentoo-2-1d1dd02a2d6bb7c9207698cc71f2d5f03e6e7883.zip |
New Version 1.2.1 and patch to support wav-files larger than 2G.
(Portage version: 2.0.51-r12)
Diffstat (limited to 'media-sound/wavsplit/wavsplit-1.2.1.ebuild')
-rw-r--r-- | media-sound/wavsplit/wavsplit-1.2.1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/media-sound/wavsplit/wavsplit-1.2.1.ebuild b/media-sound/wavsplit/wavsplit-1.2.1.ebuild new file mode 100644 index 000000000000..756e69335526 --- /dev/null +++ b/media-sound/wavsplit/wavsplit-1.2.1.ebuild @@ -0,0 +1,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 +} + |