45 lines
903 B
Plaintext
45 lines
903 B
Plaintext
|
# Copyright 1999-2011 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: $
|
||
|
|
||
|
EAPI=2
|
||
|
inherit eutils toolchain-funcs
|
||
|
|
||
|
MY_P="concordance-${PV}"
|
||
|
|
||
|
DESCRIPTION="Library for programming the Logitech Harmony universal remote; part
|
||
|
of the concordance project"
|
||
|
HOMEPAGE="http://www.phildev.net/concordance/"
|
||
|
SRC_URI="mirror://sourceforge/concordance/${MY_P}.tar.bz2"
|
||
|
|
||
|
LICENSE="GPL-3"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~x86 ~amd64"
|
||
|
IUSE=""
|
||
|
|
||
|
RDEPEND="dev-libs/libusb"
|
||
|
DEPEND="${RDEPEND}"
|
||
|
|
||
|
S="${WORKDIR}/${MY_P}/${PN}"
|
||
|
|
||
|
src_configure() {
|
||
|
# Debian bug 594615
|
||
|
epatch "${FILESDIR}"/${P}-flash.patch || die "patch failed"
|
||
|
|
||
|
econf || die "configure failed"
|
||
|
}
|
||
|
|
||
|
src_compile() {
|
||
|
emake DESTDIR="${D}" || die "make failed"
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
emake DESTDIR="${D}" install || die
|
||
|
dodoc ../Changelog ../LICENSE README
|
||
|
S="${S}/bindings/python"
|
||
|
cd ${S}
|
||
|
python setup.py install --root=${D}
|
||
|
}
|
||
|
|
||
|
|