forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-libs/liblscp: version bump to 0.5.7
Package-Manager: portage-2.2.20.1
- Loading branch information
Showing
2 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST liblscp-0.5.5.tar.gz 402096 SHA256 bf5c883d219e25234f42a0ae56458b9d9cf06ab74052f440866c90c01c719026 | ||
DIST liblscp-0.5.6.tar.gz 369550 SHA256 4e518d44646465c4b53296bb8c2acd75b87692cc03b555e4896263a09f6b10cf | ||
DIST liblscp-0.5.6.tar.gz 369550 SHA256 4e518d44646465c4b53296bb8c2acd75b87692cc03b555e4896263a09f6b10cf SHA512 3d2b8b8316f39cf082f15475bb0fec7822bda22e9eaabfa79aaf19244c7d364df29a508bd56a592ff2b188c4d1aa82d3a5bec7238d3a0528015ec7c5f70c8403 WHIRLPOOL 0f470f218b84727ee09c7d17071069461f310e525acafad3d68673e9e8c39f3f4ac2c580a6d2c128b02a6c35c6c6413efd37559db4e9635d984f95a61788c3ce | ||
DIST liblscp-0.5.7.tar.bz2 529902 SHA256 5156fb6a36bc14f427a5971b1e8768df7771ee7bd9fe501d3330d3bb8f255a3c SHA512 10cc43f0670cf264464452eedab6302b2ca837e8fa3df9098f58441045a38e6400a77b989db9363176031abd53917b21823a66f694e7b83f3b957dac391d12dd WHIRLPOOL 14521467a613e3b348cb12f428aa58ce682968136fea3aca8421a91fc7cff150d9cc05d47447f68d333cb787da37f6e5747670865292af1ca64e75aeaa5d5991 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
DESCRIPTION="C++ library for the Linux Sampler control protocol" | ||
HOMEPAGE="http://www.linuxsampler.org" | ||
SRC_URI="http://download.linuxsampler.org/packages/${P}.tar.bz2" | ||
|
||
LICENSE="LGPL-2.1" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~ppc ~x86" | ||
IUSE="doc" | ||
|
||
RDEPEND="" | ||
DEPEND="doc? ( app-doc/doxygen )" | ||
|
||
src_install() { | ||
emake DESTDIR="${D}" install | ||
dodoc AUTHORS ChangeLog TODO NEWS README | ||
|
||
if use doc; then | ||
dohtml -r doc/html/* | ||
fi | ||
} |