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 0FB6B138334 for ; Sun, 24 Feb 2019 01:55:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 20BCFE0949; Sun, 24 Feb 2019 01:55:42 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ED65AE0949 for ; Sun, 24 Feb 2019 01:55:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CABA133BEF5 for ; Sun, 24 Feb 2019 01:55:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6245527 for ; Sun, 24 Feb 2019 01:55:35 +0000 (UTC) From: "Matthew Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Thode" Message-ID: <1550973325.1a1d03df4cd1d6e4043229fbd1899a81a196ce36.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/lsp-plugins/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/lsp-plugins/lsp-plugins-9999.ebuild X-VCS-Directories: media-libs/lsp-plugins/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matthew Thode X-VCS-Revision: 1a1d03df4cd1d6e4043229fbd1899a81a196ce36 X-VCS-Branch: master Date: Sun, 24 Feb 2019 01:55:35 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 555bc38a-8f2e-4c6f-bffd-ec1b501b8ad2 X-Archives-Hash: b7deb08a6a425e530c5efc0d6f0f0558 commit: 1a1d03df4cd1d6e4043229fbd1899a81a196ce36 Author: Matthew Thode gentoo org> AuthorDate: Sun Feb 24 01:55:10 2019 +0000 Commit: Matthew Thode gentoo org> CommitDate: Sun Feb 24 01:55:25 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a1d03df media-libs/lsp-plugins: add 9999 release Package-Manager: Portage-2.3.51, Repoman-2.3.12 Signed-off-by: Matthew Thode gentoo.org> media-libs/lsp-plugins/lsp-plugins-9999.ebuild | 52 ++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/media-libs/lsp-plugins/lsp-plugins-9999.ebuild b/media-libs/lsp-plugins/lsp-plugins-9999.ebuild new file mode 100644 index 00000000000..3a77bc9e13a --- /dev/null +++ b/media-libs/lsp-plugins/lsp-plugins-9999.ebuild @@ -0,0 +1,52 @@ +# Copyright 2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Linux Studio Plugins" +HOMEPAGE="https://lsp-plug.in" + +if [[ ${PV} == *9999 ]];then + inherit git-r3 + SRC_URI="" + EGIT_REPO_URI="https://github.com/sadko4u/lsp-plugins" + EGIT_BRANCH="devel" +else + SRC_URI="https://github.com/sadko4u/lsp-plugins/archive/${P}.tar.gz" + S="${WORKDIR}/${PN}-${P}" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="LGPL-3" +SLOT="0" +IUSE="doc jack ladspa +lv2" +REQUIRED_USE="|| ( jack ladspa lv2 )" + +DEPEND=" + dev-libs/expat + media-libs/libsndfile + doc? ( dev-lang/php:* ) + jack? ( + virtual/jack + x11-libs/cairo + ) + ladspa? ( media-libs/ladspa-sdk ) + lv2? ( + media-libs/lv2 + x11-libs/cairo + ) +" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_compile(){ + use doc && MODULES+="doc" + use jack && MODULES+=" jack" + use ladspa && MODULES+=" ladspa" + use lv2 && MODULES+=" lv2" + emake BUILD_MODULES="${MODULES}" +} + +src_install(){ + emake PREFIX="/usr" DESTDIR="${D}" install +}