diff options
author | Alexis Ballier <aballier@gentoo.org> | 2007-01-06 21:19:56 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2007-01-06 21:19:56 +0000 |
commit | 0a4e787f2988f45af461b63775423e131c26ab3b (patch) | |
tree | 8ee65f596184cfbaa026785d769e67bba815f159 /media-sound/ssrc/ssrc-1.30.ebuild | |
parent | Fixed several issues (tests, modname, dependencies) (diff) | |
download | historical-0a4e787f2988f45af461b63775423e131c26ab3b.tar.gz historical-0a4e787f2988f45af461b63775423e131c26ab3b.tar.bz2 historical-0a4e787f2988f45af461b63775423e131c26ab3b.zip |
Version bump, ~amd64 keyword, bug #158246
Package-Manager: portage-2.1.2_rc4-r5
Diffstat (limited to 'media-sound/ssrc/ssrc-1.30.ebuild')
-rw-r--r-- | media-sound/ssrc/ssrc-1.30.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/media-sound/ssrc/ssrc-1.30.ebuild b/media-sound/ssrc/ssrc-1.30.ebuild new file mode 100644 index 000000000000..dcff0ae41185 --- /dev/null +++ b/media-sound/ssrc/ssrc-1.30.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ssrc/ssrc-1.30.ebuild,v 1.1 2007/01/06 21:19:56 aballier Exp $ + +inherit eutils + +DESCRIPTION="A fast and high quality sampling rate converter" +HOMEPAGE="http://shibatch.sourceforge.net" +SRC_URI="http://shibatch.sf.net/download/${P}.tgz" +LICENSE="LGPL-2.1" +SLOT="0" + +#-sparc: kde's pop.wav "Error: Only PCM is supported." + +KEYWORDS="~x86 ~amd64 -sparc" +IUSE="" + +RDEPEND="virtual/libc" +DEPEND="app-arch/unzip" + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}/${P}-makefile.patch" +} + + +src_compile() { + # Local CFLAGS should overwrite the ones in the Makefile + emake -e || die +} + +src_install() { + dobin ssrc + dobin ssrc_hp + dodoc ssrc.txt history.txt +} |