* [gentoo-commits] gentoo-x86 commit in media-plugins/rev-plugins: metadata.xml rev-plugins-0.3.1.ebuild ChangeLog
@ 2007-11-18 18:43 Alexis Ballier (aballier)
0 siblings, 0 replies; only message in thread
From: Alexis Ballier (aballier) @ 2007-11-18 18:43 UTC (permalink / raw
To: gentoo-commits
aballier 07/11/18 18:43:20
Modified: metadata.xml rev-plugins-0.3.1.ebuild ChangeLog
Log:
handle to proaudio herd like others ladspa plugins, make multilib aware, use full g++ name, dont force -O2, fix homepage and src_uri, use emake
(Portage version: 2.1.3.19)
Revision Changes Path
1.3 media-plugins/rev-plugins/metadata.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/rev-plugins/metadata.xml?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/rev-plugins/metadata.xml?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/rev-plugins/metadata.xml?r1=1.2&r2=1.3
Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/rev-plugins/metadata.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- metadata.xml 19 Apr 2005 08:19:01 -0000 1.2
+++ metadata.xml 18 Nov 2007 18:43:19 -0000 1.3
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<herd>sound</herd>
+<herd>proaudio</herd>
</pkgmetadata>
1.2 media-plugins/rev-plugins/rev-plugins-0.3.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/rev-plugins/rev-plugins-0.3.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/rev-plugins/rev-plugins-0.3.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/rev-plugins/rev-plugins-0.3.1.ebuild?r1=1.1&r2=1.2
Index: rev-plugins-0.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/rev-plugins/rev-plugins-0.3.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rev-plugins-0.3.1.ebuild 10 Oct 2005 19:04:22 -0000 1.1
+++ rev-plugins-0.3.1.ebuild 18 Nov 2007 18:43:19 -0000 1.2
@@ -1,12 +1,14 @@
-# Copyright 1999-2005 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/rev-plugins/rev-plugins-0.3.1.ebuild,v 1.1 2005/10/10 19:04:22 fvdpol Exp $
-#
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/rev-plugins/rev-plugins-0.3.1.ebuild,v 1.2 2007/11/18 18:43:19 aballier Exp $
+
+inherit multilib toolchain-funcs
+
MY_P=${P/rev/REV}
DESCRIPTION="REV LADSPA plugins package. A stereo reverb plugin based on the well-known greverb"
-HOMEPAGE="http://users.skynet.be/solaris/linuxaudio/"
-SRC_URI="http://users.skynet.be/solaris/linuxaudio/downloads/${MY_P}.tar.bz2"
+HOMEPAGE="http://www.kokkinizita.net/linuxaudio/"
+SRC_URI="http://www.kokkinizita.net/linuxaudio/downloads/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
@@ -18,12 +20,15 @@
S=${WORKDIR}/${MY_P}
src_compile() {
- make || die
+ tc-export CXX
+ sed -i -e "s/-O2//" Makefile
+ sed -i -e "s/g++/$(tc-getCXX)/" Makefile
+ emake || die
}
src_install() {
dodoc AUTHORS README
- insinto /usr/lib/ladspa
+ insinto /usr/$(get_libdir)/ladspa
insopts -m0755
doins *.so
}
1.13 media-plugins/rev-plugins/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/rev-plugins/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/rev-plugins/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/rev-plugins/ChangeLog?r1=1.12&r2=1.13
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/rev-plugins/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog 22 Feb 2007 02:28:33 -0000 1.12
+++ ChangeLog 18 Nov 2007 18:43:19 -0000 1.13
@@ -1,6 +1,11 @@
# ChangeLog for media-plugins/rev-plugins
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/rev-plugins/ChangeLog,v 1.12 2007/02/22 02:28:33 peper Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/rev-plugins/ChangeLog,v 1.13 2007/11/18 18:43:19 aballier Exp $
+
+ 18 Nov 2007; Alexis Ballier <aballier@gentoo.org> metadata.xml,
+ rev-plugins-0.3.1.ebuild:
+ handle to proaudio herd like others ladspa plugins, make multilib aware, use
+ full g++ name, dont force -O2, fix homepage and src_uri, use emake
22 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog:
Transition to Manifest2.
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-11-18 18:43 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-18 18:43 [gentoo-commits] gentoo-x86 commit in media-plugins/rev-plugins: metadata.xml rev-plugins-0.3.1.ebuild ChangeLog Alexis Ballier (aballier)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox