Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
| Navigation: |
|
Lists:
gentoo-commits:
< Prev
By Thread
Next >
< Prev
By Date
Next >
|
| Headers: |
|
To:
|
gentoo-commits@g.o
|
|
From:
|
"Alexis Ballier (aballier)" <aballier@g.o>
|
|
Subject:
|
gentoo-x86 commit in media-plugins/swh-plugins: swh-plugins-0.4.15-r1.ebuild ChangeLog
|
|
Date:
|
Tue, 13 Jan 2009 07:38:36 +0000
|
|
aballier 09/01/13 07:38:36
Modified: ChangeLog
Added: swh-plugins-0.4.15-r1.ebuild
Log:
Use system libgsm, bug #252890
(Portage version: 2.2_rc21/cvs/Linux 2.6.28 x86_64)
Revision Changes Path
1.39 media-plugins/swh-plugins/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/swh-plugins/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/swh-plugins/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/swh-plugins/ChangeLog?r1=1.38&r2=1.39
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-plugins/swh-plugins/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog 5 Oct 2008 11:31:01 -0000 1.38
+++ ChangeLog 13 Jan 2009 07:38:36 -0000 1.39
@@ -1,6 +1,12 @@
# ChangeLog for media-plugins/swh-plugins
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/swh-plugins/ChangeLog,v 1.38 2008/10/05 11:31:01 aballier Exp $
+# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/swh-plugins/ChangeLog,v 1.39 2009/01/13 07:38:36 aballier Exp $
+
+*swh-plugins-0.4.15-r1 (13 Jan 2009)
+
+ 13 Jan 2009; Alexis Ballier <aballier@g.o>
+ +files/swh-plugins-0.4.15-system_gsm.patch, +swh-plugins-0.4.15-r1.ebuild:
+ Use system libgsm, bug #252890
05 Oct 2008; Alexis Ballier <aballier@g.o>
swh-plugins-0.4.15.ebuild:
1.1 media-plugins/swh-plugins/swh-plugins-0.4.15-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/swh-plugins/swh-plugins-0.4.15-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/swh-plugins/swh-plugins-0.4.15-r1.ebuild?rev=1.1&content-type=text/plain
Index: swh-plugins-0.4.15-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/swh-plugins/swh-plugins-0.4.15-r1.ebuild,v 1.1 2009/01/13 07:38:36 aballier Exp $
inherit eutils autotools
DESCRIPTION="Large collection of LADSPA audio plugins/effects"
HOMEPAGE="http://plugin.org.uk"
SRC_URI="http://plugin.org.uk/releases/${PV}/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="3dnow nls sse"
RDEPEND="media-libs/ladspa-sdk
media-sound/gsm
>=sci-libs/fftw-3"
DEPEND="${RDEPEND}
sys-devel/gettext
dev-util/cvs
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-pic.patch"
epatch "${FILESDIR}/${P}-plugindir.patch"
epatch "${FILESDIR}/${P}-riceitdown.patch"
epatch "${FILESDIR}/${P}-gettext.patch"
# Use system libgsm, bug #252890
rm -rf gsm
epatch "${FILESDIR}/${P}-system_gsm.patch"
# This is to update gettext macros, otherwise they are incompatible with
# recent libtools, bug #231767
autopoint -f || die
# it doesn't get updated otherwise
rm -f missing
eautoreconf
elibtoolize
}
src_compile() {
econf ${myconf} \
$(use_enable sse) \
$(use_enable 3dnow) \
$(use_enable nls) \
$(use_enable userland_Darwin darwin) \
--enable-fast-install \
--disable-dependency-tracking || die "econf failed"
emake || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog README TODO
}
pkg_postinst() {
ewarn "WARNING: You have to be careful when using the"
ewarn "swh plugins. Be sure to lower your sound volume"
ewarn "and then play around a bit with the plugins so"
ewarn "you get a feeling for it. Otherwise your speakers"
ewarn "won't like that."
}
|
|