29 lines
798 B
Bash
29 lines
798 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/libnatpmp/libnatpmp-20120821.ebuild,v 1.1 2012/08/27 00:50:36 blueness Exp $
|
|
|
|
EAPI=3
|
|
PYTHON_DEPEND=2
|
|
RESTRICT_PYTHON_ABIS="3.*"
|
|
|
|
inherit eutils distutils
|
|
|
|
DESCRIPTION="Python module for libnatpmp, an alternative protocol to UPnP IGD."
|
|
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 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="=net-libs/${PF}"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/link-against-system-lib.patch
|
|
distutils_src_prepare
|
|
|
|
#These are installed by net-libs/libnatpmp
|
|
rm -f Changelog.txt README || die
|
|
}
|