Summary: | demolition-0.9.ebuild (NEW EBUILD) | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | ron widler <ron> |
Component: | New packages | Assignee: | Gentoo Sound Team <sound> |
Status: | RESOLVED FIXED | ||
Severity: | enhancement | CC: | ron |
Priority: | High | ||
Version: | unspecified | ||
Hardware: | All | ||
OS: | All | ||
URL: | http://www.ecs.soton.ac.uk/~njl98r/code/ladspa/demolition.html | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- | |
Attachments: | ebuild for distortion-0.9 |
Description
ron widler
2004-08-23 12:59:22 UTC
Created attachment 38056 [details]
ebuild for distortion-0.9
sorry for the delay, my machine took a break :(
I just added your submission to the portage CVS. Thanks for contributing! Before putting it into portage I did some minor cleanup/tidying on the ebuild: mainly spitting the DEPEND/RDEPEND and adding error messages to the emake and dobin. # diff -u /home/frank/demolition-0.9.ebuild demolition-0.9.ebuild --- /home/frank/demolition-0.9.ebuild 2004-08-25 14:48:27.034934746 +0200 +++ demolition-0.9.ebuild 2004-08-25 14:56:58.462067722 +0200 @@ -1,29 +1,30 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +# $Header: $ -IUSE="" - -DESCRIPTION="A destruction testing tool for LADSPA plugins. It's intended mostly for sanity checking your own code before you release it to the world." +DESCRIPTION="A destruction/stress testing tool for LADSPA plugins. It's intended mostly for sanity checking your own code before you release it to the world." HOMEPAGE="http://www.ecs.soton.ac.uk/~njl98r/code/ladspa/demolition.html" SRC_URI="http://www.ecs.soton.ac.uk/~njl98r/code/ladspa/${P}.tar.gz" -RESTRICT="" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="~x86 ~amd64" +IUSE="" S=${WORKDIR}/demolition -#first two for WANT_AUTOMAKE/CONF -DEPEND=">=sys-devel/autoconf-2.58 - >=sys-devel/automake-1.7.2 - virtual/glibc - >=dev-libs/glib-1.2.0" + +RDEPEND="virtual/glibc + >=dev-libs/glib-1.2.0 + media-libs/ladspa-sdk" +DEPEND="${RDEPEND} + >=sys-devel/autoconf-2.58 + >=sys-devel/automake-1.7.2" src_compile() { - emake || die + emake || die "emake failed" } src_install() { - dobin demolition + dobin demolition || die "dobin failed" dodoc COPYING } |