]> git.ipfire.org Git - ipfire-3.x.git/blob - e2fsprogs/e2fsprogs.nm
ncurses: Refactor package.
[ipfire-3.x.git] / e2fsprogs / e2fsprogs.nm
1 ###############################################################################
2 # IPFire.org - An Open Source Firewall Solution #
3 # Copyright (C) - IPFire Development Team <info@ipfire.org> #
4 ###############################################################################
5
6 name = e2fsprogs
7 version = 1.41.11
8 release = 1
9
10 groups = System/Filesystems
11 url = http://e2fsprogs.sourceforge.net/
12 license = GPLv2
13 summary = Utilities for managing the extended (ext2/ext3/ext4) filesystems.
14
15 description
16 The e2fsprogs package contains a number of utilities for creating, \
17 checking, modifying, and correcting any inconsistencies in second \
18 and third extended (ext2/ext3) filesystems.
19 end
20
21 source_dl =
22
23 build
24 requires
25 libblkid-devel
26 libselinux-devel
27 libsepol-devel
28 libuuid-devel
29 end
30
31 prepare_cmds
32 mkdir -pv %{DIR_APP}/build
33
34 # Fix DT_TEXTREL in e2fsprogs libraries. --disable-shared and
35 # --with-pic are not options in E2fsprogs:
36 find lib/ -name Makefile.in -exec sed -i "s/\%{ALL_CFLAGS}/& -fPIC/" {} \;
37
38 # At run time libblkid looks for the BLKID_DEBUG environment variable to
39 # enable debbugging, with getenv(3). Some suid-root programs use libblkid,
40 # such as mount(1). e2fsprogs includes a safe_getenv() function, which calls
41 # __secure_getenv() from libc. __secure_getenv will restrict some environment
42 # variables if the user is suid or sgid. So, this command replaces getenv()
43 # with safe_getenv():
44 sed \
45 -e "s/getenv(\"BLKID_DEBUG\")/safe_getenv(\"BLKID_DEBUG\")/" \
46 -i lib/blkid/cache.c
47 end
48
49 build
50 cd build
51 ../configure \
52 --prefix=/usr \
53 --with-root-prefix="" \
54 --enable-elf-shlibs \
55 --disable-libblkid \
56 --disable-fsck \
57 --disable-uuidd \
58 --disable-libuuid
59
60 make %{PARALLELISMFLAGS}
61 end
62
63 test
64 cd build && make check
65 end
66
67 install
68 cd build
69 make install install-libs DESTDIR=%{BUILDROOT}
70
71 ln -svf ../../lib/libcom_err.so.2 %{BUILDROOT}/usr/lib/libcom_err.so
72 ln -svf ../../lib/libe2p.so.2 %{BUILDROOT}/usr/lib/libe2p.so
73 ln -svf ../../lib/libext2fs.so.2 %{BUILDROOT}/usr/lib/libext2fs.so
74 ln -svf ../../lib/libss.so.2 %{BUILDROOT}/usr/lib/libss.so
75 end
76 end
77
78 packages
79 package %{name}
80 groups += Base
81 end
82
83 package %{name}-devel
84 template DEVEL
85 end
86 end