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 4847D138334 for ; Mon, 1 Oct 2018 18:49:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6BFC7E09A5; Mon, 1 Oct 2018 18:49:07 +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 3DBC7E0986 for ; Mon, 1 Oct 2018 18:49:07 +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 D9A1A33BE0D for ; Mon, 1 Oct 2018 18:49:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 35BCC3FB for ; Mon, 1 Oct 2018 18:49:04 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1538419725.9df1a217a139470d49e17b6cfd5d25567e478757.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/liblscp/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/liblscp/liblscp-0.5.8-r1.ebuild X-VCS-Directories: media-libs/liblscp/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 9df1a217a139470d49e17b6cfd5d25567e478757 X-VCS-Branch: master Date: Mon, 1 Oct 2018 18:49:04 +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: 33c26e81-9238-44ad-973f-1c0eac5b1f48 X-Archives-Hash: 8858108410f926da6444836f96b8c902 commit: 9df1a217a139470d49e17b6cfd5d25567e478757 Author: Michael Mair-Keimberger gmail com> AuthorDate: Sat Sep 29 16:59:36 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Oct 1 18:48:45 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9df1a217 media-libs/liblscp: EAPI7 revbump, improve ebuild Closes: https://bugs.gentoo.org/667302 Signed-off-by: Michael Mair-Keimberger gmail.com> Closes: https://github.com/gentoo/gentoo/pull/10012 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/liblscp/liblscp-0.5.8-r1.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/media-libs/liblscp/liblscp-0.5.8-r1.ebuild b/media-libs/liblscp/liblscp-0.5.8-r1.ebuild new file mode 100644 index 00000000000..a1079779fbf --- /dev/null +++ b/media-libs/liblscp/liblscp-0.5.8-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="C++ library for the Linux Sampler control protocol" +HOMEPAGE="https://www.linuxsampler.org" +SRC_URI="https://download.linuxsampler.org/packages/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="doc" + +DEPEND="doc? ( app-doc/doxygen )" + +DOCS=( AUTHORS ChangeLog TODO NEWS README ) + +src_install() { + use doc && local HTML_DOCS=( doc/html/. ) + default +}