Package libblkid from e2fsprogs
[openwrt/svn-archive/archive.git] / package / e2fsprogs / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=e2fsprogs
12 PKG_VERSION:=1.39
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/e2fsprogs
17 PKG_MD5SUM:=06f7806782e357797fad1d34b7ced0c6
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/e2fsprogs
22 SECTION:=utils
23 CATEGORY:=Utilities
24 TITLE:=Ext2/3 filesystem utilities
25 DEPENDS:=+libuuid
26 DESCRIPTION:=\
27 This package contains essential ext2 filesystem utilities which consists of \\\
28 e2fsck, mke2fs, debugfs, dumpe2fs, tune2fs, and most of the other core ext2 \\\
29 filesystem utilities.
30 endef
31
32 define Package/libuuid
33 SECTION:=libs
34 CATEGORY:=Libraries
35 TITLE:=DCE compatible Universally Unique Identifier library
36 DESCRIPTION:=\
37 Library for generating DCE compatible Universally Unique Identifiers
38 URL:=http://e2fsprogs.sourceforge.net/
39 endef
40
41 define Package/libblkid
42 SECTION:=libs
43 CATEGORY:=Libraries
44 TITLE:=block device id library
45 DESCRIPTION:=\
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/
49 endef
50
51 define Package/tune2fs
52 $(call Package/e2fsprogs)
53 TITLE:=Ext2 Filesystem tune utility
54 DESCRIPTION:=Ext2 Filesystem tune utility
55 DEPENDS:=e2fsprogs
56 endef
57
58 define Package/resize2fs
59 $(call Package/e2fsprogs)
60 TITLE:=Ext2 Filesystem resize utility
61 DESCRIPTION:=Ext2 Filesystem resize utility
62 DEPENDS:=e2fsprogs
63 endef
64
65 CONFIGURE_ARGS += \
66 --enable-shared \
67 --enable-static \
68 --disable-rpath \
69 --enable-elf-shlibs \
70 --enable-dynamic-e2fsck
71
72 define Build/Compile
73 $(MAKE) -C $(PKG_BUILD_DIR)/util \
74 BUILDCC="$(HOSTCC)" \
75 CFLAGS="" \
76 CPPFLAGS="" \
77 LDFLAGS="" \
78 subst
79 $(MAKE) -C $(PKG_BUILD_DIR) \
80 BUILDCC="$(HOSTCC)" \
81 DESTDIR="$(PKG_INSTALL_DIR)" \
82 all install
83 endef
84
85 define Build/InstallDev
86 $(MAKE) -C $(PKG_BUILD_DIR) \
87 BUILDCC="$(HOSTCC)" \
88 DESTDIR="$(STAGING_DIR)" \
89 install-libs
90 endef
91
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/
100 endef
101
102 define Package/libuuid/install
103 $(INSTALL_DIR) $(1)/usr/lib
104 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libuuid.so.* $(1)/usr/lib/
105 endef
106
107 define Package/libblkid/install
108 $(INSTALL_DIR) $(1)/usr/lib/
109 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libblkid.so.* $(1)/usr/lib/
110 endef
111
112 define Package/tune2fs/install
113 $(INSTALL_DIR) $(1)/usr/sbin
114 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/tune2fs $(1)/usr/sbin/
115 endef
116
117 define Package/resize2fs/install
118 $(INSTALL_DIR) $(1)/usr/sbin
119 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/resize2fs $(1)/usr/sbin/
120 endef
121
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))