diff options
author | 2008-09-29 05:40:14 +0000 | |
---|---|---|
committer | 2008-09-29 05:40:14 +0000 | |
commit | eb21ecf97c4aa2d4abe2b552f8a39769593930b8 (patch) | |
tree | ada5a0d6ef44819b53451d8794862082981e2b99 /media-sound | |
parent | Version bump and new homepage. (diff) | |
download | gentoo-2-eb21ecf97c4aa2d4abe2b552f8a39769593930b8.tar.gz gentoo-2-eb21ecf97c4aa2d4abe2b552f8a39769593930b8.tar.bz2 gentoo-2-eb21ecf97c4aa2d4abe2b552f8a39769593930b8.zip |
Add a new revision using EAPI=2 and USE dependencies.
(Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo-r1 x86_64)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/ardour/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/ardour/ardour-2.5-r1.ebuild | 120 |
2 files changed, 126 insertions, 1 deletions
diff --git a/media-sound/ardour/ChangeLog b/media-sound/ardour/ChangeLog index 909a133bd96c..5ea81dfffd17 100644 --- a/media-sound/ardour/ChangeLog +++ b/media-sound/ardour/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/ardour # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ardour/ChangeLog,v 1.79 2008/08/05 23:25:40 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/ardour/ChangeLog,v 1.80 2008/09/29 05:40:14 flameeyes Exp $ + +*ardour-2.5-r1 (29 Sep 2008) + + 29 Sep 2008; Diego Pettenò <flameeyes@gentoo.org> +ardour-2.5-r1.ebuild: + Add a new revision using EAPI=2 and USE dependencies. 05 Aug 2008; Alexis Ballier <aballier@gentoo.org> ardour-2.5.ebuild: bump scons dep to latest available, will hopefuly fix bug #225695 diff --git a/media-sound/ardour/ardour-2.5-r1.ebuild b/media-sound/ardour/ardour-2.5-r1.ebuild new file mode 100644 index 000000000000..3a659bb0a9f4 --- /dev/null +++ b/media-sound/ardour/ardour-2.5-r1.ebuild @@ -0,0 +1,120 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ardour/ardour-2.5-r1.ebuild,v 1.1 2008/09/29 05:40:14 flameeyes Exp $ + +EAPI=2 + +inherit eutils toolchain-funcs flag-o-matic versionator + +DESCRIPTION="multi-track hard disk recording software" +HOMEPAGE="http://ardour.org/" +SRC_URI="http://ardour.org/files/releases/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="altivec debug freesound nls sse" + +RDEPEND="media-libs/liblo + media-libs/aubio + >=media-libs/liblrdf-0.4.0 + >=media-libs/raptor-1.4.2 + >=media-sound/jack-audio-connection-kit-0.109.2 + >=dev-libs/glib-2.10.3 + x11-libs/pango + >=x11-libs/gtk+-2.8.8 + media-libs/flac + >=media-libs/alsa-lib-1.0.14a-r1[midi] + >=media-libs/libsamplerate-0.1.1-r1 + >=dev-libs/libxml2-2.6.0 + dev-libs/libxslt + >=media-libs/libsndfile-1.0.16 + gnome-base/libgnomecanvas + x11-themes/gtk-engines + >=dev-cpp/gtkmm-2.12.3[accessibility] + >=dev-cpp/glibmm-2.14.2 + >=dev-cpp/libgnomecanvasmm-2.20.0 + dev-cpp/cairomm + >=dev-libs/libsigc++-2.0 + media-libs/libsoundtouch + dev-libs/libusb + =sci-libs/fftw-3* + freesound? ( net-misc/curl )" +# slv2? ( >=media-libs/slv2-0.6.0 ) + +DEPEND="${RDEPEND} + sys-devel/libtool + dev-libs/boost + dev-util/pkgconfig + >=dev-util/scons-0.98.5 + nls? ( sys-devel/gettext )" + +#S=${WORKDIR}/${PN}-$(get_version_component_range 1-2) + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}/${PN}-2.0.3-sndfile-external.patch" + epatch "${FILESDIR}/${PN}-2.4-cflags.patch" + epatch "${FILESDIR}/${PN}-2.3.1-soundtouch.patch" + epatch "${FILESDIR}/${PN}-2.5-gcc43.patch" +} + +ardour_use_enable() { + use ${2} && echo "${1}=1" || echo "${1}=0" +} + +src_compile() { + # Required for scons to "see" intermediate install location + mkdir -p "${D}" + + local FPU_OPTIMIZATION=$((use altivec || use sse) && echo 1 || echo 0) + cd "${S}" + + tc-export CC CXX + + # Avoid compiling x86 asm when building on amd64 without using sse + # bug #186798 + use amd64 && append-flags "-DUSE_X86_64_ASM" + + scons \ + $(ardour_use_enable DEBUG debug) \ + FPU_OPTIMIZATION=${FPU_OPTIMIZATION} \ + DESTDIR="${D}" \ + $(ardour_use_enable NLS nls) \ + $(ardour_use_enable FREESOUND freesound) \ + FFT_ANALYSIS=1 \ + SYSLIBS=1 \ + CFLAGS="${CFLAGS}" \ + LV2=0 \ + PREFIX=/usr || die "scons failed" +} + +src_install() { + scons install || die "make install failed" + + dodoc DOCUMENTATION/* + + doicon "${S}/icons/icon/ardour_icon_mac.png" + make_desktop_entry ardour2 Ardour2 ardour_icon_mac AudioVideo +} + +pkg_postinst() { + ewarn "---------------- WARNING -------------------" + ewarn "" + ewarn "Do not use Ardour 2.0 to open the only copy of sessions created with Ardour 0.99." + ewarn "Ardour 2.0 saves the session file in a new format that Ardour 0.99 will" + ewarn "not understand." + ewarn "" + ewarn "MAKE BACKUPS OF THE SESSION FILES." + ewarn "" + ewarn "The simplest way to address this is to make a copy of the session file itself" + ewarn "(e.g mysession/mysession.ardour) and make that file unreadable using chmod(1)." + ewarn "" + ewarn "---------------- WARNING -------------------" + ewarn "" + ewarn "If you use KDE 3.5, be sure to uncheck 'Apply colors to non-KDE applications' in" + ewarn "the colors configuration module if you want to be able to actually see various" + ewarn "texts in Ardour 2." +} |