convert linux-atm to new format
SVN-Revision: 3846
This commit is contained in:
parent
e874a83da2
commit
31c5f70b25
3 changed files with 32 additions and 63 deletions
|
@ -16,76 +16,53 @@ PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||||
|
|
||||||
include $(TOPDIR)/package/rules.mk
|
include $(TOPDIR)/package/rules.mk
|
||||||
|
|
||||||
$(eval $(call PKG_template,LINUX_ATM,linux-atm,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
define Package/linux-atm
|
||||||
$(eval $(call PKG_template,BR2684CTL,br2684ctl,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
SECTION:=libs
|
||||||
|
CATEGORY:=Libraries
|
||||||
|
TITLE:=Linux ATM Library
|
||||||
|
DESCRIPTION:=Library for accessing the Linux ATM subsystem
|
||||||
|
endef
|
||||||
|
|
||||||
$(PKG_BUILD_DIR)/.configured:
|
define Package/br2684ctl
|
||||||
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
SECTION:=net
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
CATEGORY:=Network
|
||||||
CFLAGS="$(TARGET_CFLAGS)" \
|
TITLE:=RFC2684 bridging
|
||||||
CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
|
DEPENDS:=+linux-atm
|
||||||
LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \
|
DESCRIPTION:=ATM RFC2684 bridging utility
|
||||||
./configure \
|
endef
|
||||||
--target=$(GNU_TARGET_NAME) \
|
|
||||||
--host=$(GNU_TARGET_NAME) \
|
|
||||||
--build=$(GNU_HOST_NAME) \
|
|
||||||
--program-prefix="" \
|
|
||||||
--program-suffix="" \
|
|
||||||
--prefix=/usr \
|
|
||||||
--exec-prefix=/usr \
|
|
||||||
--bindir=/usr/bin \
|
|
||||||
--datadir=/usr/share \
|
|
||||||
--includedir=/usr/include/ \
|
|
||||||
--infodir=/usr/share/info \
|
|
||||||
--libdir=/usr/lib \
|
|
||||||
--libexecdir=/usr/lib \
|
|
||||||
--localstatedir=/var \
|
|
||||||
--mandir=/usr/share/man \
|
|
||||||
--sbindir=/usr/sbin \
|
|
||||||
--sysconfdir=/etc \
|
|
||||||
)
|
|
||||||
touch $@
|
|
||||||
|
|
||||||
$(PKG_BUILD_DIR)/.built:
|
define Build/Compile
|
||||||
rm -rf $(PKG_INSTALL_DIR)
|
rm -rf $(PKG_INSTALL_DIR)
|
||||||
mkdir -p $(PKG_INSTALL_DIR)
|
mkdir -p $(PKG_INSTALL_DIR)
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
DESTDIR="$(PKG_INSTALL_DIR)" \
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||||
all install
|
all install
|
||||||
touch $@
|
endef
|
||||||
|
|
||||||
$(IPKG_LINUX_ATM):
|
define Package/linux-atm/install
|
||||||
install -d -m0755 $(IDIR_LINUX_ATM)/usr/lib
|
install -d -m0755 $(1)/usr/lib
|
||||||
cp -f $(PKG_INSTALL_DIR)/usr/lib/libatm.so.1 $(IDIR_LINUX_ATM)/usr/lib
|
cp -f $(PKG_INSTALL_DIR)/usr/lib/libatm.so.1 $(1)/usr/lib
|
||||||
$(RSTRIP) $(IDIR_LINUX_ATM)/
|
endef
|
||||||
$(IPKG_BUILD) $(IDIR_LINUX_ATM) $(PACKAGE_DIR)
|
|
||||||
|
|
||||||
$(IPKG_BR2684CTL):
|
define Package/br2684ctl/install
|
||||||
install -d -m0755 $(IDIR_BR2684CTL)/usr/sbin
|
install -d -m0755 $(1)/usr/sbin
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/br2684ctl $(IDIR_BR2684CTL)/usr/sbin/
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/br2684ctl $(1)/usr/sbin/
|
||||||
install -d -m0755 $(IDIR_BR2684CTL)/etc/hotplug.d/net
|
install -d -m0755 $(1)/etc/hotplug.d/net
|
||||||
install -m0644 ./files/br2684.init $(IDIR_BR2684CTL)/etc/hotplug.d/net/30-br2684
|
install -m0644 ./files/br2684.init $(1)/etc/hotplug.d/net/30-br2684
|
||||||
$(RSTRIP) $(IDIR_BR2684CTL)/
|
endef
|
||||||
$(IPKG_BUILD) $(IDIR_BR2684CTL) $(PACKAGE_DIR)
|
|
||||||
|
|
||||||
$(STAGING_DIR)/usr/lib/libatm.so: $(PKG_BUILD_DIR)/.built
|
define Build/InstallDev
|
||||||
mkdir -p $(STAGING_DIR)/usr/include
|
mkdir -p $(STAGING_DIR)/usr/include
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/include/atm{,d,sap}.h $(STAGING_DIR)/usr/include/
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/atm{,d,sap}.h $(STAGING_DIR)/usr/include/
|
||||||
mkdir -p $(STAGING_DIR)/usr/lib
|
mkdir -p $(STAGING_DIR)/usr/lib
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libatm.{a,so*} $(STAGING_DIR)/usr/lib/
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libatm.{a,so*} $(STAGING_DIR)/usr/lib/
|
||||||
touch $@
|
endef
|
||||||
|
|
||||||
install-dev: $(STAGING_DIR)/usr/lib/libatm.so
|
define Build/UninstallDev
|
||||||
|
|
||||||
uninstall-dev:
|
|
||||||
rm -rf \
|
rm -rf \
|
||||||
$(STAGING_DIR)/usr/include/atm{,d,sap}.h \
|
$(STAGING_DIR)/usr/include/atm{,d,sap}.h \
|
||||||
$(STAGING_DIR)/usr/lib/libatm.{a,so*} \
|
$(STAGING_DIR)/usr/lib/libatm.{a,so*}
|
||||||
|
endef
|
||||||
compile-targets: install-dev
|
|
||||||
clean-targets: uninstall-dev
|
|
||||||
|
|
||||||
mostlyclean:
|
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) clean
|
|
||||||
rm -f $(PKG_BUILD_DIR)/.built
|
|
||||||
|
|
||||||
|
$(eval $(call BuildPackage,linux-atm))
|
||||||
|
$(eval $(call BuildPackage,br2684ctl))
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
Package: br2684ctl
|
|
||||||
Priority: optional
|
|
||||||
Section: net
|
|
||||||
Description: Utility for configuring the ATM RFC2684 bridging
|
|
|
@ -1,4 +0,0 @@
|
||||||
Package: linux-atm
|
|
||||||
Priority: optional
|
|
||||||
Section: net
|
|
||||||
Description: ATM library for linux
|
|
Loading…
Reference in a new issue