2 # Copyright (C) 2006-2008 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
9 include $(TOPDIR
)/rules.mk
15 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.gz
16 PKG_SOURCE_URL
:=@SF
/e2fsprogs
17 PKG_MD5SUM
:=004cea70d724fdc7f1a952dffe4c9db8
19 include $(INCLUDE_DIR
)/package.mk
21 define Package
/e2fsprogs
/Default
22 URL
:=http
://e2fsprogs.sourceforge.net
/
25 define Package
/e2fsprogs
26 $(call Package
/e2fsprogs
/Default
)
29 TITLE
:=Ext2
/3 filesystem utilities
30 DEPENDS
:=+libblkid
+libuuid
+libext2fs
33 define Package
/e2fsprogs
/description
34 This package contains essential ext2 filesystem utilities which consists of
35 e2fsck
, mke2fs
, debugfs
, dumpe2fs
, tune2fs
, and most of the other core ext2
39 define Package
/libuuid
40 $(call Package
/e2fsprogs
/Default
)
43 TITLE
:=DCE compatible Universally Unique Identifier library
46 define Package
/libuuid
/description
47 Library for generating DCE compatible Universally Unique Identifiers.
50 define Package
/uuidgen
51 $(call Package
/e2fsprogs
)
53 TITLE
:=Command line utility to create a new UUID value
56 define Package
/uuidgen
/description
57 uuidgen program creates a new universally unique identifier
(UUID
)
58 using the libuuid library. The new UUID can reasonably be considered
59 unique among
all UUIDs created on the local system
, and among UUIDs
60 created on other systems in the past and in the future.
63 define Package
/libblkid
64 $(call Package
/e2fsprogs
/Default
)
67 TITLE
:=block device id library
70 define Package
/libblkid
/description
71 The blkid library which allows system programs like fsck and mount to
72 quickly and easily find block devices by filesystem UUID and LABEL.
75 define Package
/libext2fs
76 $(call Package
/e2fsprogs
/Default
)
79 TITLE
:=ext2
/ext3 filesystem library
82 define Package
/libext2fs
/description
83 libext2fs is a library which can access ext2 and ext3 filesystems.
86 define Package
/tune2fs
87 $(call Package
/e2fsprogs
)
88 TITLE
:=Ext2 Filesystem tune utility
92 define Package
/resize2fs
93 $(call Package
/e2fsprogs
)
94 TITLE
:=Ext2 Filesystem resize utility
98 define Package
/badblocks
99 $(call Package
/e2fsprogs
)
100 TITLE
:=Ext2 Filesystem badblocks utility
108 --enable-elf-shlibs \
109 --enable-dynamic-e2fsck \
113 $(call Build
/Prepare
/Default
)
114 $(CP
) $(SCRIPT_DIR
)/config.
{guess
,sub
} $(PKG_BUILD_DIR
)/config
/
118 $(MAKE
) -C
$(PKG_BUILD_DIR
)/util \
119 BUILDCC
="$(HOSTCC)" \
124 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
125 BUILDCC
="$(HOSTCC)" \
126 DESTDIR
="$(PKG_INSTALL_DIR)" \
130 define Build
/InstallDev
131 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
132 BUILDCC
="$(HOSTCC)" \
135 $(MAKE
) -C
$(PKG_BUILD_DIR
)/lib
/ext2fs \
136 BUILDCC
="$(HOSTCC)" \
141 define Package
/e2fsprogs
/install
142 $(INSTALL_DIR
) $(1)/usr
/sbin
143 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/sbin
/e2fsck
$(1)/usr
/sbin
/
144 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/sbin
/mke2fs
$(1)/usr
/sbin
/
145 ln
-sf mke2fs
$(1)/usr
/sbin
/mkfs.ext2
146 ln
-sf mke2fs
$(1)/usr
/sbin
/mkfs.ext3
147 $(INSTALL_DIR
) $(1)/usr
/lib
148 $(CP
) $(foreach lib
,com_err e2p
,$(PKG_INSTALL_DIR
)/usr
/lib
/lib
$(lib
).so.
*) $(1)/usr
/lib
/
151 define Package
/libuuid
/install
152 $(INSTALL_DIR
) $(1)/usr
/lib
153 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/libuuid.so.
* $(1)/usr
/lib
/
156 define Package
/uuidgen
/install
157 $(INSTALL_DIR
) $(1)/usr
/bin
158 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/bin
/uuidgen
$(1)/usr
/bin
/
161 define Package
/libblkid
/install
162 $(INSTALL_DIR
) $(1)/usr
/lib
163 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/libblkid.so.
* $(1)/usr
/lib
/
166 define Package
/libext2fs
/install
167 $(INSTALL_DIR
) $(1)/usr
/lib
168 $(INSTALL_DATA
) $(PKG_INSTALL_DIR
)/usr
/lib
/libext2fs.so
* $(1)/usr
/lib
/
171 define Package
/tune2fs
/install
172 $(INSTALL_DIR
) $(1)/usr
/sbin
173 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/sbin
/tune2fs
$(1)/usr
/sbin
/
176 define Package
/resize2fs
/install
177 $(INSTALL_DIR
) $(1)/usr
/sbin
178 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/sbin
/resize2fs
$(1)/usr
/sbin
/
181 define Package
/badblocks
/install
182 $(INSTALL_DIR
) $(1)/usr
/sbin
183 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/sbin
/badblocks
$(1)/usr
/sbin
/
186 $(eval
$(call BuildPackage
,e2fsprogs
))
187 $(eval
$(call BuildPackage
,libuuid
))
188 $(eval
$(call BuildPackage
,uuidgen
))
189 $(eval
$(call BuildPackage
,libblkid
))
190 $(eval
$(call BuildPackage
,libext2fs
))
191 $(eval
$(call BuildPackage
,tune2fs
))
192 $(eval
$(call BuildPackage
,resize2fs
))
193 $(eval
$(call BuildPackage
,badblocks
))