blob: e550059a402f9dd90fe5245b164a7851956371ad (
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
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
include $(TOPDIR)/rules.mk
PKG_NAME:= net-tools
PKG_VERSION:= 1.60
PKG_RELEASE:= 2
PKG_MD5SUM:= 888774accab40217dde927e21979c165
PKG_DESCR:= Linux net-tools
PKG_SECTION:= net
PKG_URL:= http://net-tools.sourceforge.net/
PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=net-tools/}
PKG_NOPARALLEL:= 1
PKG_SUBPKGS:= ARP
DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
include $(TOPDIR)/mk/package.mk
$(eval $(call PKG_template,ARP,arp,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
CONFIG_STYLE:= manual
INSTALL_STYLE:= manual
ifeq ($(ADK_TOOLCHAIN_GCC_USE_SSP),y)
TARGET_LDFLAGS+= -lssp
endif
do-configure:
$(CP) ./files/config.* $(WRKBUILD)/
arp-install:
$(INSTALL_DIR) $(IDIR_ARP)/sbin
$(INSTALL_BIN) $(WRKBUILD)/arp \
$(IDIR_ARP)/sbin
include ${TOPDIR}/mk/pkg-bottom.mk
|