Magellan Linux

Contents of /smage/branches/alx-0_6_0/core/parted/parted-1.8.8-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3196 - (show annotations) (download)
Tue Sep 13 15:44:57 2011 UTC (12 years, 9 months ago) by niro
File size: 728 byte(s)
auto added: ver bump to 1.8.8-r1
1 # $Id$
2
3 PNAME="parted"
4 PVER="1.8.8"
5 PBUILD="r1"
6
7 PCATEGORIE="sys-fs"
8
9 DESCRIPTION="parted is useful for creating space for new operating systems, reorganising disk usage, copying data on hard disks and disk imaging."
10 HOMEPAGE="http://www.gnu.org/software/parted/"
11
12 DEPEND=">= sys-libs/ncurses-5.9
13 >= sys-fs/e2fsprogs-1.41"
14
15 SRCFILE="${PNAME}-${PVER}.tar.bz2"
16 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17
18 sminclude mbuild alx
19
20 SRC_URI=(
21 gnu://${PNAME}/${SRCFILE}
22 mirror://${PNAME}/${SRCFILE}
23 )
24
25 UP2DATE="updatecmd_gnu ${PNAME}"
26
27 src_compile()
28 {
29 cd ${SRCDIR}
30
31 mconfigure \
32 --without-readline \
33 --disable-nls \
34 --disable-device-mapper \
35 --disable-selinux \
36 --disable-rpath \
37 --disable-Werror \
38 || die
39
40 mmake || die
41 }