[package] disable a few packages failing on pxcab (marking them as BROKEN)
[openwrt/svn-archive/archive.git] / package / siit / Makefile
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
8 include $(TOPDIR)/rules.mk
9 include $(INCLUDE_DIR)/kernel.mk
10
11 PKG_NAME:=siit
12 PKG_VERSION:=1.1
13
14 include $(INCLUDE_DIR)/package.mk
15
16 define KernelPackage/siit
17 SUBMENU:=Network Devices
18 TITLE:=Stateless IP ICMP Translation Algorithm
19 DEPENDS:=@!LINUX_2_6_31 @(!(TARGET_pxcab)||BROKEN)
20 FILES:=$(PKG_BUILD_DIR)/siit.$(LINUX_KMOD_SUFFIX)
21 AUTOLOAD:=$(call AutoLoad,50,siit)
22 endef
23
24 define KernelPackage/siit/description
25 Stateless IP ICMP Translation Algorithm
26 endef
27
28 define Build/Prepare
29 mkdir -p $(PKG_BUILD_DIR)
30 cp src/Makefile src/siit.h src/siit.c $(PKG_BUILD_DIR)/
31 endef
32
33 define Build/Compile
34 $(MAKE) -C $(LINUX_DIR) \
35 CROSS_COMPILE="$(TARGET_CROSS)" \
36 ARCH="$(LINUX_KARCH)" \
37 SUBDIRS="$(PKG_BUILD_DIR)" \
38 KERNELDIR=$(LINUX_DIR) \
39 CC="$(TARGET_CC)" \
40 modules
41 endef
42
43 $(eval $(call KernelPackage,siit))