2 # Copyright (C) 2006-2007 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 all: $(if
$(DUMP
),dumpinfo
,compile
)
10 PKG_BUILD_DIR ?
= $(BUILD_DIR
)/$(PKG_NAME
)$(if
$(PKG_VERSION
),-$(PKG_VERSION
))
11 PKG_INSTALL_DIR ?
= $(PKG_BUILD_DIR
)/ipkg-install
14 include $(INCLUDE_DIR
)/prereq.mk
15 include $(INCLUDE_DIR
)/host.mk
16 include $(INCLUDE_DIR
)/unpack.mk
17 include $(INCLUDE_DIR
)/depends.mk
19 STAMP_PREPARED
=$(PKG_BUILD_DIR
)/.prepared
$(if
$(QUILT
)$(DUMP
),,_
$(shell $(call find_md5
,${CURDIR} $(PKG_FILE_DEPEND
),)))
20 STAMP_CONFIGURED
:=$(PKG_BUILD_DIR
)/.configured
21 STAMP_BUILT
:=$(PKG_BUILD_DIR
)/.built
22 STAMP_INSTALLED
:=$(STAGING_DIR
)/stamp
/.
$(PKG_NAME
)_installed
24 include $(INCLUDE_DIR
)/download.mk
25 include $(INCLUDE_DIR
)/quilt.mk
26 include $(INCLUDE_DIR
)/package-defaults.mk
27 include $(INCLUDE_DIR
)/package-dumpinfo.mk
28 include $(INCLUDE_DIR
)/package-ipkg.mk
29 include $(INCLUDE_DIR
)/package-bin.mk
32 export CONFIG_SITE
:=$(INCLUDE_DIR
)/site
/$(REAL_GNU_TARGET_NAME
)
34 ifeq ($(DUMP
)$(filter prereq
clean refresh update
,$(MAKECMDGOALS
)),)
35 ifneq ($(if
$(QUILT
),,$(CONFIG_AUTOREBUILD
)),)
36 define Build
/Autoclean
37 $(PKG_BUILD_DIR
)/.dep_files
: $(STAMP_PREPARED
)
38 $(call rdep
,${CURDIR} $(PKG_FILE_DEPEND
),$(STAMP_PREPARED
),$(PKG_BUILD_DIR
)/.dep_files
,-x
"*/.dep_*")
39 $(if
$(filter prepare
,$(MAKECMDGOALS
)),,$(call rdep
,$(PKG_BUILD_DIR
),$(STAMP_BUILT
),,-x
"*/.dep_*" -x
"*/ipkg*"))
44 define Download
/default
46 URL
:=$(PKG_SOURCE_URL
)
47 SUBDIR
:=$(PKG_SOURCE_SUBDIR
)
48 PROTO
:=$(PKG_SOURCE_PROTO
)
49 VERSION
:=$(PKG_SOURCE_VERSION
)
53 define Build
/DefaultTargets
54 $(if
$(QUILT
),$(Build
/Quilt
))
55 $(if
$(strip $(PKG_SOURCE_URL
)),$(call Download
,default
))
56 $(call Build
/Autoclean
)
59 @
-rm -rf
$(PKG_BUILD_DIR
)
60 @mkdir
-p
$(PKG_BUILD_DIR
)
64 $(STAMP_CONFIGURED
): $(STAMP_PREPARED
)
68 $(STAMP_BUILT
): $(STAMP_CONFIGURED
)
72 $(STAMP_INSTALLED
): $(STAMP_BUILT
)
73 $(call Build
/InstallDev
,$(STAGING_DIR
))
76 ifdef Build
/InstallDev
77 compile
: $(STAMP_INSTALLED
)
80 define Build
/DefaultTargets
83 prepare
: $(STAMP_PREPARED
)
84 configure
: $(STAMP_CONFIGURED
)
88 $(eval
$(Package
/Default
))
89 $(eval
$(Package
/$(1)))
92 $$(error DESCRIPTION
:= is obselete
, use Package
/PKG_NAME
/description
)
95 ifndef Package
/$(1)/description
96 define Package
/$(1)/description
101 $(foreach FIELD
, TITLE CATEGORY PRIORITY SECTION VERSION
,
103 $$(error Package
/$(1) is missing the
$(FIELD
) field
)
107 $(call shexport
,Package
/$(1)/description
)
108 $(call shexport
,Package
/$(1)/config
)
113 $(if
$(Package
/$(1)/targets
),$(Package
/$(1)/targets
), \
114 $(if
$(PKG_TARGETS
),$(PKG_TARGETS
), ipkg
) \
115 ), $(BuildTarget
/$(target
)) \
118 $(if
$(DUMP
),,$(call Build
/DefaultTargets
,$(1)))
121 # prevent libtool from setting rpath when linking
122 define libtool_disable_rpath
123 find
$(PKG_BUILD_DIR
) -name
'libtool' |
$(XARGS
) \
124 $(SED
) 's,^hardcode_libdir_flag_spec=.*,hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ ",g'
127 # prevent libtool from linking against host development libraries
128 define libtool_fixup_libdir
129 find
$(PKG_BUILD_DIR
) -name
'*.la' |
$(XARGS
) \
130 $(SED
) "s,^libdir='/usr/lib',libdir='$(strip $(1))/usr/lib',g"
133 define pkg_install_files
134 $(foreach install_file
,$(1),$(INSTALL_DIR
) $(3)/`dirname $(install_file)`; $(INSTALL_DATA
) $(2)/$(install_file
) $(3)/`dirname $(install_file)`;)
137 define pkg_install_bin
138 $(foreach install_apps
,$(1),$(INSTALL_DIR
) $(3)/`dirname $(install_file)`; $(INSTALL_BIN
) $(2)/$(install_file
) $(3)/`dirname $(install_file)`;)
142 $(call Build
/Prepare
/Default
,)
145 define Build
/Configure
146 $(call Build
/Configure
/Default
,)
150 $(call Build
/Compile
/Default
,)
163 $(call Build
/UninstallDev
,$(STAGING_DIR
))
165 @
rm -f
$(STAGING_DIR
)/stamp
/.
$(PKG_NAME
)-installed
166 @
rm -rf
$(PKG_BUILD_DIR
)