2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-05-26 11:38:32 +02:00
|
|
|
#
|
|
|
|
# git
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-05-26 11:38:32 +02:00
|
|
|
|
2014-02-06 15:05:05 +01:00
|
|
|
GIT_VERSION = 1.8.5.4
|
2014-07-31 10:46:58 +02:00
|
|
|
GIT_SITE = http://git-core.googlecode.com/files
|
2013-05-26 11:38:32 +02:00
|
|
|
GIT_LICENSE = GPLv2 LGPLv2.1+
|
|
|
|
GIT_LICENSE_FILES = COPYING LGPL-2.1
|
2013-06-03 07:15:48 +02:00
|
|
|
GIT_DEPENDENCIES = zlib host-gettext
|
2013-05-26 11:38:32 +02:00
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
|
|
GIT_DEPENDENCIES += openssl
|
|
|
|
GIT_CONF_OPT += --with-openssl
|
|
|
|
else
|
|
|
|
GIT_CONF_OPT += --without-openssl
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_PERL),y)
|
|
|
|
GIT_DEPENDENCIES += perl
|
|
|
|
GIT_CONF_OPT += --with-libpcre
|
|
|
|
else
|
|
|
|
GIT_CONF_OPT += --without-libpcre
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_CURL),y)
|
|
|
|
GIT_DEPENDENCIES += curl
|
|
|
|
GIT_CONF_OPT += --with-curl
|
|
|
|
else
|
|
|
|
GIT_CONF_OPT += --without-curl
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_EXPAT),y)
|
|
|
|
GIT_DEPENDENCIES += expat
|
|
|
|
GIT_CONF_OPT += --with-expat
|
|
|
|
else
|
|
|
|
GIT_CONF_OPT += --without-expat
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
|
|
|
GIT_DEPENDENCIES += libiconv
|
2013-06-03 22:52:24 +02:00
|
|
|
GIT_CONF_ENV += LIBS=-liconv
|
2013-05-26 11:38:32 +02:00
|
|
|
GIT_CONF_OPT += --with-iconv=/usr/lib
|
|
|
|
else
|
|
|
|
GIT_CONF_OPT += --without-iconv
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_TCL),y)
|
|
|
|
GIT_DEPENDENCIES += tcl
|
|
|
|
GIT_CONF_OPT += --with-tcltk
|
|
|
|
else
|
|
|
|
GIT_CONF_OPT += --without-tcltk
|
|
|
|
endif
|
|
|
|
|
|
|
|
# assume yes for these tests, configure will bail out otherwise
|
|
|
|
# saying error: cannot run test program while cross compiling
|
2013-06-03 22:52:24 +02:00
|
|
|
GIT_CONF_ENV += ac_cv_fread_reads_directories=yes \
|
2013-05-26 11:38:32 +02:00
|
|
|
ac_cv_snprintf_returns_bogus=yes
|
|
|
|
|
|
|
|
$(eval $(autotools-package))
|