Changeset - 48620f4ef524
[Not reviewed]
0 0 2
Chel Sea (chain) - 7 years ago 2018-06-07 09:58:01
chain@rpgfiction.net
commit old package
2 files changed with 46 insertions and 0 deletions:
0 comments (0 inline, 0 general)
app-misc/ola/Manifest
Show inline comments
 
new file 100644
 
DIST ola-0.9.5.tar.gz 2353664 SHA256 7c24ac98e865b4c354a04563b88012e782205ffd932a05cf944273f6f5ea82ca SHA512 93f441aee1d53b0022ea7600435ef12ee351147a89af384df2a9f3d56f69cd464c5bbb6fa88b28cb3d7755dcff7502e5e5a8f28604b8adc04a246aa6bb2a353d WHIRLPOOL feed687578c0c11f245336c3830875d4443d5f059c61f7cd1a04f1f5fe3f9ce14bcb1bf6bfa73ef5db4d38b379b4a6aee622a0551d7cfcdae0b1dc794da9684c
 
EBUILD ola-0.9.5.ebuild 887 SHA256 ed840728122a62f3a4da57c2a2dd0ba530015e83d097074c8cd1a54e244d5c26 SHA512 6baad36b690f0315bb728ebfa9e181d3ba181feacda5fbf87da36886a72837152d21f754d3caa189cf604e6dd95669258f07b0307b8f7469fa2011bc600f436b WHIRLPOOL 6c4029370b2ebaef323aa24500eb2b10359f6bee0618f0860bfd28e20fe989e5e06192a01672839e11caf3f581af250db2c662ccc17465620d7b8f1427f7d9a1
app-misc/ola/ola-0.9.5.ebuild
Show inline comments
 
new file 100644
 
# Copyright 1999-2007 Gentoo Foundation
 
# Distributed under the terms of the GNU General Public License v2
 
# $Header: $
 

	
 
EAPI="4"
 

	
 
PYTHON_DEPEND="2"
 

	
 
inherit flag-o-matic autotools eutils python
 

	
 
DESCRIPTION="Open Lighting Architecture"
 
HOMEPAGE="http://www.openlighting.org/"
 
SRC_URI="https://github.com/OpenLightingProject/ola/releases/download/${PV}/${P}.tar.gz"
 

	
 
LICENSE="LGPL-3"
 
SLOT="0"
 
KEYWORDS="~amd64 ~arm ~x86"
 
IUSE="examples httpd python"
 

	
 
DEPEND="	dev-libs/protobuf[python]
 
		dev-util/cppunit
 
		httpd? ( net-libs/libmicrohttpd[messages] )"
 
RDEPEND="${DEPEND}"
 

	
 
pkg_setup() {
 
	python_set_active_version 2
 
	python_pkg_setup
 
}
 

	
 
src_prepare() {
 
        eautoreconf
 
}
 

	
 
src_configure() {
 
	econf	--prefix=/usr \
 
		--disable-fatal-warnings \
 
		$(use_enable examples) \
 
		$(use_enable httpd http) \
 
		$(use_enable python python-libs)
 
}
 

	
 
src_compile() {
 
	emake || die "emake failed"
 
}
0 comments (0 inline, 0 general)