-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an ebuild to fetch the latest sources from repo.or.cz
Signed-off-by: Lukas Sandström <[email protected]>
- Loading branch information
Lukas Sandström
committed
Jul 2, 2008
1 parent
564bccd
commit 5ced92e
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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} | ||
} |