blob: afc2f05c289dfe16e19f6baccf2b9783f3180991 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-1.6.15.ebuild,v 1.3 2004/10/12 03:33:59 tgall Exp $
inherit eutils gnuconfig
DESCRIPTION="Create, destroy, resize, check, copy partitions and file systems"
HOMEPAGE="http://www.gnu.org/software/parted"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz
mirror://gentoo/${PF}-gentoo.tar.bz2
mirror://gentoo/${P}.tar.gz
http://dev.gentoo.org/~lu_zero/distfiles/${PF}-gentoo.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ppc ~alpha hppa ~amd64 ~ia64 ppc64"
IUSE="nls static readline debug"
DEPEND=">=sys-fs/e2fsprogs-1.27
>=sys-libs/ncurses-5.2
nls? ( sys-devel/gettext )
readline? ( >=sys-libs/readline-4.1-r4 )"
PATCHDIR=${WORKDIR}/patches
src_unpack() {
unpack ${A}
cd ${S}
EPATCH_SUFFIX="patch" epatch ${PATCHDIR}
gnuconfig_update
autoconf
}
src_compile() {
econf \
`use_with readline` \
`use_enable nls` \
`use_enable debug` \
`use_enable static all-static` \
--disable-Werror \
--target=${CHOST} ${myconf} || die "Configure failed"
emake || die "Make failed"
}
src_install() {
einstall || die "Install failed"
dodoc ABOUT-NLS AUTHORS BUGS COPYING ChangeLog \
INSTALL NEWS README THANKS TODO
docinto doc; cd doc
dodoc API FAQ FAT USER.jp
}
|