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