summaryrefslogtreecommitdiff
blob: 6da7367af753b6edd70cfea7c0d82495882b5e89 (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
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-1.4.24-r2.ebuild,v 1.2 2002/07/11 06:30:55 drobbins 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.27
	>=sys-libs/ncurses-5.2-r5
	readline? ( >=sys-libs/readline-4.1-r4 )
	nls? ()"

src_compile() {
	local myconf

	use readline	\
		&& myconf="${myconf} --with-readline"	\
		|| myconf="${myconf} --without-readline"

	use nls 	\
		&& myconf="${myconf} --enable-nls"	\
		|| myconf="${myconf} --disable-nls"

	./configure --prefix=/usr \
		--target=${CHOST} \
		--mandir=/usr/share/man \
		${myconf} || die
		
	emake || die
}

src_install() {

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