2 # Copyright (C) 2006 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
:=06f7806782e357797fad1d34b7ced0c6
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
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
/tune2fs
76 $(call Package
/e2fsprogs
)
77 TITLE
:=Ext2 Filesystem tune utility
81 define Package
/resize2fs
82 $(call Package
/e2fsprogs
)
83 TITLE
:=Ext2 Filesystem resize utility
92 --enable-dynamic-e2fsck
95 $(call Build
/Prepare
/Default
)
96 $(CP
) $(SCRIPT_DIR
)/config.
{guess
,sub
} $(PKG_BUILD_DIR
)/config
/
100 $(MAKE
) -C
$(PKG_BUILD_DIR
)/util \
101 BUILDCC
="$(HOSTCC)" \
106 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
107 BUILDCC
="$(HOSTCC)" \
108 DESTDIR
="$(PKG_INSTALL_DIR)" \
112 define Build
/InstallDev
113 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
114 BUILDCC
="$(HOSTCC)" \
119 define Package
/e2fsprogs
/install
120 $(INSTALL_DIR
) $(1)/usr
/sbin
121 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/sbin
/e2fsck
$(1)/usr
/sbin
/
122 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/sbin
/mke2fs
$(1)/usr
/sbin
/
123 ln
-sf mke2fs
$(1)/usr
/sbin
/mkfs.ext2
124 ln
-sf mke2fs
$(1)/usr
/sbin
/mkfs.ext3
125 $(INSTALL_DIR
) $(1)/usr
/lib
126 $(CP
) $(foreach lib
,com_err e2p ext2fs
,$(PKG_INSTALL_DIR
)/usr
/lib
/lib
$(lib
).so.
*) $(1)/usr
/lib
/
129 define Package
/libuuid
/install
130 $(INSTALL_DIR
) $(1)/usr
/lib
131 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/libuuid.so.
* $(1)/usr
/lib
/
134 define Package
/uuidgen
/install
135 $(INSTALL_DIR
) $(1)/usr
/bin
136 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/bin
/uuidgen
$(1)/usr
/bin
/
139 define Package
/libblkid
/install
140 $(INSTALL_DIR
) $(1)/usr
/lib
141 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/libblkid.so.
* $(1)/usr
/lib
/
144 define Package
/tune2fs
/install
145 $(INSTALL_DIR
) $(1)/usr
/sbin
146 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/sbin
/tune2fs
$(1)/usr
/sbin
/
149 define Package
/resize2fs
/install
150 $(INSTALL_DIR
) $(1)/usr
/sbin
151 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/sbin
/resize2fs
$(1)/usr
/sbin
/
154 $(eval
$(call BuildPackage
,e2fsprogs
))
155 $(eval
$(call BuildPackage
,libuuid
))
156 $(eval
$(call BuildPackage
,uuidgen
))
157 $(eval
$(call BuildPackage
,libblkid
))
158 $(eval
$(call BuildPackage
,tune2fs
))
159 $(eval
$(call BuildPackage
,resize2fs
))