2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-08-12 18:23:01 +00:00
|
|
|
# $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
|
2006-09-23 19:30:35 +00:00
|
|
|
PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/l/linux-atm/
|
|
|
|
PKG_MD5SUM:=84fef49cc39ff2605204246666f65864
|
2005-08-12 18:23:01 +00:00
|
|
|
|
2006-06-21 02:32:39 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2005-08-12 18:23:01 +00:00
|
|
|
|
2006-09-23 19:30:35 +00:00
|
|
|
define Package/linux-atm/Default
|
|
|
|
URL:=http://linux-atm.sourceforge.net/
|
|
|
|
endef
|
|
|
|
|
2006-05-30 19:50:48 +00:00
|
|
|
define Package/linux-atm
|
2006-09-23 19:30:35 +00:00
|
|
|
$(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.
|
2006-05-30 19:50:48 +00:00
|
|
|
endef
|
|
|
|
|
2006-06-18 11:20:13 +00:00
|
|
|
define Build/Configure
|
2006-08-18 21:21:06 +00:00
|
|
|
$(call Build/Configure/Default)
|
2006-06-18 11:20:13 +00:00
|
|
|
# prevent autoheader invocation
|
|
|
|
touch $(PKG_BUILD_DIR)/stamp-h.in
|
|
|
|
endef
|
|
|
|
|
2007-01-21 02:14:50 +00:00
|
|
|
TARGET_CFLAGS := -I$(PKG_BUILD_DIR)/src/include $(TARGET_CFLAGS)
|
2006-05-30 19:50:48 +00:00
|
|
|
define Build/Compile
|
2007-01-21 02:14:50 +00:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
2006-09-23 19:30:35 +00:00
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
2007-01-21 02:14:50 +00:00
|
|
|
all install
|
2006-05-30 19:50:48 +00:00
|
|
|
endef
|
2005-08-23 12:29:00 +00:00
|
|
|
|
2006-05-30 19:50:48 +00:00
|
|
|
define Build/InstallDev
|
2005-08-19 15:49:41 +00:00
|
|
|
mkdir -p $(STAGING_DIR)/usr/include
|
2006-06-18 18:26:00 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/atm{,d,sap}.h \
|
|
|
|
$(STAGING_DIR)/usr/include/
|
2005-08-19 15:49:41 +00:00
|
|
|
mkdir -p $(STAGING_DIR)/usr/lib
|
2006-06-18 18:26:00 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libatm.{a,so*} \
|
|
|
|
$(STAGING_DIR)/usr/lib/
|
2006-05-30 19:50:48 +00:00
|
|
|
endef
|
2005-08-22 15:13:34 +00:00
|
|
|
|
2006-05-30 19:50:48 +00:00
|
|
|
define Build/UninstallDev
|
2006-06-18 18:26:00 +00:00
|
|
|
rm -rf $(STAGING_DIR)/usr/include/atm{,d,sap}.h \
|
2006-05-30 19:50:48 +00:00
|
|
|
$(STAGING_DIR)/usr/lib/libatm.{a,so*}
|
|
|
|
endef
|
2005-08-12 18:23:01 +00:00
|
|
|
|
2006-09-23 19:30:35 +00:00
|
|
|
define Package/linux-atm/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2006-09-23 19:30:35 +00:00
|
|
|
cp -f $(PKG_INSTALL_DIR)/usr/lib/libatm.so.1 $(1)/usr/lib
|
|
|
|
endef
|
|
|
|
|
2006-05-30 19:50:48 +00:00
|
|
|
$(eval $(call BuildPackage,linux-atm))
|
2006-11-04 16:35:53 +00:00
|
|
|
|
2006-11-12 18:43:54 +00:00
|
|
|
$(eval $(call RequireCommand,automake, \
|
|
|
|
$(PKG_NAME) requires automake. \
|
2006-11-04 16:35:53 +00:00
|
|
|
))
|