diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-12-13 15:23:46 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-12-13 15:23:46 +0000 |
commit | d534ecdb0965ef0e0db2a2d8f2b2d95085f16b5f (patch) | |
tree | a46d82a2e0c90a6f49f3bf070c051ba7025e39a5 /media-libs/alure/alure-1.0.ebuild | |
parent | Unmasking KDE 4.3, as the mask was never really needed anyway (not yet in pre... (diff) | |
download | gentoo-2-d534ecdb0965ef0e0db2a2d8f2b2d95085f16b5f.tar.gz gentoo-2-d534ecdb0965ef0e0db2a2d8f2b2d95085f16b5f.tar.bz2 gentoo-2-d534ecdb0965ef0e0db2a2d8f2b2d95085f16b5f.zip |
Initial commit (media-libs/freealut replacement) wrt #296116, thanks to Azamat H. Hackimov.
(Portage version: 2.2_rc58/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/alure/alure-1.0.ebuild')
-rw-r--r-- | media-libs/alure/alure-1.0.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/media-libs/alure/alure-1.0.ebuild b/media-libs/alure/alure-1.0.ebuild new file mode 100644 index 000000000000..6ad5afe1051c --- /dev/null +++ b/media-libs/alure/alure-1.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/alure/alure-1.0.ebuild,v 1.1 2009/12/13 15:23:46 ssuominen Exp $ + +EAPI=2 +inherit cmake-utils + +DESCRIPTION="The OpenAL Utility Toolkit" +HOMEPAGE="http://kcat.strangesoft.net/alure.html" +SRC_URI="http://kcat.strangesoft.net/alure-releases/${P}-src.tar.bz2" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="sndfile vorbis" + +DEPEND=">=media-libs/openal-1 + sndfile? ( media-libs/libsndfile ) + vorbis? ( media-libs/libvorbis )" + +PATCHES=( "${FILESDIR}/${P}-gcc44.patch" + "${FILESDIR}/${P}-multilib.patch" ) + +src_configure() { + mycmakeargs="${mycmakeargs} + -DFLAC=OFF + $(cmake-utils_use sndfile) + $(cmake-utils_use vorbis)" + + cmake-utils_src_configure +} |