You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
889 B
31 lines
889 B
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="5"
|
|
inherit eutils toolchain-funcs multilib
|
|
|
|
DESCRIPTION="An alternative protocol to UPnP IGD specification"
|
|
HOMEPAGE="http://miniupnp.free.fr/libnatpmp.html"
|
|
SRC_URI="http://miniupnp.free.fr/files/download.php?file=${P}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
|
|
IUSE="static-libs"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/respect-FLAGS-20140401.patch
|
|
epatch "${FILESDIR}"/respect-libdir-20120821.patch
|
|
use static-libs || epatch "${FILESDIR}"/remove-static-lib-20130911.patch
|
|
tc-export CC
|
|
}
|
|
|
|
src_install() {
|
|
# Override HEADERS for missing declspec.h wrt #506832
|
|
emake HEADERS='declspec.h natpmp.h' PREFIX="${D}" GENTOO_LIBDIR="$(get_libdir)" install
|
|
|
|
dodoc Changelog.txt README
|
|
doman natpmpc.1
|
|
}
|