1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

normalize Makefiles.

git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3998 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico
2006-06-18 18:30:40 +00:00
parent c69b4635d3
commit 4e00d98efd
19 changed files with 218 additions and 250 deletions

View File

@@ -17,11 +17,11 @@ PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
include $(TOPDIR)/package/rules.mk
define Package/libpcap
SECTION:=base
CATEGORY:=Libraries
TITLE:=Low-level packet capture library
DESCRIPTION:=A system-independent library for user-level network packet capture.
URL:=http://www.tcpdump.org/
SECTION:=base
CATEGORY:=Libraries
TITLE:=Low-level packet capture library
DESCRIPTION:=A system-independent library for user-level network packet capture.
URL:=http://www.tcpdump.org/
endef
define Build/Configure
@@ -69,29 +69,23 @@ define Build/Compile
all install
endef
define Build/InstallDev
mkdir -p $(STAGING_DIR)/usr/include
$(CP) $(PKG_INSTALL_DIR)/usr/include/pcap{,-bpf,-namedb}.h \
$(STAGING_DIR)/usr/include/
mkdir -p $(STAGING_DIR)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcap.{a,so*} \
$(STAGING_DIR)/usr/lib/
endef
define Build/UninstallDev
rm -rf $(STAGING_DIR)/usr/include/pcap{,-bpf,-named}.h \
$(STAGING_DIR)/usr/lib/libpcap.{a,so*}
endef
define Package/libpcap/install
install -m0755 -d $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcap.so.* $(1)/usr/lib/
endef
define Build/InstallDev
mkdir -p $(STAGING_DIR)/usr/include
$(CP) $(PKG_INSTALL_DIR)/usr/include/pcap.h \
$(PKG_INSTALL_DIR)/usr/include/pcap-bpf.h \
$(PKG_INSTALL_DIR)/usr/include/pcap-namedb.h \
$(STAGING_DIR)/usr/include/
mkdir -p $(STAGING_DIR)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcap.a \
$(PKG_INSTALL_DIR)/usr/lib/libpcap.so* \
$(STAGING_DIR)/usr/lib/
endef
define Build/UninstallDev
rm -rf $(STAGING_DIR)/usr/include/pcap.h \
$(STAGING_DIR)/usr/include/pcap-bpf.h \
$(STAGING_DIR)/usr/include/pcap-namedb.h \
$(STAGING_DIR)/usr/lib/libpcap.a \
$(STAGING_DIR)/usr/lib/libpcap.so*
endef
$(eval $(call BuildPackage,libpcap))