From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0B5E8139694 for ; Thu, 2 Mar 2017 16:20:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4058CE0C39; Thu, 2 Mar 2017 16:20:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1E618E0C39 for ; Thu, 2 Mar 2017 16:20:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DD6B03416D0 for ; Thu, 2 Mar 2017 16:20:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4AA0B59F5 for ; Thu, 2 Mar 2017 16:20:18 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1488471605.f9943ce68d444ffcc4d19f3756fcf6ae1549d592.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/alure/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/alure/alure-1.2.ebuild X-VCS-Directories: media-libs/alure/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: f9943ce68d444ffcc4d19f3756fcf6ae1549d592 X-VCS-Branch: master Date: Thu, 2 Mar 2017 16:20:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5896f6ed-fcc1-4b57-9447-01cd673651ba X-Archives-Hash: 04762fbe2da453c790e743413c7d0597 commit: f9943ce68d444ffcc4d19f3756fcf6ae1549d592 Author: Johannes Huber gentoo org> AuthorDate: Thu Mar 2 16:20:05 2017 +0000 Commit: Johannes Huber gentoo org> CommitDate: Thu Mar 2 16:20:05 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9943ce6 media-libs/alure: Remove 1.2 Package-Manager: Portage-2.3.3, Repoman-2.3.1 media-libs/alure/alure-1.2.ebuild | 45 --------------------------------------- 1 file changed, 45 deletions(-) diff --git a/media-libs/alure/alure-1.2.ebuild b/media-libs/alure/alure-1.2.ebuild deleted file mode 100644 index 104edbbb337..00000000000 --- a/media-libs/alure/alure-1.2.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 -inherit cmake-utils eutils - -DESCRIPTION="The OpenAL Utility Toolkit" -HOMEPAGE="http://kcat.strangesoft.net/alure.html" -SRC_URI="http://kcat.strangesoft.net/alure-releases/${P}.tar.bz2" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~ppc ~ppc64 x86" -IUSE="dumb examples flac fluidsynth mp3 sndfile static-libs vorbis" - -RDEPEND=">=media-libs/openal-1.1 - dumb? ( media-libs/dumb ) - flac? ( media-libs/flac ) - fluidsynth? ( >=media-sound/fluidsynth-1.1.1 ) - mp3? ( media-sound/mpg123 ) - sndfile? ( media-libs/libsndfile ) - vorbis? ( media-libs/libvorbis )" -DEPEND="${RDEPEND}" - -src_prepare() { - epatch "${FILESDIR}/${P}-include-unistd.patch" - sed -i -e "/DESTINATION/s:doc/alure:doc/${PF}:" CMakeLists.txt || die -} - -src_configure() { - # FIXME: libmodplug/sndfile.h from libmodplug conflict with sndfile.h from libsndfile - local mycmakeargs=( - $(cmake-utils_use dumb) - $(cmake-utils_use_build examples) - $(cmake-utils_use flac) - $(cmake-utils_use fluidsynth) - -DMODPLUG=OFF - $(cmake-utils_use mp3 MPG123) - $(cmake-utils_use sndfile) - $(cmake-utils_use_build static-libs STATIC) - $(cmake-utils_use vorbis) - ) - - cmake-utils_src_configure -}