Re: [proaudio] ardour cvs requires libsndfile-1.o.18 |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/proaudio Archives
]
Allan,
> Tried compiling ardour3 2 days ago, but it failed as it requires
> libsndfile-2.0.18....
It will fail for other reasons, too. But don't let that hinder you :)
> Is anyone doing an ebuild for this yet?
1.0.18 isn't released officially yet. But you can try the attached
ebuild.
Flo
--
Machines can do the work, so people have time to think.
public key 6C002249 x-hkp://wwwkeys.eu.pgp.net
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.17-r1.ebuild,v 1.14 2008/04/21 07:15:33 vapier Exp $
inherit eutils libtool autotools
DESCRIPTION="A C library for reading and writing files containing sampled sound"
HOMEPAGE="http://www.mega-nerd.com/libsndfile"
SRC_URI="http://www.mega-nerd.com/tmp/libsndfile-1.0.18pre24h.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd"
IUSE="sqlite flac alsa"
RESTRICT="test"
RDEPEND="flac? ( media-libs/flac )
alsa? ( media-libs/alsa-lib )
sqlite? ( >=dev-db/sqlite-3.2 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
S="${WORKDIR}/libsndfile-1.0.18pre24h"
cd "${S}"
}
src_compile() {
econf $(use_enable sqlite) \
$(use_enable flac) \
$(use_enable alsa) \
--disable-werror \
--disable-gcc-pipe \
--disable-dependency-tracking || die "econf failed."
emake || die "emake failed."
}
src_install() {
emake -j1 DESTDIR="${D}" htmldocdir="/usr/share/doc/${PF}/html" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README TODO
}