diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-06-10 02:10:03 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-06-10 02:10:03 +0000 |
commit | 82f04238e1ae149d80aa2e847eb360c1285038fe (patch) | |
tree | c95e58dad03abdbcf421d1e211a945ca50fd071e /media-libs/ladspa-sdk | |
parent | New package. Fixes #3445 (diff) | |
download | gentoo-2-82f04238e1ae149d80aa2e847eb360c1285038fe.tar.gz gentoo-2-82f04238e1ae149d80aa2e847eb360c1285038fe.tar.bz2 gentoo-2-82f04238e1ae149d80aa2e847eb360c1285038fe.zip |
New package. Fixes #3448
Diffstat (limited to 'media-libs/ladspa-sdk')
-rw-r--r-- | media-libs/ladspa-sdk/ChangeLog | 13 | ||||
-rw-r--r-- | media-libs/ladspa-sdk/files/digest-ladspa-sdk-1.0 | 1 | ||||
-rw-r--r-- | media-libs/ladspa-sdk/ladspa-sdk-1.0.ebuild | 32 |
3 files changed, 46 insertions, 0 deletions
diff --git a/media-libs/ladspa-sdk/ChangeLog b/media-libs/ladspa-sdk/ChangeLog new file mode 100644 index 000000000000..781229b6a9da --- /dev/null +++ b/media-libs/ladspa-sdk/ChangeLog @@ -0,0 +1,13 @@ +# ChangeLog for media-libs/ladspa-sdk +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-sdk/ChangeLog,v 1.1 2002/06/10 02:10:03 rphillips Exp $ + +*ladspa-sdk-1.0 (09 June 2002) + + 09 June 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. diff --git a/media-libs/ladspa-sdk/files/digest-ladspa-sdk-1.0 b/media-libs/ladspa-sdk/files/digest-ladspa-sdk-1.0 new file mode 100644 index 000000000000..c648e887ecaa --- /dev/null +++ b/media-libs/ladspa-sdk/files/digest-ladspa-sdk-1.0 @@ -0,0 +1 @@ +MD5 00b34b8f9a80a1fe141b643e64ac1681 ladspa_sdk.tgz 69257 diff --git a/media-libs/ladspa-sdk/ladspa-sdk-1.0.ebuild b/media-libs/ladspa-sdk/ladspa-sdk-1.0.ebuild new file mode 100644 index 000000000000..4e4f18ee001b --- /dev/null +++ b/media-libs/ladspa-sdk/ladspa-sdk-1.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-sdk/ladspa-sdk-1.0.ebuild,v 1.1 2002/06/10 02:10:03 rphillips Exp $ + +DESCRIPTION="The Linux Audio Developer's Simple Plugin API and some example plugins" +HOMEPAGE="http://www.ladspa.org/" +LICENSE="LGPL-2.1" +DEPEND="virtual/glibc" +SRC_URI="http://www.ladspa.org/download/ladspa_sdk.tgz" +S=${WORKDIR}/ladspa_sdk/src + +src_unpack() { + unpack "${A}" + cd "${S}" + sed -e "/^CFLAGS/ s/-O3/${CFLAGS}/" < makefile > makefile.hacked + mv makefile.hacked makefile +} + +src_compile() { + make targets || die +} + +src_install() { + make \ + INSTALL_PLUGINS_DIR=${D}/usr/lib/ladspa \ + INSTALL_INCLUDE_DIR=${D}/usr/include \ + INSTALL_BINARY_DIR=${D}/usr/bin \ + install || die + + dodoc ../doc/* +} + |