mac80211: remove the fq-disable hack, now that reordering is fixed
[librecmc/librecmc.git] / package / Makefile
1 #
2 # Copyright (C) 2006-2010 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 curdir:=package
9
10 include $(INCLUDE_DIR)/rootfs.mk
11
12 -include $(TMP_DIR)/.packagedeps
13 $(curdir)/builddirs:=$(sort $(package-) $(package-y) $(package-m))
14 $(curdir)/builddirs-install:=.
15 $(curdir)/builddirs-default:=. $(sort $(package-y) $(package-m))
16 $(curdir)/builddirs-prereq:=. $(sort $(prereq-y) $(prereq-m))
17 ifneq ($(IGNORE_ERRORS),)
18   package-y-filter := $(package-y)
19   package-m-filter := $(filter-out $(package-y),$(package-m))
20   package-n-filter := $(filter-out $(package-y) $(package-m),$(package-))
21   package-ignore-errors := $(filter n m y,$(IGNORE_ERRORS))
22   package-ignore-errors := $(if $(package-ignore-errors),$(package-ignore-errors),n m)
23   package-ignore-subdirs := $(sort $(foreach m,$(package-ignore-errors),$(package-$(m)-filter)))
24   $(curdir)/builddirs-ignore-download := $(package-ignore-subdirs)
25   $(curdir)/builddirs-ignore-compile := $(package-ignore-subdirs)
26   $(curdir)/builddirs-ignore-host-download := $(package-ignore-subdirs)
27   $(curdir)/builddirs-ignore-host-compile := $(package-ignore-subdirs)
28 endif
29
30 PACKAGE_INSTALL_FILES:= \
31         $(foreach pkg,$(sort $(package-y)), \
32                 $(foreach variant, \
33                         $(if $(strip $(package/$(pkg)/variants)), \
34                                 $(package/$(pkg)/variants), \
35                                 $(if $(package/$(pkg)/default-variant), \
36                                         $(package/$(pkg)/default-variant), \
37                                         default \
38                                 ) \
39                         ), \
40                         $(PKG_INFO_DIR)/$(lastword $(subst /,$(space),$(pkg))).$(variant).install \
41                 ) \
42         )
43
44 $(curdir)/cleanup: $(TMP_DIR)/.build
45         rm -rf $(STAGING_DIR_ROOT)
46
47 $(curdir)/merge:
48         rm -rf $(PACKAGE_DIR_ALL)
49         mkdir -p $(PACKAGE_DIR_ALL)
50         -$(foreach pdir,$(PACKAGE_SUBDIRS),$(if $(wildcard $(pdir)/*.ipk),ln -s $(pdir)/*.ipk $(PACKAGE_DIR_ALL);))
51
52 $(curdir)/merge-index: $(curdir)/merge
53         (cd $(PACKAGE_DIR_ALL) && $(SCRIPT_DIR)/ipkg-make-index.sh . 2>&1 > Packages; )
54
55 $(curdir)/install: $(TMP_DIR)/.build $(curdir)/system/opkg/host/install $(curdir)/merge $(if $(CONFIG_TARGET_PER_DEVICE_ROOTFS),$(curdir)/merge-index)
56         - find $(STAGING_DIR_ROOT) -type d | $(XARGS) chmod 0755
57         rm -rf $(TARGET_DIR)
58         [ -d $(TARGET_DIR)/tmp ] || mkdir -p $(TARGET_DIR)/tmp
59         $(call opkg,$(TARGET_DIR)) install \
60                 $(call opkg_package_files,$(shell cat $(PACKAGE_INSTALL_FILES) 2>/dev/null))
61         @for file in $(PACKAGE_INSTALL_FILES); do \
62                 [ -s $$file.flags ] || continue; \
63                 for flag in `cat $$file.flags`; do \
64                         $(call opkg,$(TARGET_DIR)) flag $$flag `cat $$file`; \
65                 done; \
66         done || true
67         @-$(MAKE) package/preconfig
68         $(call prepare_rootfs,$(TARGET_DIR))
69
70 PASSOPT=""
71 PASSARG=""
72 ifndef CONFIG_OPKGSMIME_PASSPHRASE
73   ifneq ($(call qstrip,$(CONFIG_OPKGSMIME_PASSFILE)),)
74     PASSOPT="-passin"
75     PASSARG="file:$(call qstrip,$(CONFIG_OPKGSMIME_PASSFILE))"
76   endif
77 endif
78
79 $(curdir)/index: FORCE
80         @echo Generating package index...
81         @for d in $(PACKAGE_SUBDIRS); do ( \
82                 mkdir -p $$d; \
83                 cd $$d || continue; \
84                 $(SCRIPT_DIR)/ipkg-make-index.sh . 2>&1 > Packages && \
85                         gzip -9nc Packages > Packages.gz; \
86         ); done
87 ifdef CONFIG_SIGNED_PACKAGES
88         @echo Signing package index...
89         @for d in $(PACKAGE_SUBDIRS); do ( \
90                 [ -d $$d ] && \
91                         cd $$d || continue; \
92                 $(STAGING_DIR_HOST)/bin/usign -S -m Packages -s $(BUILD_KEY); \
93         ); done
94 else
95 ifeq ($(call qstrip,$(CONFIG_OPKGSMIME_KEY)),)
96         @echo Signing key has not been configured
97 else
98 ifeq ($(call qstrip,$(CONFIG_OPKGSMIME_CERT)),)
99         @echo Certificate has not been configured
100 else
101         @echo Signing package index...
102         @for d in $(PACKAGE_SUBDIRS); do ( \
103                 [ -d $$d ] && \
104                         cd $$d || continue; \
105                 openssl smime -binary -in Packages.gz \
106                         -out Packages.sig -outform PEM -sign \
107                         -signer $(CONFIG_OPKGSMIME_CERT) \
108                         -inkey $(CONFIG_OPKGSMIME_KEY) \
109                         $(PASSOPT) $(PASSARG); \
110         ); done
111 endif
112 endif
113 endif
114
115 $(curdir)/preconfig:
116
117 $(curdir)/flags-install:= -j1
118
119 $(eval $(call stampfile,$(curdir),package,prereq,.config))
120 $(eval $(call stampfile,$(curdir),package,cleanup,$(TMP_DIR)/.build))
121 $(eval $(call stampfile,$(curdir),package,compile,$(TMP_DIR)/.build))
122 $(eval $(call stampfile,$(curdir),package,install,$(TMP_DIR)/.build))
123
124 $(eval $(call subdir,$(curdir)))