2013-09-19 10:16:43 +02:00
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
# MAINTAINER: ports@FreeBSD.org
|
|
|
|
#
|
2014-02-25 01:32:09 +01:00
|
|
|
# Provide default versions for ports with multiple versions selectable
|
|
|
|
# by the user.
|
2013-09-19 10:16:43 +02:00
|
|
|
#
|
2014-02-25 01:32:09 +01:00
|
|
|
# Users who want to override these defaults can easily do so by defining
|
|
|
|
# DEFAULT_VERSIONS in their make.conf as follows:
|
2013-09-19 10:16:43 +02:00
|
|
|
#
|
2016-12-31 17:50:58 +01:00
|
|
|
# DEFAULT_VERSIONS= perl5=5.20 ruby=2.0
|
2013-09-19 10:16:43 +02:00
|
|
|
|
|
|
|
.if !defined(_INCLUDE_BSD_DEFAULT_VERSIONS_MK)
|
|
|
|
_INCLUDE_BSD_DEFAULT_VERSIONS_MK= yes
|
|
|
|
|
2016-06-23 12:19:02 +02:00
|
|
|
LOCALBASE?= /usr/local
|
|
|
|
|
2018-05-24 20:44:04 +02:00
|
|
|
.for lang in APACHE BDB COROSYNC EMACS FIREBIRD FORTRAN FPC GCC GHOSTSCRIPT \
|
2020-04-12 14:47:29 +02:00
|
|
|
JAVA JULIA LAZARUS LINUX LLVM LUA MYSQL PERL5 PGSQL PHP PYTHON PYTHON2 \
|
2019-05-28 08:12:47 +02:00
|
|
|
PYTHON3 RUBY RUST SAMBA SSL TCLTK VARNISH
|
2016-10-24 16:53:26 +02:00
|
|
|
.if defined(${lang}_DEFAULT)
|
2018-01-09 08:40:55 +01:00
|
|
|
ERROR+= "The variable ${lang}_DEFAULT is set and it should only be defined through DEFAULT_VERSIONS+=${lang:tl}=${${lang}_DEFAULT} in /etc/make.conf"
|
2016-10-24 16:53:26 +02:00
|
|
|
.endif
|
|
|
|
#.undef ${lang}_DEFAULT
|
|
|
|
.endfor
|
|
|
|
|
2013-09-19 10:16:43 +02:00
|
|
|
.for lang in ${DEFAULT_VERSIONS}
|
|
|
|
_l= ${lang:C/=.*//g}
|
2014-05-05 11:45:36 +02:00
|
|
|
${_l:tu}_DEFAULT= ${lang:C/.*=//g}
|
2013-09-19 10:16:43 +02:00
|
|
|
.endfor
|
|
|
|
|
2019-02-05 14:49:18 +01:00
|
|
|
# Possible values: 2.4
|
2014-07-13 17:51:43 +02:00
|
|
|
APACHE_DEFAULT?= 2.4
|
2016-05-02 15:16:52 +02:00
|
|
|
# Possible values: 48, 5, 6
|
|
|
|
BDB_DEFAULT?= 5
|
2018-05-24 20:44:04 +02:00
|
|
|
# Possible values: 2, 3
|
|
|
|
COROSYNC_DEFAULT?= 2
|
2018-02-01 19:03:09 +01:00
|
|
|
# Possible_values: full canna nox devel_full devel_nox
|
|
|
|
#EMACS_DEFAULT?= let the flavor be the default if not explicitly set
|
2016-04-14 15:34:25 +02:00
|
|
|
# Possible values: 2.5
|
2016-03-24 16:47:50 +01:00
|
|
|
FIREBIRD_DEFAULT?= 2.5
|
2017-11-18 14:09:56 +01:00
|
|
|
# Possible values: flang (experimental), gfortran
|
|
|
|
FORTRAN_DEFAULT?= gfortran
|
2018-03-07 18:33:33 +01:00
|
|
|
# Possible values: 3.0.4
|
2018-02-01 08:14:41 +01:00
|
|
|
FPC_DEFAULT?= 3.0.4
|
2019-12-22 03:09:47 +01:00
|
|
|
# Possible values: 8, 9 (powerpcspe was dropped with GCC 9)
|
2019-07-31 09:18:48 +02:00
|
|
|
.if ${ARCH} == "powerpcspe"
|
|
|
|
GCC_DEFAULT?= 8
|
|
|
|
.else
|
2019-07-26 22:35:21 +02:00
|
|
|
GCC_DEFAULT?= 9
|
2019-07-31 09:18:48 +02:00
|
|
|
.endif
|
2016-04-14 15:34:25 +02:00
|
|
|
# Possible values: 7, 8, 9, agpl
|
2016-03-24 16:47:50 +01:00
|
|
|
GHOSTSCRIPT_DEFAULT?= agpl
|
2020-04-12 14:47:29 +02:00
|
|
|
# Possible values: 7, 8, 11, 12, 13
|
|
|
|
JAVA_DEFAULT?= 8
|
2019-05-28 08:12:47 +02:00
|
|
|
# Possible values: 0.6, 0.7, 1.0, 1.1
|
|
|
|
JULIA_DEFAULT?= 1.0
|
2019-12-31 16:18:36 +01:00
|
|
|
# Possible values: 2.0.6
|
|
|
|
LAZARUS_DEFAULT?= 2.0.6
|
2019-12-31 18:07:55 +01:00
|
|
|
# Possible values: c7
|
2019-07-10 21:02:33 +02:00
|
|
|
LINUX_DEFAULT?= c7
|
2019-09-20 21:58:36 +02:00
|
|
|
# Possible values: 60, 70, 80, 90, -devel (to be used when non-base compiler is required)
|
2019-06-30 16:56:12 +02:00
|
|
|
# Please give notice to the Graphics Team (x11@FreeBSD.org) in advance before
|
|
|
|
# bumping the LLVM version.
|
2019-09-20 21:58:36 +02:00
|
|
|
LLVM_DEFAULT?= 90
|
2016-04-14 15:34:25 +02:00
|
|
|
# Possible values: 5.1, 5.2, 5.3
|
2014-01-12 22:16:06 +01:00
|
|
|
LUA_DEFAULT?= 5.2
|
2020-02-02 20:54:15 +01:00
|
|
|
# Possible values: 5.5, 5.6, 5.7, 8.0, 5.5m, 10.1m, 10.2m, 10.3m, 10.4m, 5.5p, 5.6p, 5.7p, 5.6w
|
2019-07-01 09:43:32 +02:00
|
|
|
MYSQL_DEFAULT?= 5.7
|
2019-05-13 09:36:38 +02:00
|
|
|
# Possible values: 5.26, 5.28, 5.30, devel
|
2015-10-20 22:26:59 +02:00
|
|
|
.if !exists(${LOCALBASE}/bin/perl) || (!defined(_PORTS_ENV_CHECK) && \
|
|
|
|
defined(PACKAGE_BUILDING))
|
2019-08-12 15:57:44 +02:00
|
|
|
PERL5_DEFAULT?= 5.30
|
2015-09-14 14:19:48 +02:00
|
|
|
.elif !defined(PERL5_DEFAULT)
|
|
|
|
# There's no need to replace development versions, like "5.23" with "devel"
|
|
|
|
# because 1) nobody is supposed to use it outside of poudriere, and 2) it must
|
|
|
|
# be set manually in /etc/make.conf in the first place, and we're never getting
|
|
|
|
# in here.
|
2015-10-19 22:53:15 +02:00
|
|
|
.if !defined(_PERL5_FROM_BIN)
|
2019-06-05 16:37:47 +02:00
|
|
|
_PERL5_FROM_BIN!= ${LOCALBASE}/bin/perl -e 'printf "%vd\n", $$^V;'
|
2015-10-19 22:53:15 +02:00
|
|
|
.endif
|
|
|
|
_EXPORTED_VARS+= _PERL5_FROM_BIN
|
2015-09-14 14:19:48 +02:00
|
|
|
PERL5_DEFAULT:= ${_PERL5_FROM_BIN:R}
|
|
|
|
.endif
|
2019-08-09 13:46:11 +02:00
|
|
|
# Possible values: 9.4, 9.5, 9.6, 10, 11, 12
|
2019-08-29 23:29:23 +02:00
|
|
|
PGSQL_DEFAULT?= 11
|
2019-12-22 16:08:15 +01:00
|
|
|
# Possible values: 7.2, 7.3, 7.4
|
2018-10-22 16:04:03 +02:00
|
|
|
PHP_DEFAULT?= 7.2
|
2019-11-03 00:40:39 +01:00
|
|
|
# Possible values: 2.7, 3.5, 3.6, 3.7, 3.8
|
2019-12-16 07:29:00 +01:00
|
|
|
PYTHON_DEFAULT?= 3.7
|
2016-04-14 15:34:25 +02:00
|
|
|
# Possible values: 2.7
|
2013-10-03 11:25:37 +02:00
|
|
|
PYTHON2_DEFAULT?= 2.7
|
2019-11-03 00:40:39 +01:00
|
|
|
# Possible values: 3.5, 3.6, 3.7, 3.8
|
2019-12-16 07:29:00 +01:00
|
|
|
PYTHON3_DEFAULT?= 3.7
|
2020-03-31 13:13:55 +02:00
|
|
|
# Possible values: 2.5, 2.6, 2.7
|
2019-09-09 07:08:35 +02:00
|
|
|
RUBY_DEFAULT?= 2.6
|
2019-01-04 05:00:39 +01:00
|
|
|
# Possible values: rust, rust-nightly
|
|
|
|
RUST_DEFAULT?= rust
|
2019-12-28 08:42:38 +01:00
|
|
|
# Possible values: 4.10
|
2019-12-07 01:42:23 +01:00
|
|
|
SAMBA_DEFAULT?= 4.10
|
2020-01-02 12:53:48 +01:00
|
|
|
# Possible values: base, openssl, libressl, libressl-devel
|
2016-06-16 15:22:58 +02:00
|
|
|
.if !defined(SSL_DEFAULT)
|
|
|
|
# If no preference was set, check for an installed base version
|
|
|
|
# but give an installed port preference over it.
|
2018-01-09 08:40:55 +01:00
|
|
|
. if !defined(SSL_DEFAULT) && \
|
2016-06-16 15:22:58 +02:00
|
|
|
!exists(${DESTDIR}/${LOCALBASE}/lib/libcrypto.so) && \
|
|
|
|
exists(${DESTDIR}/usr/include/openssl/opensslv.h)
|
|
|
|
SSL_DEFAULT= base
|
|
|
|
. else
|
|
|
|
. if exists(${DESTDIR}/${LOCALBASE}/lib/libcrypto.so)
|
2016-06-23 12:19:02 +02:00
|
|
|
. if defined(PKG_BIN)
|
2016-06-16 15:22:58 +02:00
|
|
|
# find installed port and use it for dependency
|
2016-06-23 12:19:02 +02:00
|
|
|
. if !defined(OPENSSL_INSTALLED)
|
|
|
|
. if defined(DESTDIR)
|
2016-06-16 15:22:58 +02:00
|
|
|
PKGARGS= -c ${DESTDIR}
|
2016-06-23 12:19:02 +02:00
|
|
|
. else
|
2016-06-16 15:22:58 +02:00
|
|
|
PKGARGS=
|
2016-06-23 12:19:02 +02:00
|
|
|
. endif
|
2016-06-16 15:22:58 +02:00
|
|
|
OPENSSL_INSTALLED!= ${PKG_BIN} ${PKGARGS} which -qo ${LOCALBASE}/lib/libcrypto.so || :
|
2016-06-23 12:19:02 +02:00
|
|
|
. endif
|
|
|
|
. if defined(OPENSSL_INSTALLED) && !empty(OPENSSL_INSTALLED)
|
2016-06-16 15:22:58 +02:00
|
|
|
SSL_DEFAULT:= ${OPENSSL_INSTALLED:T}
|
2016-06-17 00:35:23 +02:00
|
|
|
WARNING+= "You have ${OPENSSL_INSTALLED} installed but do not have DEFAULT_VERSIONS+=ssl=${SSL_DEFAULT} set in your make.conf"
|
2016-06-23 12:19:02 +02:00
|
|
|
. endif
|
|
|
|
. else
|
|
|
|
check-makevars::
|
|
|
|
@${ECHO_MSG} "You have a ${LOCALBASE}/lib/libcrypto.so file installed, but the framework is unable"
|
|
|
|
@${ECHO_MSG} "to determine what port it comes from."
|
|
|
|
@${ECHO_MSG} "Add DEFAULT_VERSIONS+=ssl=<openssl package name> to your /etc/make.conf and try again."
|
|
|
|
@${FALSE}
|
2016-06-16 15:22:58 +02:00
|
|
|
. endif
|
|
|
|
. endif
|
|
|
|
. endif
|
|
|
|
# Make sure we have a default in the end
|
|
|
|
SSL_DEFAULT?= base
|
|
|
|
.endif
|
2017-11-23 13:11:41 +01:00
|
|
|
# Possible values: 8.5, 8.6, 8.7
|
2014-01-12 22:16:06 +01:00
|
|
|
TCLTK_DEFAULT?= 8.6
|
2013-09-19 10:16:43 +02:00
|
|
|
|
2019-01-14 19:09:46 +01:00
|
|
|
# Possible values: 4, 6
|
2016-10-26 16:15:38 +02:00
|
|
|
VARNISH_DEFAULT?= 4
|
|
|
|
|
2013-09-19 10:16:43 +02:00
|
|
|
.endif
|