treewide: add support for "gc-sections" in PKG_BUILD_FLAGS
[openwrt/staging/dedeckeh.git] / package / utils / e2fsprogs / Makefile
1 #
2 # Copyright (C) 2006-2014 OpenWrt.org
3 # Copyright 2010 Vertical Communications
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=e2fsprogs
11 PKG_VERSION:=1.47.0
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
15 PKG_SOURCE_URL:=@KERNEL/linux/kernel/people/tytso/e2fsprogs/v$(PKG_VERSION)/
16 PKG_HASH:=144af53f2bbd921cef6f8bea88bb9faddca865da3fbc657cc9b4d2001097d5db
17
18 PKG_LICENSE:=GPL-2.0
19 PKG_LICENSE_FILES:=NOTICE
20 PKG_CPE_ID:=cpe:/a:e2fsprogs_project:e2fsprogs
21
22 PKG_BUILD_DEPENDS:=util-linux e2fsprogs/host
23 PKG_INSTALL:=1
24
25 PKG_BUILD_PARALLEL:=1
26 PKG_BUILD_FLAGS:=gc-sections
27
28 include $(INCLUDE_DIR)/package.mk
29 include $(INCLUDE_DIR)/host-build.mk
30
31 define Package/e2fsprogs
32 SECTION:=utils
33 CATEGORY:=Utilities
34 SUBMENU:=Filesystem
35 TITLE:=Ext2/3/4 filesystem utilities
36 URL:=http://e2fsprogs.sourceforge.net/
37 DEPENDS:=+libuuid +libext2fs
38 endef
39
40 define Package/e2fsprogs/description
41 This package contains essential ext2 filesystem utilities which consists of
42 e2fsck, mke2fs and most of the other core ext2 filesystem utilities.
43 endef
44
45 define Package/libext2fs
46 SECTION:=libs
47 CATEGORY:=Libraries
48 TITLE:=ext2/3/4 filesystem library
49 URL:=http://e2fsprogs.sourceforge.net/
50 DEPENDS:=+libuuid +libblkid +libss +libcomerr
51 ABI_VERSION:=2
52 endef
53
54 define Package/libext2fs/description
55 libext2fs is a library which can access ext2, ext3 and ext4 filesystems.
56 endef
57
58 define Package/libss
59 SECTION:=libs
60 CATEGORY:=Libraries
61 TITLE:=command-line interface parsing library
62 URL:=http://e2fsprogs.sourceforge.net/
63 DEPENDS:=+libcomerr
64 ABI_VERSION:=2
65 endef
66
67 define Package/libss/description
68 This pacakge contains libss, a command-line interface parsing library
69 bundled with e2fsprogs.
70 endef
71
72 define Package/libcomerr
73 SECTION:=libs
74 CATEGORY:=Libraries
75 TITLE:=common error description library
76 URL:=http://e2fsprogs.sourceforge.net/
77 DEPENDS:=+libuuid
78 ABI_VERSION:=0
79 endef
80
81 define Package/libcomerr/description
82 This package contains libcom_err, the common error description library
83 bundled with e2fsprogs.
84 endef
85
86 define Package/tune2fs
87 $(call Package/e2fsprogs)
88 TITLE:=Ext2 Filesystem tune utility
89 DEPENDS:= +e2fsprogs
90 endef
91
92 define Package/resize2fs
93 $(call Package/e2fsprogs)
94 TITLE:=Ext2 Filesystem resize utility
95 DEPENDS:= +e2fsprogs
96 endef
97
98 define Package/badblocks
99 $(call Package/e2fsprogs)
100 TITLE:=Ext2 Filesystem badblocks utility
101 DEPENDS:= +e2fsprogs
102 endef
103
104 define Package/dumpe2fs
105 $(call Package/e2fsprogs)
106 TITLE:=Ext2 Filesystem information dumping utility
107 DEPENDS:= +e2fsprogs
108 endef
109
110 define Package/e2freefrag
111 $(call Package/e2fsprogs)
112 TITLE:=Ext2 Filesystem free space fragmentation information utility
113 DEPENDS:= +e2fsprogs
114 endef
115
116 define Package/e4crypt
117 $(call Package/e2fsprogs)
118 TITLE:=Ext4 Filesystem encryption utility
119 DEPENDS:= +e2fsprogs
120 endef
121
122 define Package/filefrag
123 $(call Package/e2fsprogs)
124 TITLE:=Ext2 Filesystem file fragmentation report utility
125 DEPENDS:= +e2fsprogs
126 endef
127
128 define Package/debugfs
129 $(call Package/e2fsprogs)
130 TITLE:=Ext2 Filesystem debugger
131 DEPENDS:= +e2fsprogs
132 endef
133
134 define Package/chattr
135 $(call Package/e2fsprogs)
136 TITLE:=Ext2 Filesystem chattr utility
137 DEPENDS:= +e2fsprogs
138 endef
139
140 define Package/lsattr
141 $(call Package/e2fsprogs)
142 TITLE:=Ext2 Filesystem lsattr utility
143 DEPENDS:= +e2fsprogs
144 endef
145
146 TARGET_CFLAGS += $(FPIC) -flto
147
148 TARGET_LDFLAGS += -flto
149
150 CONFIGURE_ARGS += \
151 --disable-testio-debug \
152 --enable-elf-shlibs \
153 --disable-libuuid \
154 --disable-libblkid \
155 --disable-uuidd \
156 --disable-tls \
157 --disable-nls \
158 --disable-rpath \
159 --disable-fuse2fs
160
161 define Build/Prepare
162 $(call Build/Prepare/Default)
163 $(CP) $(SCRIPT_DIR)/config.{guess,sub} $(PKG_BUILD_DIR)/config/
164 endef
165
166 define Build/Compile
167 +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR)/util \
168 BUILDCC="$(HOSTCC)" \
169 CFLAGS="" \
170 CPPFLAGS="" \
171 LDFLAGS="" \
172 V=$(if $(findstring c,$(OPENWRT_VERBOSE)),1,) \
173 subst
174 +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
175 BUILDCC="$(HOSTCC)" \
176 DESTDIR="$(PKG_INSTALL_DIR)" \
177 ELF_OTHER_LIBS="$(TARGET_LDFLAGS) -luuid" \
178 SYSLIBS="$(TARGET_LDFLAGS) -ldl -L$(PKG_BUILD_DIR)/lib/ -l:libcom_err.so.0.0" \
179 V=$(if $(findstring c,$(OPENWRT_VERBOSE)),1,) \
180 all
181 endef
182
183 define Build/InstallDev
184 $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
185 $(CP) $(PKG_BUILD_DIR)/lib/ext2fs/ext2fs.pc $(1)/usr/lib/pkgconfig
186 $(CP) $(PKG_BUILD_DIR)/lib/et/com_err.pc $(1)/usr/lib/pkgconfig
187
188 $(INSTALL_DIR) $(1)/usr/lib
189 $(CP) $(PKG_BUILD_DIR)/lib/libext2fs.{so,a}* $(1)/usr/lib
190 $(CP) $(PKG_BUILD_DIR)/lib/libcom_err.{so,a}* $(1)/usr/lib
191 $(CP) $(PKG_BUILD_DIR)/lib/libss.{so,a}* $(1)/usr/lib
192
193 $(INSTALL_DIR) $(1)/usr/include/ext2fs
194 $(CP) $(PKG_BUILD_DIR)/lib/ext2fs/*.h $(1)/usr/include/ext2fs
195 $(INSTALL_DIR) $(1)/usr/include/et
196 $(INSTALL_BIN) $(PKG_BUILD_DIR)/lib/et/*.h $(1)/usr/include/et
197 # Apparently there is some confusion
198 echo "#include <et/com_err.h>" > $(1)/usr/include/com_err.h
199 $(INSTALL_DIR) $(1)/usr/include/ss
200 $(CP) \
201 $(PKG_BUILD_DIR)/lib/ss/ss.h \
202 $(PKG_BUILD_DIR)/lib/ss/ss_err.h \
203 $(1)/usr/include/ss/
204 endef
205
206 define Host/Compile
207 $(MAKE) $(PKG_JOBS) -C $(HOST_BUILD_DIR)/lib/ss mk_cmds
208 $(MAKE) $(PKG_JOBS) -C $(HOST_BUILD_DIR)/lib/et compile_et
209 endef
210
211 define Host/Install
212 $(INSTALL_DIR) $(1)/share/et
213 $(CP) $(HOST_BUILD_DIR)/lib/et/et_[ch].awk $(1)/share/et/
214 $(INSTALL_DIR) $(1)/share/ss
215 $(CP) $(HOST_BUILD_DIR)/lib/ss/ct_c.{sed,awk} $(1)/share/ss/
216 $(INSTALL_DIR) $(1)/bin
217 $(CP) \
218 $(HOST_BUILD_DIR)/lib/et/compile_et \
219 $(HOST_BUILD_DIR)/lib/ss/mk_cmds \
220 $(1)/bin/
221 endef
222
223 define Package/e2fsprogs/conffiles
224 /etc/e2fsck.conf
225 endef
226
227 define Package/e2fsprogs/install
228 $(INSTALL_DIR) $(1)/usr/sbin
229 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/e2fsck $(1)/usr/sbin/
230 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/mke2fs $(1)/usr/sbin/
231 $(LN) mke2fs $(1)/usr/sbin/mkfs.ext2
232 $(LN) mke2fs $(1)/usr/sbin/mkfs.ext3
233 $(LN) mke2fs $(1)/usr/sbin/mkfs.ext4
234 $(LN) e2fsck $(1)/usr/sbin/fsck.ext2
235 $(LN) e2fsck $(1)/usr/sbin/fsck.ext3
236 $(LN) e2fsck $(1)/usr/sbin/fsck.ext4
237 $(INSTALL_DIR) $(1)/usr/lib
238 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libe2p.so.* $(1)/usr/lib/
239 $(INSTALL_DIR) $(1)/etc/init.d
240 $(INSTALL_DIR) $(1)/lib/functions/fsck
241 $(INSTALL_DATA) ./files/e2fsck.sh $(1)/lib/functions/fsck/
242 $(INSTALL_DATA) ./files/e2fsck.conf $(1)/etc/e2fsck.conf
243 endef
244
245 define Package/libcomerr/install
246 $(INSTALL_DIR) $(1)/usr/lib
247 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcom_err.so.* $(1)/usr/lib/
248 endef
249
250 define Package/libss/install
251 $(INSTALL_DIR) $(1)/usr/lib
252 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libss.so.* $(1)/usr/lib/
253 endef
254
255 define Package/libext2fs/install
256 $(INSTALL_DIR) $(1)/usr/lib
257 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libext2fs.so.* $(1)/usr/lib/
258 endef
259
260 define Package/libext2fs/install_lib
261 $(INSTALL_DIR) $(1)/usr/lib
262 $(CP) $(PKG_BUILD_DIR)/lib/ext2fs/libext2fs.a $(1)/usr/lib/libext2fs_pic.a
263 endef
264
265 define Package/tune2fs/install
266 $(INSTALL_DIR) $(1)/usr/sbin
267 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/tune2fs $(1)/usr/sbin/
268 $(LN) tune2fs $(1)/usr/sbin/findfs
269 endef
270
271 define Package/resize2fs/install
272 $(INSTALL_DIR) $(1)/usr/sbin
273 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/resize2fs $(1)/usr/sbin/
274 endef
275
276 define Package/badblocks/install
277 $(INSTALL_DIR) $(1)/usr/sbin
278 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/badblocks $(1)/usr/sbin/
279 endef
280
281 define Package/dumpe2fs/install
282 $(INSTALL_DIR) $(1)/usr/sbin
283 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/dumpe2fs $(1)/usr/sbin/
284 endef
285
286 define Package/e2freefrag/install
287 $(INSTALL_DIR) $(1)/usr/sbin
288 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/e2freefrag $(1)/usr/sbin/
289 endef
290
291 define Package/e4crypt/install
292 $(INSTALL_DIR) $(1)/usr/sbin
293 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/e4crypt $(1)/usr/sbin/
294 endef
295
296 define Package/filefrag/install
297 $(INSTALL_DIR) $(1)/usr/sbin
298 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/filefrag $(1)/usr/sbin/
299 endef
300
301 define Package/debugfs/install
302 $(INSTALL_DIR) $(1)/usr/sbin
303 $(INSTALL_DIR) $(1)/usr/lib
304 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/debugfs $(1)/usr/sbin/
305 endef
306
307 define Package/chattr/install
308 $(INSTALL_DIR) $(1)/usr/bin
309 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/chattr $(1)/usr/bin/
310 endef
311
312 define Package/lsattr/install
313 $(INSTALL_DIR) $(1)/usr/bin
314 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/lsattr $(1)/usr/bin/
315 endef
316
317 $(eval $(call BuildPackage,libcomerr))
318 $(eval $(call BuildPackage,libss))
319 $(eval $(call BuildPackage,libext2fs))
320 $(eval $(call BuildPackage,e2fsprogs))
321 $(eval $(call BuildPackage,tune2fs))
322 $(eval $(call BuildPackage,resize2fs))
323 $(eval $(call BuildPackage,badblocks))
324 $(eval $(call BuildPackage,dumpe2fs))
325 $(eval $(call BuildPackage,e2freefrag))
326 $(eval $(call BuildPackage,e4crypt))
327 $(eval $(call BuildPackage,filefrag))
328 $(eval $(call BuildPackage,debugfs))
329 $(eval $(call BuildPackage,chattr))
330 $(eval $(call BuildPackage,lsattr))
331 $(eval $(call HostBuild))