blob: d4e8fd1eefec4a1aa83b69e9b26e410ca283bbfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/iguanaIR/iguanaIR-0.93.ebuild,v 1.8 2012/05/07 14:38:02 ssuominen Exp $
EAPI=4
inherit eutils flag-o-matic python
DESCRIPTION="library for Irman control of Unix software"
HOMEPAGE="http://iguanaworks.net/index.php"
SRC_URI="http://iguanaworks.net/downloads/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ~ppc64 x86"
IUSE=""
RDEPEND="dev-libs/popt
virtual/libusb:0"
DEPEND="${RDEPEND}
|| ( dev-lang/python:2.7 dev-lang/python:2.6 )"
pkg_setup() {
append-flags -fPIC
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
sed -i -e 's:CFLAGS =:CFLAGS ?=:' Makefile.in || die
epatch \
"${FILESDIR}"/${P}-gentoo.diff \
"${FILESDIR}"/${P}-asneeded.patch
}
src_install() {
emake DESTDIR="${D}" install
insinto /lib/udev/rules.d
doins "${FILESDIR}"/40-iguanaIR.rules
}
|