2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2005-09-09 06:36:23 +02:00
|
|
|
#
|
|
|
|
# cvs
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-06-06 01:53:25 +02:00
|
|
|
|
2010-09-26 09:13:57 +02:00
|
|
|
CVS_VERSION = 1.12.13
|
|
|
|
CVS_SOURCE = cvs_$(CVS_VERSION).orig.tar.gz
|
|
|
|
CVS_PATCH = cvs_$(CVS_VERSION)-12.diff.gz
|
|
|
|
CVS_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/c/cvs/
|
|
|
|
CVS_DEPENDENCIES = ncurses
|
2005-09-09 06:36:23 +02:00
|
|
|
|
2010-09-26 09:13:57 +02:00
|
|
|
CVS_CONF_ENV = cvs_cv_func_printf_ptr=yes
|
|
|
|
|
2013-07-20 08:52:43 +02:00
|
|
|
CVS_CONFIGURE_ARGS = --disable-old-info-format-support
|
2007-02-06 12:22:50 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_CVS_SERVER),y)
|
2013-07-20 08:52:43 +02:00
|
|
|
CVS_CONFIGURE_ARGS += --enable-server
|
2007-02-06 12:22:50 +01:00
|
|
|
else
|
2013-07-20 08:52:43 +02:00
|
|
|
CVS_CONFIGURE_ARGS += --disable-server
|
2007-02-06 12:22:50 +01:00
|
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
2013-07-20 08:52:43 +02:00
|
|
|
CVS_CONFIGURE_ARGS += --with-external-zlib
|
2007-02-06 12:22:50 +01:00
|
|
|
endif
|
|
|
|
|
2010-09-26 09:13:57 +02:00
|
|
|
CVS_CONF_OPT = $(CVS_CONFIGURE_ARGS)
|
2005-09-09 06:36:23 +02:00
|
|
|
|
2010-09-26 09:13:57 +02:00
|
|
|
define CVS_BZIP_UNPACK
|
|
|
|
$(BZCAT) $(@D)/cvs-$(CVS_VERSION).tar.bz2 | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
|
|
|
rm -f $(@D)/cvs-$(CVS_VERSION).tar.bz2
|
|
|
|
endef
|
|
|
|
|
|
|
|
CVS_POST_PATCH_HOOKS += CVS_BZIP_UNPACK
|
2007-02-06 12:22:50 +01:00
|
|
|
|
|
|
|
ifneq ($(CVS_PATCH),)
|
2010-09-26 09:13:57 +02:00
|
|
|
define CVS_DEBIAN_PATCHES
|
|
|
|
if [ -d $(@D)/debian/patches ]; then \
|
|
|
|
(cd $(@D)/debian/patches && for i in *; \
|
2007-08-22 11:56:41 +02:00
|
|
|
do $(SED) 's,^\+\+\+ .*cvs-$(CVS_VERSION)/,+++ cvs-$(CVS_VERSION)/,' $$i; \
|
|
|
|
done; \
|
|
|
|
); \
|
2011-08-31 23:35:04 +02:00
|
|
|
support/scripts/apply-patches.sh $(@D) $(@D)/debian/patches \*; \
|
2007-02-06 12:22:50 +01:00
|
|
|
fi
|
2010-09-26 09:13:57 +02:00
|
|
|
endef
|
2007-02-06 12:22:50 +01:00
|
|
|
endif
|
2005-09-09 06:36:23 +02:00
|
|
|
|
2010-09-26 09:13:57 +02:00
|
|
|
CVS_POST_PATCH_HOOKS += CVS_DEBIAN_PATCHES
|
2005-09-09 06:36:23 +02:00
|
|
|
|
2010-09-26 09:13:57 +02:00
|
|
|
define CVS_INSTALL_TARGET_CMDS
|
|
|
|
install -D $(@D)/src/cvs $(TARGET_DIR)/usr/bin/cvs
|
|
|
|
endef
|
2005-09-09 06:36:23 +02:00
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|
2005-09-09 06:36:23 +02:00
|
|
|
|
|
|
|
|