blob: 777ac857f37b748f2e4802b2947e18422e9c0b09 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/miniupnpc/miniupnpc-1.4.20100609-r1.ebuild,v 1.2 2010/12/20 18:51:01 phajdan.jr Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
PYTHON_DEPEND="python? 2"
RESTRICT_PYTHON_ABIS="3.*"
inherit distutils eutils toolchain-funcs
DESCRIPTION="UPnP client library and a simple UPnP client"
HOMEPAGE="http://miniupnp.free.fr/"
SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 x86"
IUSE="python static-libs"
DEPEND="sys-apps/lsb-release"
RDEPEND=""
src_prepare() {
epatch "${FILESDIR}/${PN}-Respect-LDFLAGS.patch"
epatch "${FILESDIR}/0003-Move-non-used-and-non-installed-test-executables-to-.patch"
epatch "${FILESDIR}/0004-Move-minixml-validation-test-to-check-target.patch"
sed \
-e 's/^CFLAGS ?= -O -Wall /CFLAGS += /' \
-i Makefile
if use !static-libs; then
sed \
-e '/FILESTOINSTALL =/s/ $(LIBRARY)//' \
-e '/$(INSTALL) -m 644 $(LIBRARY) $(INSTALLDIRLIB)/d' \
-i Makefile
fi
use python && distutils_src_prepare
}
src_compile() {
emake CC=$(tc-getCC) || die
use python && distutils_src_compile
}
src_install() {
emake \
PREFIX="${D}" \
INSTALLDIRLIB="${D}usr/$(get_libdir)" \
install || die
dodoc README Changelog.txt || die
doman man3/* || die
use python && distutils_src_install
}
pkg_postinst() {
use python && distutils_pkg_postinst
}
pkg_postrm() {
use python && distutils_pkg_postrm
}
|