[packages] freecwmp: upgrade to latest git version

git-svn-id: svn://svn.openwrt.org/openwrt/packages@35668 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
luka 2013-02-18 16:22:03 +00:00
parent 2ca92840cb
commit 7f7f575dfe
3 changed files with 10 additions and 10 deletions

View File

@ -19,8 +19,8 @@ config FREECWMP_DEBUG
bool "Compile with debug options"
default n
config FREECWMP_DEVEL_DEBUG
bool "Compile with development debug options"
config FREECWMP_DEVEL
bool "Compile with development options"
default n
endif

View File

@ -1,5 +1,5 @@
#
# Copyright (C) 2012 OpenWrt.org
# Copyright (C) 2012-2013 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
@ -8,13 +8,13 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=freecwmp
PKG_VERSION:=2012-09-25
PKG_VERSION:=2013-02-18
PKG_RELEASE=$(PKG_SOURCE_VERSION)
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=git://dev.freecwmp.org/freecwmp
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE_VERSION:=4bfbd994921dee06a7a28bed1f2dee3d527490f4
PKG_SOURCE_VERSION:=c1a9c1883189fec77cba32c46bc26658ca3f8123
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
PKG_FIXUP:=autoreconf
@ -23,7 +23,7 @@ PKG_CONFIG_DEPENDS:= \
CONFIG_FREECWMP_ACS_MULTI \
CONFIG_FREECWMP_ACS_HDM \
CONFIG_FREECWMP_DEBUG \
CONFIG_FREECWMP_DEVEL_DEBUG
CONFIG_FREECWMP_DEVEL
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
@ -103,7 +103,7 @@ CONFIGURE_ARGS += \
--enable-debug
endif
ifeq ($(CONFIG_FREECWMP_DEVEL_DEBUG),y)
ifeq ($(CONFIG_FREECWMP_DEVEL),y)
CONFIGURE_ARGS += \
--enable-devel
endif

View File

@ -1,12 +1,12 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2012 OpenWrt.org
# Copyright (C) 2012-2013 OpenWrt.org
START=90
start() {
freecwmpd 2>/dev/null >/dev/null &
service_start freecwmpd
}
stop() {
killall -9 freecwmpd 2>/dev/null >/dev/null
service_stop freecwmpd
}