massive Makefile cleanup, add missing 'svn:keywords' property

git-svn-id: svn://svn.openwrt.org/openwrt/packages@5348 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico
2006-10-30 13:51:50 +00:00
parent d6c03f5259
commit 5cb332fb35
139 changed files with 1341 additions and 1322 deletions

View File

@ -1,3 +1,4 @@
#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
@ -10,10 +11,10 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=atftp
PKG_VERSION:=0.7
PKG_RELEASE:=1
PKG_MD5SUM:=3b27365772d918050b2251d98a9c7c82
PKG_SOURCE_URL:=ftp://ftp.mamalinux.com/pub/atftp/
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=ftp://ftp.mamalinux.com/pub/atftp/
PKG_MD5SUM:=3b27365772d918050b2251d98a9c7c82
PKG_CAT:=zcat
TAR_OPTIONS += || true
@ -22,23 +23,23 @@ PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
include $(INCLUDE_DIR)/package.mk
define Package/atftp
define Package/atftp/Default
SECTION:=net
CATEGORY:=Network
DEPENDS:=+libreadline +libpcre
MENU:=1
TITLE:=TFTP client
DESCRIPTION:=TFTP client
TITLE:=TFTP
URL:=ftp://ftp.mamalinux.com/pub/atftp/
endef
define Package/atftp
$(call Package/atftp/Default)
DEPENDS:=+libreadline +libpcre
TITLE+= client
endef
define Package/atftpd
SECTION:=net
CATEGORY:=Network
DEPENDS:=atftp +libreadline +libpcre
TITLE:=TFTP server
DESCRIPTION:=TFTP server
URL:=ftp://ftp.mamalinux.com/pub/atftp/
$(call Package/atftp/Default)
DEPENDS:=+libreadline +libpcre
TITLE+= server
endef
define Package/atftpd/postinst
@ -52,24 +53,23 @@ if [ $$? -ne 0 ]; then
fi
endef
# uses GNU configure
define Build/Compile
rm -rf $(PKG_INSTALL_DIR)
mkdir -p $(PKG_INSTALL_DIR)
$(MAKE) -C $(PKG_BUILD_DIR) \
$(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS) -Wall -D_REENTRANT" \
DESTDIR=$(PKG_INSTALL_DIR) \
all install
all
endef
define Package/atftp/install
install -m0755 -d $(1)/usr/sbin
$(CP) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin
install -d -m0755 $(1)/usr/sbin
install -m0755 $(PKG_BUILD_DIR)/atftp $(1)/usr/sbin
endef
define Package/atftpd/install
install -m0755 -d $(1)/usr/sbin
$(CP) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/
install -d -m0755 $(1)/usr/sbin
install -m0755 $(PKG_BUILD_DIR)/atftpd $(1)/usr/sbin/
endef
$(eval $(call BuildPackage,atftp))