Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/liblscp/
Date: Mon, 01 Oct 2018 18:49:08
Message-Id: 1538419725.9df1a217a139470d49e17b6cfd5d25567e478757.asturm@gentoo
1 commit: 9df1a217a139470d49e17b6cfd5d25567e478757
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sat Sep 29 16:59:36 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 1 18:48:45 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9df1a217
7
8 media-libs/liblscp: EAPI7 revbump, improve ebuild
9
10 Closes: https://bugs.gentoo.org/667302
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/10012
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 media-libs/liblscp/liblscp-0.5.8-r1.ebuild | 22 ++++++++++++++++++++++
16 1 file changed, 22 insertions(+)
17
18 diff --git a/media-libs/liblscp/liblscp-0.5.8-r1.ebuild b/media-libs/liblscp/liblscp-0.5.8-r1.ebuild
19 new file mode 100644
20 index 00000000000..a1079779fbf
21 --- /dev/null
22 +++ b/media-libs/liblscp/liblscp-0.5.8-r1.ebuild
23 @@ -0,0 +1,22 @@
24 +# Copyright 1999-2018 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +
29 +DESCRIPTION="C++ library for the Linux Sampler control protocol"
30 +HOMEPAGE="https://www.linuxsampler.org"
31 +SRC_URI="https://download.linuxsampler.org/packages/${P}.tar.gz"
32 +
33 +LICENSE="LGPL-2.1"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~ppc ~x86"
36 +IUSE="doc"
37 +
38 +DEPEND="doc? ( app-doc/doxygen )"
39 +
40 +DOCS=( AUTHORS ChangeLog TODO NEWS README )
41 +
42 +src_install() {
43 + use doc && local HTML_DOCS=( doc/html/. )
44 + default
45 +}