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.
40 lines
777 B
40 lines
777 B
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
PYTHON_COMPAT=( python2_7 )
|
|
|
|
AT_M4DIR="build/autotools/"
|
|
|
|
inherit autotools python-single-r1
|
|
|
|
DESCRIPTION="Python bindings for the libmemphis library"
|
|
HOMEPAGE="http://gitorious.net/pymemphis"
|
|
SRC_URI="mirror://gentoo/${P}.tar.gz"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
LICENSE="LGPL-2.1"
|
|
IUSE=""
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
RDEPEND="${PYTHON_DEPS}
|
|
dev-python/pycairo[${PYTHON_USEDEP}]
|
|
dev-python/pygobject:2[${PYTHON_USEDEP}]
|
|
media-libs/memphis"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
S="${WORKDIR}"/${PN}-mainline
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
sed 's:0.1:0.2:g' -i pymemphis.pc.in || die
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
find "${D}" -name '*.la' -delete || die
|
|
}
|