blob: 4e39770e909bf8329f77b6a73558913f6b5556c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyparted/pyparted-1.6.6.ebuild,v 1.4 2004/06/12 21:52:30 dholm Exp $
RH_EXTRAVERSION="2"
inherit eutils rpm
DESCRIPTION="Python bindings for parted"
HOMEPAGE="http://fedora.redhat.com"
SRC_URI="http://download.fedora.redhat.com/pub/fedora/linux/core/development/SRPMS/${P}-${RH_EXTRAVERSION}.src.rpm"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc -*"
IUSE=""
# Needed to build...
DEPEND=">=sys-apps/parted-1.6.9"
src_unpack() {
rpm_src_unpack
}
src_compile() {
cd ${S}
# This is needed otherwise it won't build
# If anyone wants to figure out why... go ahead!
export LDFLAGS="-ldl"
econf || die
emake || die
}
src_install () {
einstall || die "Install failed!"
dodoc AUTHORS COPYING README ChangeLog
}
|