2013-09-19 10:16:43 +02:00
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
# MAINTAINER: ports@FreeBSD.org
|
|
|
|
#
|
|
|
|
# Handle the default versions for users chosable multi versions.
|
|
|
|
#
|
2013-10-12 19:17:31 +02:00
|
|
|
# It expects users to define DEFAULT_VERSIONS in their make.conf
|
2013-09-19 10:16:43 +02:00
|
|
|
# Syntax is the following:
|
|
|
|
#
|
2013-09-20 15:13:30 +02:00
|
|
|
# DEFAULT_VERSIONS= perl5=5.18 ruby=2.0
|
2013-09-19 10:16:43 +02:00
|
|
|
|
|
|
|
.if !defined(_INCLUDE_BSD_DEFAULT_VERSIONS_MK)
|
|
|
|
_INCLUDE_BSD_DEFAULT_VERSIONS_MK= yes
|
|
|
|
|
|
|
|
.for lang in ${DEFAULT_VERSIONS}
|
|
|
|
_l= ${lang:C/=.*//g}
|
|
|
|
${_l:U}_DEFAULT= ${lang:C/.*=//g}
|
|
|
|
.endfor
|
|
|
|
|
2014-01-12 22:16:06 +01:00
|
|
|
LUA_DEFAULT?= 5.2
|
2013-10-23 12:26:23 +02:00
|
|
|
PERL5_DEFAULT?= 5.16
|
2014-01-12 22:16:06 +01:00
|
|
|
PGSQL_DEFAULT?= 9.0
|
2013-10-03 11:25:37 +02:00
|
|
|
PYTHON_DEFAULT?= 2.7
|
|
|
|
PYTHON2_DEFAULT?= 2.7
|
|
|
|
PYTHON3_DEFAULT?= 3.3
|
2014-01-12 22:16:06 +01:00
|
|
|
RUBY_DEFAULT?= 1.9
|
|
|
|
TCLTK_DEFAULT?= 8.6
|
2013-09-19 10:16:43 +02:00
|
|
|
|
|
|
|
.endif
|