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:
@ -11,14 +11,13 @@ include $(TOPDIR)/rules.mk
|
||||
PKG_NAME:=openntpd
|
||||
PKG_VERSION:=3.7p1
|
||||
PKG_RELEASE:=1
|
||||
PKG_MD5SUM:=10ed8eefd760e5819efcf3277b118f47
|
||||
|
||||
# space separated list or special @SF for sourceforge projects
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=ftp://ftp.openbsd.org/pub/OpenBSD/OpenNTPD/ \
|
||||
ftp://ftp.de.openbsd.org/pub/unix/OpenBSD/OpenNTPD/ \
|
||||
ftp://ftp.fr.openbsd.org/pub/OpenBSD/OpenNTPD/ \
|
||||
ftp://ftp.sunet.se/pub/OpenBSD/OpenNTPD/
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_MD5SUM:=10ed8eefd760e5819efcf3277b118f47
|
||||
PKG_CAT:=zcat
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
@ -28,8 +27,9 @@ include $(INCLUDE_DIR)/package.mk
|
||||
define Package/openntpd
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
TITLE:=A free and easy to use NTP (Network Time Protocol) implementation
|
||||
DESCRIPTION:=NTP server
|
||||
TITLE:=NTP server
|
||||
DESCRIPTION:=\
|
||||
A free and easy to use NTP (Network Time Protocol) implementation.
|
||||
URL:=http://www.openntpd.org/
|
||||
endef
|
||||
|
||||
@ -75,24 +75,25 @@ grep -q '^ntp[[:space:]]*123/udp' $${IPKG_INSTROOT}/etc/services 2>/dev/null
|
||||
endef
|
||||
|
||||
define Build/Configure
|
||||
$(call Build/Configure/Default, --with-builtin-arc4random \
|
||||
$(call Build/Configure/Default, \
|
||||
--with-builtin-arc4random \
|
||||
--with-privsep-user=ntp \
|
||||
--with-adjtimex)
|
||||
--with-adjtimex \
|
||||
)
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
CFLAGS="$(TARGET_CFLAGS) -DUSE_ADJTIMEX"
|
||||
endef
|
||||
|
||||
define Package/openntpd/install
|
||||
install -d -m0755 $(1)/usr/sbin/
|
||||
install -m0755 $(PKG_BUILD_DIR)/ntpd $(1)/usr/sbin/
|
||||
install -d -m0755 $(1)/etc
|
||||
install -m0644 ./files/ntpd.conf $(1)/etc/
|
||||
install -d -m0755 $(1)/etc/init.d
|
||||
install -m0755 ./files/ntpd.init $(1)/etc/init.d/ntpd
|
||||
install -d -m0755 $(1)/usr/sbin/
|
||||
install -m0755 $(PKG_BUILD_DIR)/ntpd $(1)/usr/sbin/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,openntpd))
|
||||
|
Reference in New Issue
Block a user