summaryrefslogtreecommitdiff
blob: 87fc8f5b8002191da51aaabe75d70e050d89d4cd (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Peter Gavin <pete@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-1.4.24.ebuild,v 1.2 2002/03/06 18:55:22 gbevin Exp $

S=${WORKDIR}/${P}
DESCRIPTION="An advanced partition modification system"
SRC_URI="ftp://ftp.gnu.org/gnu/${PN}/${P}.tar.gz
	ftp://gatekeeper.dec.com/pub/GNU/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.gnu.org/software/${PN}"

DEPEND="virtual/glibc
	>=sys-apps/e2fsprogs-1.19-r2
	readline? ( >=sys-libs/readline-4.1-r2 )
	nls? ( >=sys-devel/gettext-0.10.38 )
	python? ( >=dev-lang/python-2.0 )"


src_compile() {

	if [ "`use readline`" ]
	then
		myconf="${myconf} --with-readline"
	fi
	if [ "`use python`" ]
	then
		myconf="${myconf} --with-python"
	fi
	if [ -z "`use nls`" ]
	then
		myconf="${myconf} --disable-nls"
	fi
	
	./configure --prefix=/usr \
		--target=${CHOST} \
		${myconf} || die
		
	emake || die
}

src_install() {

	make DESTDIR=${D} install || die
	
	if [ -z "`use bootcd`" ]
	then
		dodoc ABOUT-NLS AUTHORS BUGS COPYING ChangeLog NEWS README THANKS TODO
		cd doc ; docinto doc
		dodoc API COPYING.DOC FAT USER USER.jp
	else
		rm -rf ${D}/usr/share ${D}/usr/include ${D}/usr/lib/lib*.{a,la}
	fi
}