Upgrade subversion to 1.5.0 (#3658)

git-svn-id: svn://svn.openwrt.org/openwrt/packages@11682 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2008-07-06 11:07:24 +00:00
parent 237f51761c
commit c978dcf2ee

View File

@ -9,12 +9,12 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=subversion
PKG_VERSION:=1.4.6
PKG_VERSION:=1.5.0
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://subversion.tigris.org/downloads/
PKG_MD5SUM:=9c7cf517362c1c9332b610339e5cce6b
PKG_MD5SUM:=004b57643406dd10957ec87955702189
PKG_FIXUP = libtool
@ -29,23 +29,46 @@ define Package/subversion/Default
SUBMENU:=subversion
endef
define Package/subversion/Default/description
Subversion is a free/open-source version control system. That is,
Subversion manages files and directories, and the changes made to them,
over time. This allows you to recover older versions of your data, or
examine the history of how your data changed. In this regard, many
people think of a version control system as a sort of time machine.
endef
define Package/subversion-libs
$(call Package/subversion/Default)
TITLE:=subversion libs
endef
define Package/subversion-libs/description
$(call Package/subversion/Default/description)
This package contains the subversion libraries.
endef
define Package/subversion-client
$(call Package/subversion/Default)
DEPENDS+=subversion-libs
TITLE:=subversion client tools
endef
define Package/subversion-client/description
$(call Package/subversion/Default/description)
This package contains the subversion client tools.
endef
define Package/subversion-server
$(call Package/subversion/Default)
DEPENDS+=subversion-libs
TITLE:=subversion server
endef
define Package/subversion-server/description
$(call Package/subversion/Default/description)
This package contains the subversion server.
endef
CONFIGURE_ARGS += \
--with-apr="$(STAGING_DIR)/usr/bin/apr-1-config" \
--with-apr-util="$(STAGING_DIR)/usr/bin/apu-1-config" \