remove old trace/verbose junk
[openwrt-10.03/.git] / package / rules.mk
1 ifneq ($(DUMP),)
2 all: dumpinfo
3 else
4 all: compile
5 endif
6
7 define Build/DefaultTargets
8 $(PKG_BUILD_DIR)/.prepared:
9         rm -rf $(PKG_BUILD_DIR)
10         mkdir -p $(PKG_BUILD_DIR)
11         $(call Build/Prepare)
12         touch $$@
13
14 $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
15         $(call Build/Configure)
16         touch $$@
17
18 ifeq ($(shell $(SCRIPT_DIR)/timestamp.pl -p $(PKG_BUILD_DIR) .),.)
19 $(PKG_BUILD_DIR)/.prepared: clean
20 endif
21
22 $(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured
23         $(call Build/Compile)
24         touch $$@
25
26 package-clean:
27         $(call Build/Clean)
28         rm -f $(PKG_BUILD_DIR)/.built
29
30 package-recompile:
31         rm -f $(PKG_BUILD_DIR)/.built
32
33 .PHONY: package-clean package-recompile
34
35 define Build/DefaultTargets
36 endef
37 endef
38
39 define Package/Default
40 CONFIGFILE:=
41 SECTION:=opt
42 CATEGORY:=Extra packages
43 DEPENDS:=
44 MAINTAINER:=OpenWrt Developers Team <openwrt-devel@openwrt.org>
45 SOURCE:=$(patsubst $(TOPDIR)/%,%,${shell pwd})
46 VERSION:=$(PKG_VERSION)-$(PKG_RELEASE)
47 PKGARCH:=$(ARCH)
48 PRIORITY:=optional
49 DEFAULT:=
50 MENU:=
51 TITLE:=
52 DESCRIPTION:=
53 endef
54
55 define BuildPackage
56 $(eval $(call Package/Default))
57 $(eval $(call Package/$(1)))
58
59 ifeq ($(TITLE),)
60 $$(error Package $(1) has no TITLE)
61 endif
62 ifeq ($(CATEGORY),)
63 $$(error Package $(1) has no CATEGORY)
64 endif
65 ifeq ($(PRIORITY),)
66 $$(error Package $(1) has no PRIORITY)
67 endif
68 ifeq ($(VERSION),)
69 $$(error Package $(1) has no VERSION)
70 endif
71 ifeq ($(PKGARCH),)
72 PKGARCH:=$(ARCH)
73 endif
74 $(eval 
75 ifeq ($(DESCRIPTION),)
76 DESCRIPTION:=$(TITLE)
77 endif
78 )
79
80 IPKG_$(1):=$(PACKAGE_DIR)/$(1)_$(VERSION)_$(PKGARCH).ipk
81 IDIR_$(1):=$(PKG_BUILD_DIR)/ipkg/$(1)
82 INFO_$(1):=$(IPKG_STATE_DIR)/info/$(1).list
83
84 ifneq ($(CONFIG_PACKAGE_$(1)),)
85 COMPILE_$(1):=1
86 endif
87 ifneq ($(DEVELOPER),)
88 COMPILE_$(1):=1
89 endif
90 ifeq ($(CONFIG_PACKAGE_$(1)),y)
91 install-targets: $$(INFO_$(1))
92 endif
93
94 ifneq ($$(COMPILE_$(1)),)
95 ifeq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg $$(IPKG_$(1)) $(PKG_BUILD_DIR)),$(PKG_BUILD_DIR))
96 $(PKG_BUILD_DIR)/.built: package-recompile
97 endif
98
99 compile-targets: $$(IPKG_$(1))
100 endif
101
102
103 IDEPEND_$(1):=$$(strip $$(DEPENDS))
104
105 DUMPINFO += \
106         echo "Package: $(1)"; 
107 ifneq ($(MENU),)
108 DUMPINFO += \
109         echo "Menu: $(MENU)";
110 endif
111 ifneq ($(DEFAULT),)
112 DUMPINFO += \
113         echo "Default: $(DEFAULT)";
114 endif
115 DUMPINFO += \
116         echo "Version: $(VERSION)"; \
117         echo "Depends: $$(IDEPEND_$(1))"; \
118         echo "Category: $(CATEGORY)"; \
119         echo "Title: $(TITLE)"; \
120         echo "Description: $(DESCRIPTION)" | sed -e 's,\\,\n,g';
121 ifneq ($(URL),)
122 DUMPINFO += \
123         echo; \
124         echo "$(URL)";
125 endif
126 DUMPINFO += \
127         echo "@@";
128
129
130 $$(IDIR_$(1))/CONTROL/control: $(PKG_BUILD_DIR)/.prepared
131         mkdir -p $$(IDIR_$(1))/CONTROL
132         echo "Package: $(1)" > $$(IDIR_$(1))/CONTROL/control
133         echo "Version: $(VERSION)" >> $$(IDIR_$(1))/CONTROL/control
134         echo "Depends: $$(IDEPEND_$(1))" >> $$(IDIR_$(1))/CONTROL/control
135         echo "Source: $(SOURCE)" >> $$(IDIR_$(1))/CONTROL/control
136         echo "Section: $(SECTION)" >> $$(IDIR_$(1))/CONTROL/control
137         echo "Priority: $(PRIORITY)" >> $$(IDIR_$(1))/CONTROL/control
138         echo "Maintainer: $(MAINTAINER)" >> $$(IDIR_$(1))/CONTROL/control
139         echo "Architecture: $(PKGARCH)" >> $$(IDIR_$(1))/CONTROL/control
140         echo "Description: $(DESCRIPTION)" | sed -e 's,\\,\n ,g' >> $$(IDIR_$(1))/CONTROL/control
141         chmod 644 $$(IDIR_$(1))/CONTROL/control
142         for file in conffiles preinst postinst prerm postrm; do \
143                 [ -f ./ipkg/$(1).$$$$file ] && cp ./ipkg/$(1).$$$$file $$(IDIR_$(1))/CONTROL/$$$$file || true; \
144         done
145
146 $$(IPKG_$(1)): $$(IDIR_$(1))/CONTROL/control $(PKG_BUILD_DIR)/.built
147         $(call Package/$(1)/install,$$(IDIR_$(1)))
148         mkdir -p $(PACKAGE_DIR)
149         $(RSTRIP) $$(IDIR_$(1))
150         $(IPKG_BUILD) $$(IDIR_$(1)) $(PACKAGE_DIR)
151
152 $$(INFO_$(1)): $$(IPKG_$(1))
153         $(IPKG) install $$(IPKG_$(1))
154
155 $(1)-clean:
156         rm -f $(PACKAGE_DIR)/$(1)_*
157 clean: $(1)-clean
158
159 ifneq ($(__DEFAULT_TARGETS),1)
160 $(eval $(call Build/DefaultTargets))
161 endif
162
163 endef
164
165 ifneq ($(strip $(PKG_SOURCE)),)
166 $(DL_DIR)/$(PKG_SOURCE):
167         $(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(PKG_SOURCE)" "$(PKG_MD5SUM)" $(PKG_SOURCE_URL)
168         
169 $(PKG_BUILD_DIR)/.prepared: $(DL_DIR)/$(PKG_SOURCE)
170 endif
171
172 ifneq ($(strip $(PKG_CAT)),)
173 define Build/Prepare/Default
174         if [ "$(PKG_CAT)" = "unzip" ]; then \
175                 unzip -d $(PKG_BUILD_DIR) $(DL_DIR)/$(PKG_SOURCE) ; \
176         else \
177                 $(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(PKG_BUILD_DIR)/.. $(TAR_OPTIONS) - ; \
178         fi                                                
179         if [ -d ./patches ]; then \
180                 $(PATCH) $(PKG_BUILD_DIR) ./patches ; \
181         fi
182 endef
183 endif
184
185 define Build/Prepare
186 $(call Build/Prepare/Default)
187 endef
188
189 define Build/Configure/Default
190         (cd $(PKG_BUILD_DIR); \
191         [ -x configure ] && \
192                 $(TARGET_CONFIGURE_OPTS) \
193                 CFLAGS="$(TARGET_CFLAGS)" \
194                 ./configure \
195                 --target=$(GNU_TARGET_NAME) \
196                 --host=$(GNU_TARGET_NAME) \
197                 --build=$(GNU_HOST_NAME) \
198                 --prefix=/usr \
199                 --exec-prefix=/usr \
200                 --bindir=/usr/bin \
201                 --sbindir=/usr/sbin \
202                 --libexecdir=/usr/lib \
203                 --sysconfdir=/etc \
204                 --datadir=/usr/share \
205                 --localstatedir=/var \
206                 --mandir=/usr/man \
207                 --infodir=/usr/info \
208                 $(DISABLE_NLS) \
209                 $(1); \
210         )
211 endef
212
213 define Build/Configure
214 $(call Build/Configure/Default,)
215 endef
216
217 define Build/Compile/Default
218         $(MAKE) -C $(PKG_BUILD_DIR) \
219                 CC=$(TARGET_CC) \
220                 CROSS="$(TARGET_CROSS)" \
221                 PREFIX="$$(IDIR_$(1))" \
222                 EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
223                 ARCH="$(ARCH)" \
224                 DESTDIR="$$(IDIR_$(1))"
225 endef
226
227 define Build/Compile
228 $(call Build/Compile/Default)
229 endef
230
231 define Build/Clean
232         $(MAKE) clean
233 endef
234
235 ifneq ($(DUMP),)
236 dumpinfo:
237         $(DUMPINFO)
238 else
239                 
240 $(PACKAGE_DIR):
241         mkdir -p $@
242
243 source: $(DL_DIR)/$(PKG_SOURCE)
244 prepare: $(PKG_BUILD_DIR)/.prepared
245 configure: $(PKG_BUILD_DIR)/.configured
246
247 compile-targets:
248 compile: compile-targets
249
250 install-targets:
251 install: install-targets
252
253 clean-targets:
254 clean: 
255         @$(MAKE) clean-targets
256         rm -rf $(PKG_BUILD_DIR)
257 endif
258
259 .PHONY: all source prepare compile install clean dumpinfo compile-targets install-targets clean-targets