b90de0e5f7
git-svn-id: svn://svn.openwrt.org/openwrt/packages@10822 3c298f89-4303-0410-b956-a3cf2f4a3e73
97 lines
2.6 KiB
Makefile
97 lines
2.6 KiB
Makefile
#
|
|
# Copyright (C) 2007-2008 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
# $Id$
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=subversion
|
|
PKG_VERSION:=1.4.5
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=http://subversion.tigris.org/downloads/
|
|
PKG_MD5SUM:=4c333a5fe827568c67d195cda7a5e154
|
|
|
|
PKG_FIXUP = libtool
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/subversion/Default
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=A compelling replacement for CVS
|
|
DEPENDS:=+zlib +libneon +libintl +libapr +libaprutil
|
|
URL:=http://subversion.tigris.org/
|
|
SUBMENU:=subversion
|
|
endef
|
|
|
|
define Package/subversion-libs
|
|
$(call Package/subversion/Default)
|
|
TITLE:=subversion libs
|
|
endef
|
|
|
|
define Package/subversion-client
|
|
$(call Package/subversion/Default)
|
|
DEPENDS+=subversion-libs
|
|
TITLE:=subversion client tools
|
|
endef
|
|
|
|
define Package/subversion-server
|
|
$(call Package/subversion/Default)
|
|
DEPENDS+=subversion-libs
|
|
TITLE:=subversion server
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--with-apr="$(STAGING_DIR)/usr/bin/apr-1-config" \
|
|
--with-apr-util="$(STAGING_DIR)/usr/bin/apu-1-config" \
|
|
--with-neon="$(STAGING_DIR)/usr/include/neon" \
|
|
--disable-mod-activation \
|
|
--without-ruby-sitedir \
|
|
--without-swig \
|
|
--with-jikes=no \
|
|
--without-junit \
|
|
--without-berkeley-db \
|
|
--with-ssl \
|
|
--disable-neon-version-check \
|
|
--with-apxs=no \
|
|
--with-apache=no \
|
|
|
|
CONFIGURE_VARS += \
|
|
svn_lib_neon=yes \
|
|
LDFLAGS="-lcrypt -lnsl -lm -lintl -L$(STAGING_DIR)/usr/lib/libintl/lib/ \
|
|
-lz -L$(STAGING_DIR)/usr/lib/ -lpthread -L$(STAGING_DIR)/lib" \
|
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include/ -I$(STAGING_DIR)/usr/lib/libintl/include \
|
|
-I$(STAGING_DIR)/include/" \
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" all local-install
|
|
endef
|
|
|
|
define Package/subversion-libs/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libsvn_* $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/subversion-client/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/{svn,svnversion,svnsync} $(1)/usr/bin/
|
|
endef
|
|
|
|
define Package/subversion-server/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/svn{look,admin,dumpfilter,serve} $(1)/usr/bin/
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_DATA) ./files/subversion.config $(1)/etc/config/subversion
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/subversion.init $(1)/etc/init.d/subversion
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,subversion-libs))
|
|
$(eval $(call BuildPackage,subversion-client))
|
|
$(eval $(call BuildPackage,subversion-server))
|