projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix typo
[openwrt.git]
/
package
/
linux-atm
/
Makefile
diff --git
a/package/linux-atm/Makefile
b/package/linux-atm/Makefile
index
5b75e19
..
55b0448
100644
(file)
--- a/
package/linux-atm/Makefile
+++ b/
package/linux-atm/Makefile
@@
-1,3
+1,9
@@
+#
+# 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
# $Id$
include $(TOPDIR)/rules.mk
@@
-14,35
+20,31
@@
PKG_CAT:=zcat
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
-include $(
TOPDIR)/package/rules
.mk
+include $(
INCLUDE_DIR)/package
.mk
define Package/linux-atm
define Package/linux-atm
-
SECTION:=libs
-
CATEGORY:=Libraries
-
TITLE:=Linux ATM Library
-
DESCRIPTION:=Library for accessing the Linux ATM subsystem
+SECTION:=libs
+CATEGORY:=Libraries
+TITLE:=Linux ATM Library
+DESCRIPTION:=Library for accessing the Linux ATM subsystem
endef
define Package/br2684ctl
endef
define Package/br2684ctl
-
SECTION:=net
-
CATEGORY:=Network
-
TITLE:=RFC2684 bridging
-
DEPENDS:=+linux-atm
-
DESCRIPTION:=ATM RFC2684 bridging utility
+SECTION:=net
+CATEGORY:=Network
+TITLE:=RFC2684 bridging
+DEPENDS:=+linux-atm
+DESCRIPTION:=ATM RFC2684 bridging utility
endef
define Build/Configure
endef
define Build/Configure
- $(call Build/Configure/Default
,
)
+ $(call Build/Configure/Default)
# prevent autoheader invocation
touch $(PKG_BUILD_DIR)/stamp-h.in
endef
define Build/Compile
# prevent autoheader invocation
touch $(PKG_BUILD_DIR)/stamp-h.in
endef
define Build/Compile
- rm -rf $(PKG_INSTALL_DIR)
- mkdir -p $(PKG_INSTALL_DIR)
- $(MAKE) -C $(PKG_BUILD_DIR) \
- DESTDIR="$(PKG_INSTALL_DIR)" \
- all install
+ $(call Build/Compile/Default,DESTDIR="$(PKG_INSTALL_DIR)" all install)
endef
define Package/linux-atm/install
endef
define Package/linux-atm/install
@@
-51,22
+53,23
@@
define Package/linux-atm/install
endef
define Package/br2684ctl/install
endef
define Package/br2684ctl/install
+ install -d -m0755 $(1)/etc/hotplug.d/net
+ install -m0644 ./files/br2684.hotplug $(1)/etc/hotplug.d/net/30-br2684
install -d -m0755 $(1)/usr/sbin
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/br2684ctl $(1)/usr/sbin/
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.init $(1)/etc/hotplug.d/net/30-br2684
endef
define Build/InstallDev
mkdir -p $(STAGING_DIR)/usr/include
endef
define Build/InstallDev
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/
endef
define Build/UninstallDev
endef
define Build/UninstallDev
- rm -rf \
- $(STAGING_DIR)/usr/include/atm{,d,sap}.h \
+ rm -rf $(STAGING_DIR)/usr/include/atm{,d,sap}.h \
$(STAGING_DIR)/usr/lib/libatm.{a,so*}
endef
$(STAGING_DIR)/usr/lib/libatm.{a,so*}
endef
This page took
0.023132 seconds
and
4
git commands to generate.