summaryrefslogtreecommitdiffstats
path: root/package/linux-atm/Makefile
blob: ced3da69ef810afddf6db7628a8f2d7a8d6a568d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# 
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id$

include $(TOPDIR)/rules.mk

PKG_NAME:=linux-atm
PKG_VERSION:=2.4.1
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/l/linux-atm/
PKG_MD5SUM:=84fef49cc39ff2605204246666f65864
PKG_CAT:=zcat

PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install

include $(INCLUDE_DIR)/package.mk

define Package/linux-atm/Default
  URL:=http://linux-atm.sourceforge.net/
endef

define Package/linux-atm
  $(call Package/linux-atm/Default)
  SECTION:=libs
  CATEGORY:=Libraries
  TITLE:=Linux ATM Library
  DESCRIPTION:=\
	This package contains a library for accessing the Linux ATM subsystem.
endef

define Package/br2684ctl
  $(call Package/linux-atm/Default)
  SECTION:=net
  CATEGORY:=Network
  DEPENDS:=+linux-atm
  TITLE:=RFC2684 bridging utility
  DESCRIPTION:=\
	This package contains an ATM RFC2684 bridging utility.
endef

define Build/Configure
	$(call Build/Configure/Default)
	# prevent autoheader invocation
	touch $(PKG_BUILD_DIR)/stamp-h.in
endef

define Build/Compile
	$(call Build/Compile/Default, \
		DESTDIR="$(PKG_INSTALL_DIR)" \
		all install \
	)
endef

define Build/InstallDev
	mkdir -p $(STAGING_DIR)/usr/include
	$(CP)	$(PKG_INSTALL_DIR)/usr/include/atm{,d,sap}.h \
		$(STAGING_DIR)/usr/include/
	mkdir -p $(STAGING_DIR)/usr/lib
	$(CP)	$(PKG_INSTALL_DIR)/usr/lib/libatm.{a,so*} \
		$(STAGING_DIR)/usr/lib/
endef

define Build/UninstallDev
	rm -rf	$(STAGING_DIR)/usr/include/atm{,d,sap}.h \
		$(STAGING_DIR)/usr/lib/libatm.{a,so*}
endef

define Package/linux-atm/install
	install -d -m0755 $(1)/usr/lib
	cp -f $(PKG_INSTALL_DIR)/usr/lib/libatm.so.1 $(1)/usr/lib
endef

define Package/br2684ctl/install
	install -d -m0755 $(1)/usr/sbin
	$(CP) $(PKG_INSTALL_DIR)/usr/sbin/br2684ctl $(1)/usr/sbin/
	install -d -m0755 $(1)/etc/hotplug.d/net
	install -m0644 ./files/br2684.hotplug $(1)/etc/hotplug.d/net/30-br2684
endef

$(eval $(call BuildPackage,linux-atm))
$(eval $(call BuildPackage,br2684ctl))

$(eval $(call RequireCommand,automake, \
	$(PKG_NAME) requires automake. \
))