From 5ced92e9b1899ae9bd7e650ccc391ee9478ff8f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Sandstr=C3=B6m?= Date: Tue, 1 Jul 2008 23:32:14 +0200 Subject: [PATCH] Add an ebuild to fetch the latest sources from repo.or.cz MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lukas Sandström --- .../dev-python/pyfprint/pyfprint-9999.ebuild | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 gentoo/dev-python/pyfprint/pyfprint-9999.ebuild diff --git a/gentoo/dev-python/pyfprint/pyfprint-9999.ebuild b/gentoo/dev-python/pyfprint/pyfprint-9999.ebuild new file mode 100644 index 0000000..321bd26 --- /dev/null +++ b/gentoo/dev-python/pyfprint/pyfprint-9999.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=0 + +EGIT_REPO_URI="git://repo.or.cz/pyfprint.git" +EGIT_BRANCH="master" + +NEED_PYTHON=2.3 + +inherit eutils distutils git + +DESCRIPTION="Python bindings for the libfprint fingerprinting library." +HOMEPAGE="http://repo.or.cz/w/pyfprint.git" +SRC_URI="" + +LICENSE="LGPL-2" + +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" #docs +PYTHON_MODNAME="pyfprint" + +DEPEND=">=dev-lang/swig-1.3.34 + media-libs/libfprint" + +RDEPEND="media-libs/libfprint" + +src_unpack() { + git_src_unpack + cd ${S} +}