c025c2113f
git-svn-id: http://svn.sabayonlinux.org/overlay@2176 d7aec97c-591d-0410-af39-a8856400b30a
27 lines
639 B
Bash
27 lines
639 B
Bash
# Copyright 1999-2008 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
inherit distutils
|
|
|
|
MY_P="${P/rb_/}" MY_P="${MY_P/-python/}"
|
|
S="${WORKDIR}/${MY_P}/bindings/python"
|
|
|
|
DESCRIPTION="Python bindings for the rb_libtorrent library"
|
|
HOMEPAGE="http://www.rasterbar.com/products/libtorrent/"
|
|
SRC_URI="mirror://sourceforge/libtorrent/${MY_P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86 ~x86-fbsd"
|
|
IUSE="debug"
|
|
|
|
DEPEND="net-libs/rb_libtorrent
|
|
dev-libs/boost
|
|
!net-libs/libtorrent"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_compile() {
|
|
cd "${S}"
|
|
cp "${FILESDIR}"/rb_libtorrent-python_setup.py ./setup.py
|
|
}
|