blob: 6a3728b5fd54587e5e1d5baf6a4888687f8c2409 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/gi-detect/gi-detect-0.1.ebuild,v 1.6 2004/06/24 23:03:56 agriffis Exp $
DESCRIPTION="Python interface to detect."
HOMEPAGE="http://sourceforge.net/projects/linbrew/"
SRC_URI="mirror://sourceforge/linbrew/GI_Detect-0.1.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND="sys-apps/discover
sys-libs/detect"
S="${WORKDIR}/GI_Detect-0.1"
src_compile() {
python setup.py build || die
}
src_install () {
python setup.py install --root=${D} --prefix=/usr || die
dodoc API INSTALL example.py
}
|