Magellan Linux

Contents of /branches/R11-stable/core/parted/parted-3.2-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 22707 - (show annotations) (download)
Tue Oct 28 08:28:46 2014 UTC (9 years, 6 months ago) by niro
File size: 881 byte(s)
-release branches/R11-stable
1 # $Id$
2
3 PNAME="parted"
4 PVER="3.2"
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.3
14 >= sys-libs/libblkid-2.24
15 >= sys-libs/libuuid-2.24
16 >= sys-fs/e2fsprogs-1.42
17 >= sys-fs/device-mapper-2.02.85"
18
19 SDEPEND=">= sys-dev/gettext-0.18"
20
21 SRCFILE="${PNAME}-${PVER}.tar.xz"
22 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
23
24 sminclude mbuild
25 msetfeature "!check"
26
27 SRC_URI=(
28 gnu://${PNAME}/${SRCFILE}
29 mirror://${PNAME}/${SRCFILE}
30 )
31
32 UP2DATE="updatecmd_gnu ${PNAME} xz"
33
34 src_compile()
35 {
36 cd ${SRCDIR}
37
38 mconfigure \
39 --with-readline \
40 --enable-nls \
41 --enable-device-mapper \
42 --disable-selinux \
43 --disable-rpath \
44 --disable-Werror \
45 || die
46
47 mmake || die
48 }