set PATH in rules.mk
[openwrt/svn-archive/archive.git] / openwrt / include / package.mk
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 ifneq ($(DUMP),)
8 all: dumpinfo
9 else
10 all: compile
11 endif
12
13 include $(INCLUDE_DIR)/prereq.mk
14
15 define Build/DefaultTargets
16 ifeq ($(DUMP),)
17 ifeq ($(CONFIG_AUTOREBUILD),y)
18 ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p $(PKG_BUILD_DIR) .),$(PKG_BUILD_DIR))
19 $(PKG_BUILD_DIR)/.prepared: package-clean
20 endif
21
22 ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg -x ipkg-install $(IPKG_$(1)) $(PKG_BUILD_DIR)),$(IPKG_$(1)))
23 $(PKG_BUILD_DIR)/.built: package-rebuild
24 endif
25 endif
26 endif
27
28 $(PKG_BUILD_DIR)/.prepared:
29 @-rm -rf $(PKG_BUILD_DIR)
30 @mkdir -p $(PKG_BUILD_DIR)
31 $(call Build/Prepare)
32 touch $$@
33
34 $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
35 $(call Build/Configure)
36 touch $$@
37
38 $(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured
39 $(call Build/Compile)
40 touch $$@
41
42 ifdef Build/InstallDev
43 $(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed: $(PKG_BUILD_DIR)/.built
44 mkdir -p $(STAGING_DIR)/stampfiles
45 $(call Build/InstallDev)
46 touch $$@
47
48 compile-targets: $(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed
49 endif
50
51 package-clean: FORCE
52 $(call Build/Clean)
53 $(call Build/UninstallDev)
54 -rm -f $(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed
55
56 package-rebuild: FORCE
57 @-rm -f $(PKG_BUILD_DIR)/.built
58
59 define Build/DefaultTargets
60 endef
61 endef
62
63 define Package/Default
64 CONFIGFILE:=
65 SECTION:=opt
66 CATEGORY:=Extra packages
67 DEPENDS:=
68 EXTRA_DEPENDS:=
69 MAINTAINER:=OpenWrt Developers Team <openwrt-devel@openwrt.org>
70 SOURCE:=$(patsubst $(TOPDIR)/%,%,${shell pwd})
71 ifneq ($(PKG_VERSION),)
72 ifneq ($(PKG_RELEASE),)
73 VERSION:=$(PKG_VERSION)-$(PKG_RELEASE)
74 else
75 VERSION:=$(PKG_VERSION)
76 endif
77 else
78 VERSION:=$(PKG_RELEASE)
79 endif
80 PKGARCH:=$(ARCH)
81 PRIORITY:=optional
82 DEFAULT:=
83 MENU:=
84 SUBMENU:=
85 SUBMENUDEP:=
86 TITLE:=
87 DESCRIPTION:=
88 endef
89
90 define BuildIPKGVariable
91 pkg_$(subst .,_,$(subst -,_,$(1)))_$(2) = $$(Package/$(1)/$(2))
92 export pkg_$(subst .,_,$(subst -,_,$(1))_$(2))
93 $(1)_COMMANDS += if [ -n "$$$$$$$$pkg_$(subst .,_,$(subst -,_,$(1)))_$(2)" ]; then echo "$$$$$$$$pkg_$(subst .,_,$(subst -,_,$(1)))_$(2)" > $(2); fi;
94 endef
95
96 define BuildPackage
97 $(eval $(call Package/Default))
98 $(eval $(call Package/$(1)))
99
100 $(foreach FIELD, TITLE CATEGORY PRIORITY VERSION,
101 ifeq ($($(FIELD)),)
102 $$(error Package/$(1) is missing the $(FIELD) field)
103 endif
104 )
105
106 ifeq ($(PKGARCH),)
107 PKGARCH:=$(ARCH)
108 endif
109
110 ifeq ($(DESCRIPTION),)
111 $(eval DESCRIPTION:=$(TITLE))
112 endif
113
114 IPKG_$(1):=$(PACKAGE_DIR)/$(1)_$(VERSION)_$(PKGARCH).ipk
115 IDIR_$(1):=$(PKG_BUILD_DIR)/ipkg/$(1)
116 INFO_$(1):=$(IPKG_STATE_DIR)/info/$(1).list
117
118 ifdef Package/$(1)/install
119 ifeq ($(CONFIG_PACKAGE_$(1)),y)
120 install-targets: $$(INFO_$(1))
121 endif
122
123 ifneq ($(CONFIG_PACKAGE_$(1)),)
124 compile-targets: $$(IPKG_$(1))
125 endif
126 endif
127
128 ifeq ($(FORCEREBUILD),y)
129 $$(IPKG_$(1)): FORCE
130 endif
131
132 IDEPEND_$(1):=$$(strip $$(DEPENDS))
133
134 ifneq ($(DUMP),)
135 DUMPINFO += \
136 echo "Package: $(1)";
137
138 ifneq ($(MENU),)
139 DUMPINFO += \
140 echo "Menu: $(MENU)";
141 endif
142
143 ifneq ($(SUBMENU),)
144 DUMPINFO += \
145 echo "Submenu: $(SUBMENU)";
146 ifneq ($(SUBMENUDEP),)
147 DUMPINFO += \
148 echo "Submenu-Depends: $(SUBMENUDEP)";
149 endif
150 endif
151
152 ifneq ($(DEFAULT),)
153 DUMPINFO += \
154 echo "Default: $(DEFAULT)";
155 endif
156
157 DUMPINFO += \
158 echo "Version: $(VERSION)"; \
159 echo "Depends: $$(IDEPEND_$(1))"; \
160 echo "Build-Depends: $(PKG_BUILDDEP)"; \
161 echo "Category: $(CATEGORY)"; \
162 echo "Title: $(TITLE)"; \
163 echo "Description: $(DESCRIPTION)" | sed -e 's,\\,\n,g';
164
165 ifneq ($(URL),)
166 DUMPINFO += \
167 echo; \
168 echo "$(URL)";
169 endif
170
171 DUMPINFO += \
172 echo "@@";
173
174 ifneq ($(CONFIG),)
175 DUMPINFO += \
176 echo "Config: $(CONFIG)" | sed -e 's,\\,\n,g'; \
177 echo "@@";
178 endif
179 endif
180
181 $(eval $(call BuildIPKGVariable,$(1),conffiles))
182 $(eval $(call BuildIPKGVariable,$(1),preinst))
183 $(eval $(call BuildIPKGVariable,$(1),postinst))
184 $(eval $(call BuildIPKGVariable,$(1),prerm))
185 $(eval $(call BuildIPKGVariable,$(1),postrm))
186 $$(IDIR_$(1))/CONTROL/control: $(PKG_BUILD_DIR)/.version-$(1)_$(VERSION)_$(PKGARCH)
187 mkdir -p $$(IDIR_$(1))/CONTROL
188 echo "Package: $(1)" > $$(IDIR_$(1))/CONTROL/control
189 echo "Version: $(VERSION)" >> $$(IDIR_$(1))/CONTROL/control
190 ( \
191 DEPENDS=; \
192 for depend in $$(filter-out @%,$$(IDEPEND_$(1))); do \
193 DEPENDS=$$$${DEPENDS:+$$$$DEPENDS, }$$$${depend##+}; \
194 done; \
195 echo "Depends: $(EXTRA_DEPENDS) $$$$DEPENDS" >> $$(IDIR_$(1))/CONTROL/control; \
196 )
197 echo "Source: $(SOURCE)" >> $$(IDIR_$(1))/CONTROL/control
198 echo "Section: $(SECTION)" >> $$(IDIR_$(1))/CONTROL/control
199 echo "Priority: $(PRIORITY)" >> $$(IDIR_$(1))/CONTROL/control
200 echo "Maintainer: $(MAINTAINER)" >> $$(IDIR_$(1))/CONTROL/control
201 echo "Architecture: $(PKGARCH)" >> $$(IDIR_$(1))/CONTROL/control
202 echo "Description: $(DESCRIPTION)" | sed -e 's,\\,\n ,g' >> $$(IDIR_$(1))/CONTROL/control
203 chmod 644 $$(IDIR_$(1))/CONTROL/control
204 (cd $$(IDIR_$(1))/CONTROL; \
205 $($(1)_COMMANDS) \
206 )
207
208 $$(IPKG_$(1)): $(PKG_BUILD_DIR)/.built $$(IDIR_$(1))/CONTROL/control
209 $(call Package/$(1)/install,$$(IDIR_$(1)))
210 mkdir -p $(PACKAGE_DIR)
211 -find $$(IDIR_$(1)) -name CVS | xargs rm -rf
212 -find $$(IDIR_$(1)) -name .svn | xargs rm -rf
213 -find $$(IDIR_$(1)) -name '.#*' | xargs rm -f
214 $(RSTRIP) $$(IDIR_$(1))
215 $(IPKG_BUILD) $$(IDIR_$(1)) $(PACKAGE_DIR)
216 @[ -f $$(IPKG_$(1)) ] || false
217
218 $$(INFO_$(1)): $$(IPKG_$(1))
219 $(IPKG) install $$(IPKG_$(1))
220
221 $(1)-clean:
222 rm -f $(PACKAGE_DIR)/$(1)_*
223
224 clean: $(1)-clean
225
226 $(PKG_BUILD_DIR)/.version-$(1)_$(VERSION)_$(PKGARCH): $(PKG_BUILD_DIR)/.prepared
227 -rm $(PKG_BUILD_DIR)/.version-$(1)_*
228 @touch $$@
229
230 $$(eval $$(call Build/DefaultTargets,$(1)))
231 endef
232
233 ifneq ($(strip $(PKG_CAT)),)
234 ifeq ($(PKG_CAT),unzip)
235 UNPACK=unzip -d $(PKG_BUILD_DIR) $(DL_DIR)/$(PKG_SOURCE)
236 else
237 UNPACK=$(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(PKG_BUILD_DIR)/.. $(TAR_OPTIONS) -
238 endif
239 define Build/Prepare/Default
240 $(UNPACK)
241 @if [ -d ./patches ]; then \
242 $(PATCH) $(PKG_BUILD_DIR) ./patches; \
243 fi
244 endef
245 endif
246
247 define Build/Prepare
248 $(call Build/Prepare/Default)
249 endef
250
251 define Build/Configure/Default
252 @(cd $(PKG_BUILD_DIR)/$(3); \
253 [ -x configure ] && \
254 $(TARGET_CONFIGURE_OPTS) \
255 CFLAGS="$(TARGET_CFLAGS)" \
256 CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
257 LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
258 $(2) \
259 ./configure \
260 --target=$(GNU_TARGET_NAME) \
261 --host=$(GNU_TARGET_NAME) \
262 --build=$(GNU_HOST_NAME) \
263 --program-prefix="" \
264 --program-suffix="" \
265 --prefix=/usr \
266 --exec-prefix=/usr \
267 --bindir=/usr/bin \
268 --sbindir=/usr/sbin \
269 --libexecdir=/usr/lib \
270 --sysconfdir=/etc \
271 --datadir=/usr/share \
272 --localstatedir=/var \
273 --mandir=/usr/man \
274 --infodir=/usr/info \
275 $(DISABLE_NLS) \
276 $(1); \
277 true; \
278 )
279 endef
280
281 define Build/Configure
282 $(call Build/Configure/Default,)
283 endef
284
285 define Build/Compile/Default
286 $(MAKE) -C $(PKG_BUILD_DIR) \
287 $(TARGET_CONFIGURE_OPTS) \
288 CROSS="$(TARGET_CROSS)" \
289 EXTRA_CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/include -I$(STAGING_DIR)/usr/include" \
290 ARCH="$(ARCH)" \
291 $(1);
292 endef
293
294 define Build/Compile
295 $(call Build/Compile/Default,)
296 endef
297
298 ifneq ($(DUMP),)
299 dumpinfo: FORCE
300 @$(DUMPINFO)
301 else
302 $(PACKAGE_DIR):
303 mkdir -p $@
304
305 ifneq ($(strip $(PKG_SOURCE)),)
306 download: $(DL_DIR)/$(PKG_SOURCE)
307
308 $(DL_DIR)/$(PKG_SOURCE):
309 mkdir -p $(DL_DIR)
310 $(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(PKG_SOURCE)" "$(PKG_MD5SUM)" $(PKG_SOURCE_URL)
311
312 $(PKG_BUILD_DIR)/.prepared: $(DL_DIR)/$(PKG_SOURCE)
313 endif
314
315 download:
316 prepare: $(PKG_BUILD_DIR)/.prepared
317 configure: $(PKG_BUILD_DIR)/.configured
318
319 compile-targets:
320 compile: compile-targets
321
322 install-targets:
323 install: install-targets
324
325 clean-targets:
326 clean: FORCE
327 @$(MAKE) clean-targets
328 $(call Build/Clean)
329 rm -rf $(PKG_BUILD_DIR)
330 endif