Magellan Linux

Contents of /branches/magellan-next/core/parted/parted-1.8.8-r5.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8326 - (show annotations) (download)
Thu Jul 14 20:29:23 2011 UTC (12 years, 10 months ago) by niro
File size: 813 byte(s)
auto added: ver bump to 1.8.8-r5
1 # $Id$
2
3 PNAME="parted"
4 PVER="1.8.8"
5 PBUILD="r5"
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-libs/readline-6.2
14 >= sys-fs/e2fsprogs-1.41
15 >= sys-fs/device-mapper-2.02.85"
16
17 SDEPEND=">= sys-dev/gettext-0.18"
18
19 SRCFILE="${PNAME}-${PVER}.tar.bz2"
20 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
21
22 sminclude mbuild
23
24 SRC_URI=(
25 gnu://${PNAME}/${SRCFILE}
26 mirror://${PNAME}/${SRCFILE}
27 )
28
29 UP2DATE="updatecmd_gnu ${PNAME}"
30
31 src_compile()
32 {
33 cd ${SRCDIR}
34
35 mconfigure \
36 --with-readline \
37 --enable-nls \
38 --enable-device-mapper \
39 --disable-selinux \
40 --disable-rpath \
41 --disable-Werror \
42 || die
43
44 mmake || die
45 }