Magellan Linux

Contents of /trunk/core/parted/parted-1.8.8-r5.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10323 - (show annotations) (download)
Fri Jan 20 22:11:23 2012 UTC (12 years, 8 months ago) by niro
File size: 828 byte(s)
-disabled src_check - fixme
1 # $Id$
2
3 PNAME="parted"
4 PVER="1.8.8"
5 PBUILD="r5"
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.bz2"
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}"
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 }