Magellan Linux

Annotation of /trunk/core/parted/parted-3.2-r4.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 32000 - (hide annotations) (download)
Tue Feb 12 12:41:47 2019 UTC (5 years, 2 months ago) by niro
File size: 881 byte(s)
auto added: ver bump to 3.2-r4
1 niro 32000 # $Id$
2    
3     PNAME="parted"
4     PVER="3.2"
5     PBUILD="r4"
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-6.1
13     >= sys-libs/readline-8.0
14     >= sys-libs/libblkid-2.27
15     >= sys-libs/libuuid-2.27
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     }