more cleanups
[openwrt-10.03/.git] / package / linux-atm / 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 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=linux-atm
12 PKG_VERSION:=2.4.1
13 PKG_RELEASE:=1
14 PKG_MD5SUM:=84fef49cc39ff2605204246666f65864
15
16 PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/l/linux-atm/
17 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/linux-atm
26 SECTION:=libs
27 CATEGORY:=Libraries
28 TITLE:=Linux ATM Library
29 DESCRIPTION:=Library for accessing the Linux ATM subsystem
30 endef
31
32 define Package/br2684ctl
33 SECTION:=net
34 CATEGORY:=Network
35 TITLE:=RFC2684 bridging
36 DEPENDS:=+linux-atm
37 DESCRIPTION:=ATM RFC2684 bridging utility
38 endef
39
40 define Build/Configure
41         $(call Build/Configure/Default)
42         # prevent autoheader invocation
43         touch $(PKG_BUILD_DIR)/stamp-h.in
44 endef
45
46 define Build/Compile
47         $(call Build/Compile/Default,DESTDIR="$(PKG_INSTALL_DIR)" all install)
48 endef
49
50 define Package/linux-atm/install
51         install -d -m0755 $(1)/usr/lib
52         cp -f $(PKG_INSTALL_DIR)/usr/lib/libatm.so.1 $(1)/usr/lib
53 endef
54
55 define Package/br2684ctl/install
56         install -d -m0755 $(1)/etc/hotplug.d/net
57         install -m0644 ./files/br2684.hotplug $(1)/etc/hotplug.d/net/30-br2684
58         install -d -m0755 $(1)/usr/sbin
59         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/br2684ctl $(1)/usr/sbin/
60 endef
61
62 define Build/InstallDev
63         mkdir -p $(STAGING_DIR)/usr/include
64         $(CP)   $(PKG_INSTALL_DIR)/usr/include/atm{,d,sap}.h \
65                 $(STAGING_DIR)/usr/include/
66         mkdir -p $(STAGING_DIR)/usr/lib
67         $(CP)   $(PKG_INSTALL_DIR)/usr/lib/libatm.{a,so*} \
68                 $(STAGING_DIR)/usr/lib/
69 endef
70
71 define Build/UninstallDev
72         rm -rf  $(STAGING_DIR)/usr/include/atm{,d,sap}.h \
73                 $(STAGING_DIR)/usr/lib/libatm.{a,so*}
74 endef
75
76 $(eval $(call BuildPackage,linux-atm))
77 $(eval $(call BuildPackage,br2684ctl))