Magellan Linux

Contents of /trunk/core/parted/parted-3.1-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 13072 - (show annotations) (download)
Tue Aug 21 18:10:34 2012 UTC (11 years, 9 months ago) by niro
File size: 828 byte(s)
auto added: ver bump to 3.1-r1
1 # $Id$
2
3 PNAME="parted"
4 PVER="3.1"
5 PBUILD="r1"
6
7 PCAT="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.xz"
20 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
21
22 sminclude mbuild
23 msetfeature "!check"
24
25 SRC_URI=(
26 gnu://${PNAME}/${SRCFILE}
27 mirror://${PNAME}/${SRCFILE}
28 )
29
30 UP2DATE="updatecmd_gnu ${PNAME} xz"
31
32 src_compile()
33 {
34 cd ${SRCDIR}
35
36 mconfigure \
37 --with-readline \
38 --enable-nls \
39 --enable-device-mapper \
40 --disable-selinux \
41 --disable-rpath \
42 --disable-Werror \
43 || die
44
45 mmake || die
46 }