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
24 TITLE
:=Ext2
/3 filesystem utilities
27 This package contains essential ext2 filesystem utilities which consists of
\\\
28 e2fsck
, mke2fs
, debugfs
, dumpe2fs
, tune2fs
, and most of the other core ext2
\\\
32 define Package
/libuuid
35 TITLE
:=DCE compatible Universally Unique Identifier library
37 Library for generating DCE compatible Universally Unique Identifiers
38 URL
:=http
://e2fsprogs.sourceforge.net
/
41 define Package
/libblkid
44 TITLE
:=block device id library
46 The blkid library which allows system programs like fsck and mount to quickly
\\\
47 and easily find block devices by filesystem UUID and LABEL.
48 URL
:=http
://e2fsprogs.sourceforge.net
/
51 define Package
/tune2fs
52 $(call Package
/e2fsprogs
)
53 TITLE
:=Ext2 Filesystem tune utility
54 DESCRIPTION
:=Ext2 Filesystem tune utility
58 define Package
/resize2fs
59 $(call Package
/e2fsprogs
)
60 TITLE
:=Ext2 Filesystem resize utility
61 DESCRIPTION
:=Ext2 Filesystem resize utility
70 --enable-dynamic-e2fsck
73 $(MAKE
) -C
$(PKG_BUILD_DIR
)/util \
79 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
81 DESTDIR
="$(PKG_INSTALL_DIR)" \
85 define Build
/InstallDev
86 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
88 DESTDIR
="$(STAGING_DIR)" \
92 define Package
/e2fsprogs
/install
93 $(INSTALL_DIR
) $(1)/usr
/sbin
94 $(CP
) $(PKG_INSTALL_DIR
)/usr
/sbin
/e2fsck
$(1)/usr
/sbin
/
95 $(CP
) $(PKG_INSTALL_DIR
)/usr
/sbin
/mke2fs
$(1)/usr
/sbin
/
96 ln
-sf mke2fs
$(1)/usr
/sbin
/mkfs.ext2
97 ln
-sf mke2fs
$(1)/usr
/sbin
/mkfs.ext3
98 $(INSTALL_DIR
) $(1)/usr
/lib
99 $(CP
) $(foreach lib
,blkid com_err e2p ext2fs
,$(PKG_INSTALL_DIR
)/usr
/lib
/lib
$(lib
).so.
*) $(1)/usr
/lib
/
102 define Package
/libuuid
/install
103 $(INSTALL_DIR
) $(1)/usr
/lib
104 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/libuuid.so.
* $(1)/usr
/lib
/
107 define Package
/libblkid
/install
108 $(INSTALL_DIR
) $(1)/usr
/lib
/
109 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/libblkid.so.
* $(1)/usr
/lib
/
112 define Package
/tune2fs
/install
113 $(INSTALL_DIR
) $(1)/usr
/sbin
114 $(CP
) $(PKG_INSTALL_DIR
)/usr
/sbin
/tune2fs
$(1)/usr
/sbin
/
117 define Package
/resize2fs
/install
118 $(INSTALL_DIR
) $(1)/usr
/sbin
119 $(CP
) $(PKG_INSTALL_DIR
)/usr
/sbin
/resize2fs
$(1)/usr
/sbin
/
122 $(eval
$(call BuildPackage
,e2fsprogs
))
123 $(eval
$(call BuildPackage
,libuuid
))
124 $(eval
$(call BuildPackage
,libblkid
))
125 $(eval
$(call BuildPackage
,tune2fs
))
126 $(eval
$(call BuildPackage
,resize2fs
))