xfsprogs: disable blkid support to fix build errors
[openwrt.git] / package / utils / xfsprogs / Makefile
1
2 # Copyright (C) 2006-2012 OpenWrt.org
3 #
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:=xfsprogs
11 PKG_RELEASE:=1
12 PKG_VERSION:=3.1.7
13 PKG_SOURCE_URL:=ftp://oss.sgi.com/projects/xfs/previous/
14 PKG_MD5SUM:=049cf9873794ea49d0bb3f12d45748a4
15
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
17 PKG_INSTALL:=1
18 PKG_FIXUP:=autoreconf
19
20 include $(INCLUDE_DIR)/package.mk
21 include $(INCLUDE_DIR)/nls.mk
22
23 define Package/xfsprogs/default
24   SECTION:=utils
25   CATEGORY:=Utilities
26   DEPENDS:=+libuuid +libpthread +librt
27   URL:=http://oss.sgi.com/projects/xfs
28 endef
29
30 define Package/xfs-mkfs
31 $(call Package/xfsprogs/default)
32   TITLE:=Utility for creating XFS filesystems
33 endef
34
35 define Package/xfs-fsck
36 $(call Package/xfsprogs/default)
37   TITLE:=Utilities for checking and repairing XFS filesystems
38 endef
39
40 define Package/xfs-growfs
41 $(call Package/xfsprogs/default)
42   TITLE:=Utility for increasing the size of XFS filesystems
43 endef
44
45 CONFIGURE_ARGS += \
46         --enable-gettext=no \
47         --enable-lib64=no \
48         --enable-blkid=no
49
50 TARGET_CFLAGS += \
51         -I$(STAGING_DIR)/usr/include \
52         -D_LARGEFILE64_SOURCE \
53         -D_FILE_OFFSET_BITS=64 \
54         -D_GNU_SOURCE
55
56 MAKE_FLAGS += \
57         DEBUG= Q= \
58         PCFLAGS="-Wall" \
59         PKG_PLATFORM=linux \
60         ENABLE_GETTEXT=no \
61         prefix=$(PKG_INSTALL_DIR)/usr \
62         exec_prefix=$(PKG_INSTALL_DIR)/usr \
63         PKG_SBIN_DIR=$(PKG_INSTALL_DIR)/usr/sbin \
64         PKG_ROOT_SBIN_DIR=$(PKG_INSTALL_DIR)/sbin \
65         PKG_MAN_DIR=$(PKG_INSTALL_DIR)/usr/man \
66         PKG_LOCALE_DIR=$(PKG_INSTALL_DIR)/usr/share/locale \
67         PKG_ROOT_LIB_DIR=$(PKG_INSTALL_DIR)/lib \
68         PKG_DOC_DIR=$(PKG_INSTALL_DIR)/usr/share/doc/xfsprogs
69
70 define Package/xfs-mkfs/install
71         mkdir -p $(1)/sbin
72         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/mkfs.xfs $(1)/sbin
73 endef
74
75 define Package/xfs-fsck/install
76         mkdir -p $(1)/sbin
77         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/xfs_repair $(1)/sbin
78         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/xfs_db $(1)/sbin
79 endef
80
81 define Package/xfs-growfs/install
82         mkdir -p $(1)/sbin
83         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/xfs_growfs $(1)/sbin
84 endef
85
86 $(eval $(call BuildPackage,xfs-mkfs))
87 $(eval $(call BuildPackage,xfs-fsck))
88 $(eval $(call BuildPackage,xfs-growfs))