aboutsummaryrefslogtreecommitdiff
path: root/ports-mgmt
diff options
context:
space:
mode:
authorClement Laforet <clement@FreeBSD.org>2005-09-18 20:34:12 +0000
committerClement Laforet <clement@FreeBSD.org>2005-09-18 20:34:12 +0000
commite7b1560f4fa20ea4916bf8d6af3ee48a0f1fd3f2 (patch)
tree1c8cf5e0aa1fc65a75053409446be8fff84f63fd /ports-mgmt
parent527e44de909bddb249b140141e06c9d507fddcf4 (diff)
downloadports-e7b1560f4fa20ea4916bf8d6af3ee48a0f1fd3f2.tar.gz
ports-e7b1560f4fa20ea4916bf8d6af3ee48a0f1fd3f2.zip
- Sync portmk with next exp-build patchset.
- Remove temporarily all eik's work. We'll try to find a decent way to deal with major changes. Of course we'll reuse his good ideas List of changes (PR - synopsis) 85695 - Add bsd.database.mk. 85669 - bsd.ports.subdir.mk: Ports not escape plus signal in make search 85488 - [PATCH] New "makepatch: " target to help ports authors 86106 - ${CC} should be added to ${MAKE_ENV} when ${USE_GMAKE} is set 84489 - Depreciated MACHINE_ARCH being used in bsd.port.mk 83835 - Remove OpenLDAP ver. 21 83718 - Add bsd.tcl.mk for convinience for tcl/tk ports 83716 - Fix cosmetic bug in security-check target 83710 - Add INDEX-7 82753 - patch to add functionality to ports macro bsd.port.subdir.mk 82138 - [patch] timewaster: remove old versions from bsd.port.mk 81206 - new category proposal: net-im 79509 - add .desktop file facilities to bsd.port.mk 79123 - [patch] bsd.port.mk - add SHA256 support to "make checksum" 74866 - Update Mk/bsd.port.mk to support python packages with OPTIONS 73797 - Be causious compiling with -O2 (use -fno-strict-aliasing) 85490 - [PATCH] If WANT_LINT is set, port building can break XXXXX - Add bsd.apache.mk
Notes
Notes: svn path=/head/; revision=143098
Diffstat (limited to 'ports-mgmt')
-rw-r--r--ports-mgmt/portmk/Mk/bsd.apache.mk347
-rw-r--r--ports-mgmt/portmk/Mk/bsd.database.mk230
-rw-r--r--ports-mgmt/portmk/Mk/bsd.java.mk582
-rw-r--r--ports-mgmt/portmk/Mk/bsd.port.mk5185
-rw-r--r--ports-mgmt/portmk/Mk/bsd.port.post.mk3579
-rw-r--r--ports-mgmt/portmk/Mk/bsd.port.pre.mk419
-rw-r--r--ports-mgmt/portmk/Mk/bsd.port.subdir.mk433
-rw-r--r--ports-mgmt/portmk/Mk/bsd.tcl.mk145
-rw-r--r--ports-mgmt/portmk/scripts/distfiles.sh1103
-rw-r--r--ports-mgmt/portmk/scripts/options.pl373
-rw-r--r--ports-mgmt/portmk/scripts/options.sh299
-rw-r--r--ports-mgmt/portmk/scripts/ranksites-fping.pl139
-rw-r--r--ports-mgmt/portmk/scripts/ranksites-geoip.pl393
13 files changed, 6562 insertions, 6665 deletions
diff --git a/ports-mgmt/portmk/Mk/bsd.apache.mk b/ports-mgmt/portmk/Mk/bsd.apache.mk
new file mode 100644
index 000000000000..bee676ac49c7
--- /dev/null
+++ b/ports-mgmt/portmk/Mk/bsd.apache.mk
@@ -0,0 +1,347 @@
+#-*- mode: makefile; tab-width: 4; -*-
+# ex:ts=4
+#
+# $FreeBSD$
+#
+# bsd.apache.mk - Apache related macros.
+# Author: Clement Laforet <clement@FreeBSD.org>
+#
+# Please view me with 4 column tabs!
+
+##########################################################################
+#
+# Variables definition
+# USE_APACHE: Call this script. Values can be:
+# <version>: 1.3/13/2.0/20/2.1/1.3+/2.0+/2.1+
+# common*: common13, common20 and common21
+# apr: deal with apr stuff ;-)
+#
+
+# Print warnings
+_ERROR_MSG= : Error from bsd.apache.mk.
+APACHE_SUPPORTED_VERSION= 13 20 21
+.if ${USE_APACHE:Mcommon*} != ""
+AP_PORT_IS_SERVER= YES
+.elif ${USE_APACHE:L} == apr
+APR_DEPS= YES
+.elif ${USE_APACHE:C/\.//:C/\+//:M[12][310]} != ""
+AP_PORT_IS_MODULE= YES
+
+#### for backward compatibility
+.elif ${USE_APACHE:L} == yes
+APXS= ${LOCALBASE}/sbin/apxs
+. if defined(WITH_APACHE2)
+APACHE_PORT?= www/apache20
+. else
+APACHE_PORT?= www/apache13
+. endif
+APXS?= ${LOCALBASE}/sbin/apxs
+BUILD_DEPENDS+= ${APXS}:${PORTSDIR}/${APACHE_PORT}
+RUN_DEPENDS+= ${APXS}:${PORTSDIR}/${APACHE_PORT}
+#### End of backward compatibility
+
+.else
+IGNORE= ${_ERROR_MSG} Illegal use of USE_APACHE
+.endif
+
+.if defined(AP_PORT_IS_SERVER)
+# For slave ports:
+.if defined(SLAVE_DESIGNED_FOR) && ${PORTVERSION} != ${SLAVE_DESIGNED_FOR}
+IGNORE= "Sorry, ${SLAVENAME} and ${PORTNAME} versions are out of sync"
+.endif
+
+.if defined(SLAVE_PORT_MODULES)
+DEFAULT_MODULES_CATEGORIES+= SLAVE_PORT
+ALL_MODULES_CATEGORIES+= SLAVE_PORT
+.endif
+
+# Module selection
+.for category in ${DEFAULT_MODULES_CATEGORIES}
+DEFAULT_MODULES+= ${${category}_MODULES}
+WITH_${category}_MODULES= YES
+.endfor
+
+.for category in ${ALL_MODULES_CATEGORIES}
+AVAILABLE_MODULES+= ${${category}_MODULES}
+.endfor
+
+# Setting "@comment " as default.
+.for module in ${AVAILABLE_MODULES}
+${module}_PLIST_SUB= "@comment "
+.endfor
+
+# Configure
+# dirty hacks to make sure all modules are disabled before we select them
+.if ${USE_APACHE} == common13
+CONFIGURE_ARGS+= --disable-module="all"
+.elif ${USE_APACHE} == common20
+CONFIGURE_ARGS+= --disable-access --disable-auth \
+ --disable-charset-lite --disable-include \
+ --disable-log-config --disable-env --disable-setenvif \
+ --disable-mime --disable-status --disable-autoindex \
+ --disable-asis --disable-cgid --disable-cgi \
+ --disable-negotiation --disable-dir --disable-imap \
+ --disable-actions --disable-userdir --disable-alias
+.elif ${USE_APACHE} == common21
+CONFIGURE_ARGS+= --disable-authn-file --disable-authn-default \
+ --disable-authz-host --disable-authz-groupfile \
+ --disable-authz-user --disable-authz-default \
+ --disable-auth-basic --disable-charset-lite \
+ --disable-include --disable-log-config --disable-env \
+ --disable-setenvif --disable-mime --disable-status \
+ --disable-autoindex --disable-asis --disable-cgid \
+ --disable-cgi --disable-negotiation --disable-dir \
+ --disable-imap --disable-actions --disable-userdir \
+ --disable-alias
+.endif
+
+.if defined(WITH_MODULES)
+_APACHE_MODULES+= ${WITH_MODULES}
+.else
+.for category in ${ALL_MODULES_CATEGORIES}
+.if defined (WITHOUT_${category}_MODULES) || defined (WITH_CUSTOM_${category})
+. if defined(WITH_${category}_MODULES})
+. undef WITH_${category}_MODULES
+. endif
+. if defined (WITH_CUSTOM_${category})
+_APACHE_MODULES+= ${WITH_CUSTOM_${category}}
+. endif
+.elif defined(WITH_${category}_MODULES)
+_APACHE_MODULES+= ${${category}_MODULES}
+.endif
+.endfor
+. if defined(WITH_EXTRA_MODULES)
+_APACHE_MODULES+= ${WITH_EXTRA_MODULES}
+. endif
+.endif
+
+.if !defined(WITH_STATIC_APACHE)
+. if ${USE_APACHE:Mcommon2*} != ""
+# FYI
+#DYNAMIC_MODULES= so
+CONFIGURE_ARGS+= --enable-so
+. endif
+.else
+. if ${USE_APACHE:Mcommon2*} != ""
+CONFIGURE_ARGS+= --disable-so
+. endif
+WITH_ALL_STATIC_MODULES= YES
+.endif
+
+.if defined(WITH_SUEXEC) || defined(WITH_SUEXEC_MODULES)
+.if ${USE_APACHE} == common13
+SUEXEC_CONFARGS= suexec
+CONFIGURE_ARGS+= --enable-suexec
+.elif ${USE_APACHE:Mcommon2*} != ""
+SUEXEC_CONFARGS= with-suexec
+.endif
+
+# From now we're defaulting to apache 2.*
+SUEXEC_DOCROOT?= ${PREFIX}/www/data
+SUEXEC_USERDIR?= public_html
+SUEXEC_SAFEPATH?= ${PREFIX}/bin:${LOCALBASE}/bin:/usr/bin:/bin
+SUEXEC_LOGFILE?= /var/log/httpd-suexec.log
+SUEXEC_UIDMIN?= 1000
+SUEXEC_GIDMIN?= 1000
+SUEXEC_CALLER?= ${WWWOWN}
+_APACHE_MODULES+= ${SUEXEC_MODULES}
+CONFIGURE_ARGS+= --${SUEXEC_CONFARGS}-caller=${SUEXEC_CALLER} \
+ --${SUEXEC_CONFARGS}-uidmin=${SUEXEC_UIDMIN} \
+ --${SUEXEC_CONFARGS}-gidmin=${SUEXEC_GIDMIN} \
+ --${SUEXEC_CONFARGS}-userdir="${SUEXEC_USERDIR}" \
+ --${SUEXEC_CONFARGS}-docroot="${SUEXEC_DOCROOT}" \
+ --${SUEXEC_CONFARGS}-safepath="${SUEXEC_SAFEPATH}" \
+ --${SUEXEC_CONFARGS}-logfile="${SUEXEC_LOGFILE}" \
+ --${SUEXEC_CONFARGS}-bin="${PREFIX}/sbin/suexec"
+. if defined(WITH_SUEXEC_UMASK)
+CONFIGURE_ARGS+= --${SUEXEC_CONFARGS}-umask=${WITH_SUEXEC_UMASK}
+. endif
+.endif
+
+.if !defined(WITHOUT_MODULES)
+APACHE_MODULES= ${_APACHE_MODULES}
+.else
+APACHE_MODULES!= \
+ for module in ${_APACHE_MODULES}; do \
+ ${ECHO_CMD} ${WITHOUT_MODULES} | ${GREP} -wq $${module} 2> /dev/null || \
+ ${ECHO_CMD} $${module}; \
+ done
+.endif
+
+.if defined(WITH_STATIC_MODULES)
+. if ${USE_APACHE} == common13
+STATIC_MODULE_CONFARG= --enable-module=$${module}
+DSO_MODULE_CONFARG= --enable-module=$${module} --enable-shared=$${module}
+. else
+STATIC_MODULE_CONFARG= --enable-$${module}
+DSO_MODULE_CONFARG= --enable-$${module}=shared
+.endif
+_CONFIGURE_ARGS!= \
+ for module in ${APACHE_MODULES} ; do \
+ ${ECHO_CMD} ${WITH_STATIC_MODULES} | \
+ ${GREP} -wq $${module} 2> /dev/null ; \
+ if [ "$${?}" = "0" ] ; then \
+ ${ECHO_CMD} "${STATIC_MODULE_CONFARG}"; \
+ else \
+ ${ECHO_CMD} "${DSO_MODULE_CONFARG}"; \
+ fi; done
+CONFIGURE_ARGS+= ${_CONFIGURE_ARGS}
+.elif defined(WITH_STATIC_APACHE) || defined(WITH_ALL_STATIC_MODULES)
+WITH_STATIC_MODULES= ${APACHE_MODULES}
+. if ${USE_APACHE} == common13
+. for module in ${APACHE_MODULES}
+CONFIGURE_ARGS+= --enable-module=${module}
+. endfor
+. else
+CONFIGURE_ARGS+= --enable-modules="${APACHE_MODULES}"
+. endif
+.else
+. if ${USE_APACHE} == common13
+. for module in ${APACHE_MODULES}
+CONFIGURE_ARGS+= --enable-module=${module} --enable-shared=${module}
+. endfor
+. else
+CONFIGURE_ARGS+= --enable-mods-shared="${APACHE_MODULES}"
+. endif
+.endif
+
+.if defined(WITH_STATIC_MODULES)
+_SHARED_MODULES!= \
+ for module in ${APACHE_MODULES} ; do \
+ ${ECHO_CMD} ${WITH_STATIC_MODULES} | ${GREP} -wq $${module} 2> /dev/null || \
+ ${ECHO_CMD} $${module}; \
+ done
+SHARED_MODULES= ${_SHARED_MODULES}
+.elif !defined(WITH_ALL_STATIC_MODULES)
+SHARED_MODULES= ${APACHE_MODULES}
+.endif
+
+. for module in ${SHARED_MODULES}
+${module}_PLIST_SUB= ""
+. endfor
+
+.for module in ${AVAILABLE_MODULES}
+PLIST_SUB+= MOD_${module:U}=${${module}_PLIST_SUB}
+.endfor
+####End of PORT_IS_SERVER ####
+
+.elif defined(APR_DEPS)
+IGNORE= ${_ERROR_MSG} apr support is not yet implemented
+
+.elif defined(AP_PORT_IS_MODULE)
+AP_VERSION= ${USE_APACHE:C/\.//}
+
+APXS?= ${LOCALBASE}/sbin/apxs
+HTTPD?= ${LOCALBASE}/sbin/httpd
+
+MODULENAME?= ${PORTNAME}
+SHORTMODNAME?= ${MODULENAME:S/mod_//}
+SRC_FILE?= ${MODULENAME}.c
+OVERRIDABLE_VARS= SRC_FILE MODULENAME SHORTMODNAME WRKSRC \
+ PKGNAMESUFFIX
+
+.if exists(${HTTPD})
+AP_CUR_VERSION!= ${HTTPD} -V | ${SED} -ne 's/^Server version: Apache\/\([0-9]\)\.\([0-9]*\).*/\1\2/p'
+. if ${AP_CUR_VERSION} > 13
+APACHE_MPM!= ${APXS} -q MPM_NAME
+. endif
+.elif defined(APACHE_PORT)
+AP_CUR_VERSION!= ${ECHO_CMD} ${APACHE_PORT} | ${SED} -ne 's,.*/apache\([0-9]*\).*,\1,p'
+.endif
+
+.if defined(AP_CUR_VERSION)
+VERSION_CHECK!= eval `${ECHO_CMD} "[ ${AP_VERSION} -eq ${AP_CUR_VERSION} ]" | ${SED} -e 's/- -eq/ -ge/ ; s/+ -eq/ -le/' ` ; ${ECHO_CMD} $${?}
+. if ${VERSION_CHECK} == 1
+IGNORE= ${_ERROR_MSG} apache${AP_CUR_VERSION} is installed (or APACHE_PORT is defined) and port requires ${USE_APACHE}
+. endif
+APACHE_VERSION= ${AP_CUR_VERSION}
+.else
+AP_CUR_VERSION= none
+. if !defined(${APACHE_PORT})
+#Fallback to smallest version...
+APACHE_VERSION= ${AP_VERSION:C/\+//}
+. endif
+.endif
+
+.if exists(${APXS})
+APXS_PREFIX!= ${APXS} -q prefix 2> /dev/null || echo NULL
+. if ${APXS_PREFIX} == NULL
+IGNORE= : Your apache does not support DSO modules
+. endif
+. if defined(AP_GENPLIST) && ${APXS_PREFIX} != ${PREFIX}
+IGNORE?= PREFIX must be egal to APXS_PREFIX.
+. endif
+.endif
+
+.if ${APACHE_VERSION} == "20"
+AP_BUILDEXT= la
+PLIST_SUB+= APACHEMODDIR="libexec/apache2" \
+ APACHEINCLUDEDIR="include/apache2"
+APACHE_PORT= www/apache${APACHE_VERSION}
+.elif ${APACHE_VERSION} == "21"
+AP_BUILDEXT= la
+PLIST_SUB+= APACHEMODDIR="libexec/apache${APACHE_VERSION}" \
+ APACHEINCLUDEDIR="include/apache${APACHE_VERSION}"
+APACHE_PORT= www/apache${APACHE_VERSION}
+.else
+AP_BUILDEXT= so
+PLIST_SUB+= APACHEMODDIR="libexec/apache" \
+ APACHEINCLUDEDIR="include/apache"
+APACHE_PORT?= www/apache13
+.endif
+.for VAR in ${OVERRIDABLE_VARS}
+. if defined(AP${APACHE_VERSION}_${VAR})
+${VAR} =${AP${APACHE_VERSION}_${VAR}}
+. endif
+.endfor
+
+BUILD_DEPENDS+= ${APXS}:${PORTSDIR}/${APACHE_PORT}
+RUN_DEPENDS+= ${APXS}:${PORTSDIR}/${APACHE_PORT}
+PLIST_SUB+= AP_NAME="${SHORTMODNAME}"
+PLIST_SUB+= AP_MODULE="${MODULENAME}.so"
+
+.if defined(AP_GENPLIST)
+PLIST?= ${WRKDIR}/ap-plist
+.endif
+
+.if defined(AP_INC)
+AP_EXTRAS+= -I ${AP_INC}
+.endif
+.if defined(AP_LIB)
+AP_EXTRAS+= -L ${AP_LIB}
+.endif
+
+.endif
+
+.if defined(AP_PORT_IS_SERVER)
+.elif defined(AP_PORT_IS_MODULE)
+
+.if defined(AP_FAST_BUILD)
+.if !target(ap-gen-plist)
+ap-gen-plist:
+.if defined(AP_GENPLIST)
+. if !exists(${PLIST})
+ @${ECHO} "===> Generating apache plist"
+ @${ECHO} "@unexec %D/sbin/apxs -e -A -n %%AP_NAME%% %D/%%APACHEMODDIR%%/%%AP_MODULE%%" > ${PLIST}
+ @${ECHO} "%%APACHEMODDIR%%/%%AP_MODULE%%" >> ${PLIST}
+ @${ECHO} "@exec %D/sbin/apxs -e -A -n %%AP_NAME%% %D/%F" >> ${PLIST}
+ @${ECHO} "@unexec echo \"Don't forget to remove all ${MODULENAME}-related directives in your httpd.conf\"">> ${PLIST}
+. endif
+.else
+ @${DO_NADA}
+.endif
+.endif
+
+.if !target(do-build)
+do-build: ap-gen-plist
+ @cd ${WRKSRC} && ${APXS} -c ${AP_EXTRAS} -o ${MODULENAME}.${AP_BUILDEXT} ${SRC_FILE}
+.endif
+
+.if !target(do-install)
+do-install:
+ @${APXS} -i -A -n ${SHORTMODNAME} ${WRKSRC}/${MODULENAME}.${AP_BUILDEXT}
+.endif
+
+.endif
+
+.endif
diff --git a/ports-mgmt/portmk/Mk/bsd.database.mk b/ports-mgmt/portmk/Mk/bsd.database.mk
new file mode 100644
index 000000000000..a50b8033bf6f
--- /dev/null
+++ b/ports-mgmt/portmk/Mk/bsd.database.mk
@@ -0,0 +1,230 @@
+# -*- mode: Makefile; tab-width: 4; -*-
+# ex: ts=4
+#
+# $FreeBSD$
+#
+
+.if defined(_POSTMKINCLUDED) && !defined(Database_Post_Include)
+
+Database_Post_Include= bsd.database.mk
+Database_Include_MAINTAINER= vsevolod@FreeBSD.org
+
+# This file contains some routines to interact with different databases, such
+# as mysql, postgresql and berkley DB. For including this file define macro
+# USE_[DATABASE], for example USE_MYSQL. Defining macro like USE_[DATABASE]_VER
+# or WANT_[DATABSE]_VER will include this file too.
+#
+##
+# USE_MYSQL - Add MySQL client dependency.
+# If no version is given (by the maintainer via the port or
+# by the user via defined variable), try to find the
+# currently installed version. Fall back to default if
+# necessary (MySQL4.1 = 41).
+# DEFAULT_MYSQL_VER
+# - MySQL default version. Can be overriden within a port.
+# Default: 41.
+# WANT_MYSQL_VER
+# - Maintainer can set an arbitrary version of MySQL by using it.
+# BROKEN_WITH_MYSQL
+# - This variable can be defined if the ports doesn't support
+# one or more version of MySQL.
+# MYSQL_VER - Internal variable for MySQL version.
+# WITH_MYSQL_VER
+# - User defined variable to set MySQL version.
+##
+# USE_PGSQL - Add PostgreSQL client dependency.
+# If no version is given (by the maintainer via the port or
+# by the user via defined variable), try to find the
+# currently installed version. Fall back to default if
+# necessary (PostgreSQL-7.4 = 74).
+# DEFAULT_PGSQL_VER
+# - PostgreSQL default version. Can be overridden within a port.
+# Default: 74.
+# WANT_PGSQL_VER
+# - Maintainer can set an arbitrary version of PostgreSQL by
+# using it.
+# BROKEN_WITH_PGSQL
+# - This variable can be defined if the ports doesn't support
+# one or more versions of PostgreSQL.
+##
+# USE_BDB - Add Berkley DB library dependency.
+# If no version is given (by the maintainer via the port or
+# by the user via defined variable), try to find the
+# currently installed version. Fall back to default if
+# necessary (db41+).
+##
+# USE_SQLITE - Add dependency on sqlite library. Valid values are:
+# 3 and 2. If version is not specified directly then
+# sqlite3 is used (if USE_SQLITE= yes).
+
+.if defined(USE_MYSQL)
+DEFAULT_MYSQL_VER?= 41
+# MySQL client version currently supported.
+MYSQL323_LIBVER= 10
+MYSQL40_LIBVER= 12
+MYSQL41_LIBVER= 14
+MYSQL50_LIBVER= 14
+
+# Setting/finding MySQL version we want.
+.if exists(${LOCALBASE}/bin/mysql)
+_MYSQL_VER!= ${LOCALBASE}/bin/mysql --version | ${SED} -e 's/.*Distrib \([0-9]\)\.\([0-9]*\).*/\1\2/'
+.endif
+
+.if defined(WANT_MYSQL_VER)
+.if defined(WITH_MYSQL_VER) && ${WITH_MYSQL_VER} != ${WANT_MYSQL_VER}
+BROKEN= The port wants mysql${WANT_MYSQL_VER}-client and you try to install mysql${WITH_MYSQL_VER}-client.
+.endif
+MYSQL_VER= ${WANT_MYSQL_VER}
+.elif defined(WITH_MYSQL_VER)
+MYSQL_VER= ${WITH_MYSQL_VER}
+.else
+.if defined(_MYSQL_VER)
+MYSQL_VER= ${_MYSQL_VER}
+.else
+MYSQL_VER= ${DEFAULT_MYSQL_VER}
+.endif
+.endif # WANT_MYSQL_VER
+
+.if defined(_MYSQL_VER)
+.if ${_MYSQL_VER} != ${MYSQL_VER}
+BROKEN= MySQL versions mismatch: mysql${_MYSQL_VER}-client is installed and wanted version is mysql${MYSQL_VER}-client
+.endif
+.endif
+
+# And now we are checking if we can use it
+.if defined(MYSQL${MYSQL_VER}_LIBVER)
+.if defined(BROKEN_WITH_MYSQL)
+. for VER in ${BROKEN_WITH_MYSQL}
+. if (${MYSQL_VER} == "${VER}")
+IGNORE= "Doesn't work with MySQL version : ${MYSQL_VER} (Doesn't support MySQL ${BROKEN_WITH_MYSQL})"
+. endif
+. endfor
+.endif # BROKEN_WITH_MYSQL
+LIB_DEPENDS+= mysqlclient.${MYSQL${MYSQL_VER}_LIBVER}:${PORTSDIR}/databases/mysql${MYSQL_VER}-client
+.else
+IGNORE= "Unknown MySQL version: ${MYSQL_VER}"
+.endif # Check for correct libs
+.endif # USE_MYSQL
+
+.if defined(USE_PGSQL)
+DEFAULT_PGSQL_VER?= 74
+PGSQL73_LIBVER= 3
+PGSQL74_LIBVER= 3
+PGSQL80_LIBVER= 4
+
+# Setting/finding PostgreSQL version we want.
+.if exists(${LOCALBASE}/bin/pg_config)
+_PGSQL_VER!= ${LOCALBASE}/bin/pg_config --version | ${SED} -n 's/PostgreSQL[^0-9]*\([0-9][0-9]*\)\.\([0-9][0-9]*\)\..*/\1\2/p'
+.endif
+
+.if defined(WANT_PGSQL_VER) && defined(_PGSQL_VER) && ${WANT_PGSQL_VER} != ${_PGSQL_VER}
+BROKEN= the port wants postgresql${WANT_PGSQL_VER}-client but you have postgresql${_PGSQL_VER}-client installed
+.endif
+
+.if defined(_PGSQL_VER)
+PGSQL_VER= ${_PGSQL_VER}
+.elif defined(WANT_PGSQL_VER)
+PGSQL_VER= ${WANT_PGSQL_VER}
+.else
+PGSQL_VER= ${DEFAULT_PGSQL_VER}
+.endif
+
+# And now we are checking if we can use it
+.if defined(PGSQL${PGSQL_VER}_LIBVER)
+.if defined(BROKEN_WITH_PGSQL)
+. for VER in ${BROKEN_WITH_PGSQL}
+. if (${PGSQL_VER} == "${VER}")
+IGNORE= "Does not work with postgresql${PGSQL_VER}-client PostgresSQL \(${BROKEN_WITH_PGSQL} not supported\)"
+. endif
+. endfor
+.endif # BROKEN_WITH_PGSQL
+LIB_DEPENDS+= pq.${PGSQL${PGSQL_VER}_LIBVER}:${PORTSDIR}/databases/postgresql${PGSQL_VER}-client
+.else
+IGNORE= "Unknown PostgreSQL version: ${PGSQL_VER}"
+.endif # Check for correct version
+CPPFLAGS+= -I${LOCALBASE}/include
+LDFLAGS+= -L${LOCALBASE}/lib
+CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
+.endif # USE_PGSQL
+
+
+.if defined(USE_BDB)
+
+_DB_PORTS= 2 3 40 41 42 43 40+ 41+ 42+ 43+
+# Dependence lines for different db versions
+db2_DEPENDS= db2.0:${PORTSDIR}/databases/db2
+db3_DEPENDS= db3.3:${PORTSDIR}/databases/db3
+db40_DEPENDS= db4.0:${PORTSDIR}/databases/db4
+db41_DEPENDS= db41.1:${PORTSDIR}/databases/db41
+db42_DEPENDS= db-4.2.2:${PORTSDIR}/databases/db42
+db43_DEPENDS= db-4.3.0:${PORTSDIR}/databases/db43
+# Detect db4 versions by finding some files
+db40_FIND= ${PREFIX}/include/db4/db.h
+db41_FIND= ${PREFIX}/include/db41/db.h
+db42_FIND= ${PREFIX}/include/db42/db.h
+db43_FIND= ${PREFIX}/include/db43/db.h
+
+# For specifying 40+ 41+ 42+
+_DB_40P= 40 41 42 43
+_DB_41P= 41 42 43
+_DB_42P= 42 43
+
+_WANT_BDB_VER= ${USE_BDB}
+
+# Assume the default bdb version as 41
+.if ${USE_BDB} == "yes"
+_WANT_BDB_VER= 41+
+.endif
+
+# Detect bdb version
+_FOUND= no
+
+.for bdb in ${_DB_PORTS}
+.if ${_WANT_BDB_VER} == "${bdb}" && ${_FOUND} == "no"
+_MATCHED_DB_VER:= ${bdb:S/+//}
+. if ${_MATCHED_DB_VER} == "${bdb}"
+# USE_BDB is exactly specified
+LIB_DEPENDS+= ${db${bdb}_DEPENDS}
+_FOUND= yes
+.else
+# USE_BDB is specified as VER+
+. for db4 in ${_DB_${_MATCHED_DB_VER}P}
+. if exists(${db${db4}_FIND}) && ${_FOUND} == "no"
+LIB_DEPENDS+= ${db${db4}_DEPENDS}
+_FOUND= yes
+. endif
+. endfor
+. if ${_FOUND} == "no"
+# No existing db4 version is detected in system
+LIB_DEPENDS+= ${db${_MATCHED_DB_VER}_DEPENDS}
+_FOUND= yes
+. endif
+. endif
+.endif
+.endfor
+
+# USE_BDB is specified incorrectly, so mark this as BROKEN
+.if ${_FOUND} == "no"
+IGNORE= "Unknown bdb version: ${USE_BDB}"
+.endif
+
+.endif # USE_BDB
+
+# Handling sqlite dependency
+.if defined(USE_SQLITE)
+
+.if ${USE_SQLITE} == "yes"
+_SQLITE_VER= 3
+.else
+_SQLITE_VER= ${USE_SQLITE}
+.endif
+
+.if ${_SQLITE_VER} != "3" && ${_SQLITE_VER} != "2"
+IGNORE= "Unknown sqlite version: ${_SQLITE_VER}"
+.endif
+
+LIB_DEPENDS+= sqlite${_SQLITE_VER}:${PORTSDIR}/databases/sqlite${_SQLITE_VER}
+
+.endif # defined(USE_SQLITE)
+
+.endif # defined(_POSTMKINCLUDED) && !defined(Database_Post_Include)
diff --git a/ports-mgmt/portmk/Mk/bsd.java.mk b/ports-mgmt/portmk/Mk/bsd.java.mk
new file mode 100644
index 000000000000..e79f6ca67f65
--- /dev/null
+++ b/ports-mgmt/portmk/Mk/bsd.java.mk
@@ -0,0 +1,582 @@
+#-*- mode: Fundamental; tab-width: 4; -*-
+# ex:ts=4
+#
+# bsd.java.mk - Support for Java-based ports.
+#
+# Created by: Ernst de Haan <znerd@FreeBSD.org>
+#
+# For FreeBSD committers:
+# Please send all suggested changes to the maintainer instead of committing
+# them to CVS yourself.
+#
+# $FreeBSD$
+#
+
+.if !defined(Java_Include)
+
+Java_Include= bsd.java.mk
+Java_Include_MAINTAINER= glewis@FreeBSD.org hq@FreeBSD.org
+
+#-------------------------------------------------------------------------------
+# Variables that each port can define:
+#
+# USE_JAVA Should be defined to the remaining variables to have any
+# effect
+#
+# JAVA_VERSION List of space-separated suitable java versions for the
+# port. An optional "+" allows you to specify a range of
+# versions. (allowed values: 1.1[+] 1.2[+] 1.3[+] 1.4[+])
+#
+# JAVA_OS List of space-separated suitable JDK port operating systems
+# for the port. (allowed values: native linux)
+#
+# JAVA_VENDOR List of space-separated suitable JDK port vendors for the
+# port. (allowed values: freebsd bsdjava sun ibm blackdown)
+#
+# JAVA_BUILD When set, it means that the selected JDK port should be
+# added to build dependencies for the port.
+#
+# JAVA_RUN This variable works exactly the same as JAVA_BUILD but
+# regarding run dependencies.
+#
+# USE_JIKES Whether the port should or should not use jikes(1) to build.
+# See Stage 6 header for further detail.
+#
+# USE_ANT Should be defined when the port uses Apache Ant. Ant is thus
+# considered to be the sub-make command. When no 'do-build'
+# target is defined by the port, a default one will be set
+# that simply runs Ant according to MAKE_ENV, MAKE_ARGS and
+# ALL_TARGET. Read the documentation in bsd.port.mk for more
+# information.
+#
+#-------------------------------------------------------------------------------
+# Variables defined for the port:
+#
+# JAVA_PORT The name of the JDK port. (e.g. 'java/jdk14')
+#
+# JAVA_PORT_VERSION The version of the JDK port. (e.g. '1.4')
+#
+# JAVA_PORT_OS The operating system used by the JDK port. (e.g. 'linux')
+#
+# JAVA_PORT_VENDOR The vendor of the JDK port. (e.g. 'sun')
+#
+# JAVA_PORT_OS_DESCRIPTION Description of the operating system used by the
+# JDK port. (e.g. 'Linux')
+#
+# JAVA_PORT_VENDOR_DESCRIPTION Description of the vendor of the JDK port.
+# (e.g. 'FreeBSD Foundation')
+#
+# JAVA_HOME Path to the installation directory of the JDK. (e.g.
+# '/usr/local/jdk1.3.1')
+#
+# JAVAC Path to the Java compiler to use. (e.g.
+# '/usr/local/jdk1.1.8/bin/javac' or '/usr/local/bin/jikes')
+#
+# JAR Path to the JAR tool to use. (e.g.
+# '/usr/local/jdk1.2.2/bin/jar' or '/usr/local/bin/fastjar')
+#
+# APPLETVIEWER Path to the appletviewer utility. (e.g.
+# '/usr/local/linux-jdk1.2.2/bin/appletviewer')
+#
+# JAVA Path to the java executable. Use this for executing Java
+# programs. (e.g. '/usr/local/jdk1.3.1/bin/java')
+#
+# JAVADOC Path to the javadoc utility program.
+#
+# JAVAH Path to the javah program.
+#
+# JAVAP Path to the javap program.
+#
+# JAVA_KEYTOOL Path to the keytool utility program. This settings is
+# availble only if the JDK is Java 1.2 or higher.
+#
+# JAVA_N2A Path to the native2ascii tool.
+#
+# JAVA_POLICYTOOL Path to the policytool program. This variable is available
+# only if the JDK is Java 1.2 or higher.
+#
+# JAVA_SERIALVER Path to the serialver utility program.
+#
+# RMIC Path to the RMI stub/skeleton generator, rmic.
+#
+# RMIREGISTRY Path to the RMI registry program, rmiregistry.
+#
+# RMID Path to the RMI daemon program. This settings is only
+# available if the JDK is Java 1.2 or higher.
+#
+# JAVA_CLASSES Path to the archive that contains the JDK class files. On
+# JDK 1.2 or later, this is ${JAVA_HOME}/jre/lib/rt.jar.
+# Earlier JDK's use ${JAVA_HOME}/lib/classes.zip.
+#
+# JAVASHAREDIR The base directory for all shared Java resources.
+#
+# JAVAJARDIR The directory where a port should install JAR files.
+#
+# JAVALIBDIR The directory where JAR files installed by other ports
+# are located.
+#
+# HAVE_JIKES Defined and set to "yes" whenever the port will effectively
+# use Jikes. See stage 6 header for further detail.
+#
+#-------------------------------------------------------------------------------
+# Porter's hints
+#
+# To retrieve the Major version number from JAVA_PORT_VERSION (e.g. "1.3"):
+# -> ${JAVA_PORT_VERSION:C/^([0-9])\.([0-9])(.*)$/\1.\2/}
+#
+#-------------------------------------------------------------------------------
+# There are the following stages:
+#
+# Stage 1: Define constants
+# Stage 2: bsd.java.mk 1.0 backward compatibility
+# Stage 3: Determine which JDK ports are installed and which JDK ports are
+# suitable
+# Stage 4: <REMOVED> (merged in stage 3)
+# Stage 5: Decide the exact JDK to use (or install)
+# Stage 6: Add any dependencies if necessary
+# Stage 7: Define all settings for the port to use
+#
+
+. if defined(USE_JAVA)
+
+
+#-------------------------------------------------------------------------------
+# Stage 1: Define constants
+#
+
+# System-global directories
+# NB: If the value of JAVALIBDIR is altered here it must also be altered
+# in java/javavmwrapper/Makefile.
+JAVASHAREDIR?= ${PREFIX}/share/java
+JAVAJARDIR?= ${JAVASHAREDIR}/classes
+JAVALIBDIR?= ${LOCALBASE}/share/java/classes
+
+# Add appropriate substitutions to PLIST_SUB and LIST_SUB
+PLIST_SUB+= JAVASHAREDIR="${JAVASHAREDIR:S,^${PREFIX}/,,}" \
+ JAVAJARDIR="${JAVAJARDIR:S,^${PREFIX}/,,}"
+SUB_LIST+= JAVASHAREDIR="${JAVASHAREDIR}" \
+ JAVAJARDIR="${JAVAJARDIR}" \
+ JAVALIBDIR="${JAVALIBDIR}"
+. if defined(JAVA_VERSION)
+SUB_LIST+= JAVA_VERSION="${JAVA_VERSION}"
+. endif
+. if defined(JAVA_VENDOR)
+SUB_LIST+= JAVA_VENDOR="${JAVA_VENDOR}"
+. endif
+. if defined(JAVA_OS)
+SUB_LIST+= JAVA_OS="${JAVA_OS}"
+. endif
+
+# The complete list of Java versions, os and vendors supported.
+__JAVA_VERSION_LIST= 1.1 1.2 1.3 1.4 1.5
+_JAVA_VERSION_LIST= ${__JAVA_VERSION_LIST} ${__JAVA_VERSION_LIST:S/$/+/}
+_JAVA_OS_LIST= native linux
+_JAVA_VENDOR_LIST= freebsd bsdjava sun blackdown ibm
+
+# Set all meta-information about JDK ports:
+# port location, corresponding JAVA_HOME, JDK version, OS, vendor
+_JAVA_PORT_NATIVE_FREEBSD_JDK_1_3_INFO= PORT=java/diablo-jdk13 HOME=${LOCALBASE}/diablo-jdk1.3.1 \
+ VERSION=1.3.1 OS=native VENDOR=freebsd
+_JAVA_PORT_NATIVE_BSDJAVA_JDK_1_1_INFO= PORT=java/jdk11 HOME=${LOCALBASE}/jdk1.1.8 \
+ VERSION=1.1.8 OS=native VENDOR=bsdjava
+_JAVA_PORT_NATIVE_BSDJAVA_JDK_1_2_INFO= PORT=java/jdk12 HOME=${LOCALBASE}/jdk1.2.2 \
+ VERSION=1.2.2 OS=native VENDOR=bsdjava
+_JAVA_PORT_NATIVE_BSDJAVA_JDK_1_3_INFO= PORT=java/jdk13 HOME=${LOCALBASE}/jdk1.3.1 \
+ VERSION=1.3.1 OS=native VENDOR=bsdjava
+_JAVA_PORT_NATIVE_BSDJAVA_JDK_1_4_INFO= PORT=java/jdk14 HOME=${LOCALBASE}/jdk1.4.2 \
+ VERSION=1.4.2 OS=native VENDOR=bsdjava
+_JAVA_PORT_NATIVE_BSDJAVA_JDK_1_5_INFO= PORT=java/jdk15 HOME=${LOCALBASE}/jdk1.5.0 \
+ VERSION=1.5.0 OS=native VENDOR=bsdjava
+_JAVA_PORT_LINUX_BLACKDOWN_JDK_1_2_INFO= PORT=java/linux-blackdown-jdk12 HOME=${LOCALBASE}/linux-blackdown-jdk1.2.2 \
+ VERSION=1.2.2 OS=linux VENDOR=blackdown
+_JAVA_PORT_LINUX_BLACKDOWN_JDK_1_3_INFO= PORT=java/linux-blackdown-jdk13 HOME=${LOCALBASE}/linux-blackdown-jdk1.3.1 \
+ VERSION=1.3.1 OS=linux VENDOR=blackdown
+_JAVA_PORT_LINUX_BLACKDOWN_JDK_1_4_INFO= PORT=java/linux-blackdown-jdk14 HOME=${LOCALBASE}/linux-blackdown-jdk1.4.2 \
+ VERSION=1.4.2 OS=linux VENDOR=blackdown
+_JAVA_PORT_LINUX_IBM_JDK_1_3_INFO= PORT=java/linux-ibm-jdk13 HOME=${LOCALBASE}/linux-ibm-jdk1.3.1 \
+ VERSION=1.3.1 OS=linux VENDOR=ibm
+_JAVA_PORT_LINUX_IBM_JDK_1_4_INFO= PORT=java/linux-ibm-jdk14 HOME=${LOCALBASE}/linux-ibm-jdk1.4.2 \
+ VERSION=1.4.1 OS=linux VENDOR=ibm
+_JAVA_PORT_LINUX_SUN_JDK_1_2_INFO= PORT=java/linux-sun-jdk12 HOME=${LOCALBASE}/linux-sun-jdk1.2.2 \
+ VERSION=1.2.2 OS=linux VENDOR=sun
+_JAVA_PORT_LINUX_SUN_JDK_1_3_INFO= PORT=java/linux-sun-jdk13 HOME=${LOCALBASE}/linux-sun-jdk1.3.1 \
+ VERSION=1.3.1 OS=linux VENDOR=sun
+_JAVA_PORT_LINUX_SUN_JDK_1_4_INFO= PORT=java/linux-sun-jdk14 HOME=${LOCALBASE}/linux-sun-jdk1.4.2 \
+ VERSION=1.4.2 OS=linux VENDOR=sun
+
+# Verbose description for each VENDOR
+_JAVA_VENDOR_freebsd= "FreeBSD Foundation"
+_JAVA_VENDOR_bsdjava= "BSD Java Porting Team"
+_JAVA_VENDOR_blackdown= Blackdown
+_JAVA_VENDOR_ibm= IBM
+_JAVA_VENDOR_sun= Sun
+
+# Verbose description for each OS
+_JAVA_OS_native= Native
+_JAVA_OS_linux= Linux
+
+# Enforce preferred Java ports according to OS
+_JAVA_PREFERRED_PORTS+= JAVA_PORT_NATIVE_BSDJAVA_JDK_1_4
+
+# List all JDK ports
+__JAVA_PORTS_ALL= JAVA_PORT_NATIVE_BSDJAVA_JDK_1_5 \
+ JAVA_PORT_NATIVE_BSDJAVA_JDK_1_4 \
+ JAVA_PORT_NATIVE_BSDJAVA_JDK_1_3 \
+ JAVA_PORT_NATIVE_FREEBSD_JDK_1_3 \
+ JAVA_PORT_NATIVE_BSDJAVA_JDK_1_2 \
+ JAVA_PORT_NATIVE_BSDJAVA_JDK_1_1 \
+ JAVA_PORT_LINUX_SUN_JDK_1_4 \
+ JAVA_PORT_LINUX_SUN_JDK_1_3 \
+ JAVA_PORT_LINUX_SUN_JDK_1_2 \
+ JAVA_PORT_LINUX_BLACKDOWN_JDK_1_4 \
+ JAVA_PORT_LINUX_BLACKDOWN_JDK_1_3 \
+ JAVA_PORT_LINUX_BLACKDOWN_JDK_1_2 \
+ JAVA_PORT_LINUX_IBM_JDK_1_4 \
+ JAVA_PORT_LINUX_IBM_JDK_1_3
+_JAVA_PORTS_ALL= ${JAVA_PREFERRED_PORTS} \
+ ${_JAVA_PREFERRED_PORTS} \
+ ${__JAVA_PORTS_ALL}
+
+# Set the name of the file that indicates that a JDK is indeed installed, as a
+# relative path within the JAVA_HOME directory.
+_JDK_FILE=bin/javac
+
+# Set the path to Jikes and define the Jikes dependency
+_JIKES_PATH= ${LOCALBASE}/bin/jikes
+DEPEND_JIKES= ${_JIKES_PATH}:${PORTSDIR}/java/jikes
+
+
+#-------------------------------------------------------------------------------
+# Stage 2: bsd.java.mk 1.0 backward compatibility
+#
+
+# First detect if we are using bsd.java.mk v1.0
+_USE_BSD_JAVA_MK_1_0!= ${ECHO_CMD} "${_JAVA_VERSION_LIST}" \
+ | ${TR} " " "\n" \
+ | ${GREP} -q "^${USE_JAVA}$$" && ${ECHO_CMD} "yes" || ${ECHO_CMD} "no"
+. if (${_USE_BSD_JAVA_MK_1_0} == "yes")
+# Then affect the variables so that we may use v2.0
+# USE_JAVA --> JAVA_VERSION
+. if !defined(JAVA_VERSION)
+JAVA_VERSION= ${USE_JAVA}
+. else
+check-makevars::
+ @${ECHO_CMD} "${PKGNAME}: Makefile error: The port is using bsd.java.mk 1.0 but sets a value for JAVA_VERSION. This may cause problems."
+ @${FALSE}
+. endif
+# NO_{BUILD|RUN}_DEPENDS_JAVA --> JAVA_{BUILD|RUN}
+. if defined(NO_BUILD_DEPENDS_JAVA) && defined(NO_RUN_DEPENDS_JAVA)
+check-makevars::
+ @${ECHO_CMD} "${PKGNAME}: Makefile error: NO_BUILD_DEPENDS_JAVA and NO_RUN_DEPENDS_JAVA cannot be set at the same time.";
+ @${FALSE}
+. else
+. if !defined(NO_BUILD_DEPENDS_JAVA) && !defined(NO_BUILD)
+JAVA_BUILD= jdk
+. endif
+. if !defined(NO_RUN_DEPENDS_JAVA)
+JAVA_RUN= jdk
+. endif
+. endif
+# NEED_JAVAC --> JAVA_{BUILD|RUN}={jdk|jre}
+. if defined(NEED_JAVAC)
+. if (${NEED_JAVAC:U} == "YES")
+JAVA_BUILD= jdk
+. elif (${NEED_JAVAC:U} == "NO")
+JAVA_BUILD= jre
+. else
+check-makevars::
+ @${ECHO_CMD} "${PKGNAME}: Makefile error: \"${NEED_JAVAC}\" is not a valid value for NEED_JAVAC. It should be YES or NO, or it should be undefined.";
+ @${FALSE}
+. endif
+. endif
+. endif
+
+
+#-------------------------------------------------------------------------------
+# Stage 3: Determine which JDK ports are suitable and which JDK ports are
+# suitable
+#
+
+# From here, the port is using bsd.java.mk v2.0
+
+# Error checking: defined JAVA_{HOME,PORT,PORT_VERSION,PORT_VENDOR,PORT_OS}
+. for variable in JAVA_HOME JAVA_PORT JAVA_PORT_VERSION JAVA_PORT_VENDOR JAVA_PORT_OS
+. if defined(${variable})
+check-makevars::
+ @${ECHO_CMD} "${PKGNAME}: Environment error: \"${variable}\" should not be defined."
+ @${FALSE}
+. endif
+. endfor
+
+# Error checking: JAVA_VERSION
+_JAVA_VERSION_LIST_REGEXP!= ${ECHO_CMD} "${_JAVA_VERSION_LIST}" | ${SED} "s/ /\\\|/g"
+_ERROR_CHECKING_JAVA_VERSION!= ${ECHO_CMD} "${JAVA_VERSION}" | ${TR} " " "\n" \
+ | ${GREP} -v "${_JAVA_VERSION_LIST_REGEXP}" || true
+. if (${_ERROR_CHECKING_JAVA_VERSION} != "")
+check-makevars::
+ @${ECHO_CMD} "${PKGNAME}: Makefile error: \"${JAVA_VERSION}\" is not a valid value for JAVA_VERSION. It should be one or more of: ${__JAVA_VERSION_LIST} (with an optional \"+\" suffix.)";
+ @${FALSE}
+. endif
+
+# Error checking: JAVA_VENDOR
+_JAVA_VENDOR_LIST_REGEXP!= ${ECHO_CMD} "${_JAVA_VENDOR_LIST}" | ${SED} "s/ /\\\|/g"
+_ERROR_CHECKING_JAVA_VENDOR!= ${ECHO_CMD} "${JAVA_VENDOR}" | ${TR} " " "\n" \
+ | ${GREP} -v "${_JAVA_VENDOR_LIST_REGEXP}" || true
+. if (${_ERROR_CHECKING_JAVA_VENDOR} != "")
+check-makevars::
+ @${ECHO_CMD} "${PKGNAME}: Makefile error: \"${JAVA_VENDOR}\" is not a valid value for JAVA_VENDOR. It should be one or more of: ${_JAVA_VENDOR_LIST}";
+ @${FALSE}
+. endif
+
+# Error checking: JAVA_OS
+_JAVA_OS_LIST_REGEXP!= ${ECHO_CMD} "${_JAVA_OS_LIST}" | ${SED} "s/ /\\\|/g"
+_ERROR_CHECKING_JAVA_OS!= ${ECHO_CMD} "${JAVA_OS}" | ${TR} " " "\n" \
+ | ${GREP} -v "${_JAVA_OS_LIST_REGEXP}" || true
+. if (${_ERROR_CHECKING_JAVA_OS} != "")
+check-makevars::
+ @${ECHO_CMD} "${PKGNAME}: Makefile error: \"${JAVA_OS}\" is not a valid value for JAVA_OS. It should be one or more of: ${_JAVA_OS_LIST}";
+ @${FALSE}
+. endif
+
+# Set default values for JAVA_BUILD and JAVA_RUN
+# When nothing is set, assume JAVA_BUILD=jdk and JAVA_RUN=jre
+# (unless NO_BUILD is set)
+. if !defined(JAVA_EXTRACT) && !defined(JAVA_BUILD) && !defined(JAVA_RUN)
+. if !defined(NO_BUILD)
+JAVA_BUILD= jdk
+. endif
+JAVA_RUN= jre
+. endif
+
+# JDK dependency setting
+. undef _JAVA_PORTS_INSTALLED
+. undef _JAVA_PORTS_POSSIBLE
+. if defined(JAVA_VERSION)
+_JAVA_VERSION= ${JAVA_VERSION:S/1.1+/1.1 1.2 1.3 1.4 1.5/:S/1.2+/1.2 1.3 1.4 1.5/:S/1.3+/1.3 1.4 1.5/:S/1.4+/1.4 1.5/:S/1.5+/1.5/}
+. else
+_JAVA_VERSION= ${__JAVA_VERSION_LIST}
+. endif
+. if defined(JAVA_OS)
+_JAVA_OS= ${JAVA_OS}
+. else
+_JAVA_OS= ${_JAVA_OS_LIST}
+. endif
+. if defined(JAVA_VENDOR)
+_JAVA_VENDOR= ${JAVA_VENDOR}
+. else
+_JAVA_VENDOR= ${_JAVA_VENDOR_LIST}
+. endif
+
+. for A_JAVA_PORT in ${_JAVA_PORTS_ALL}
+A_JAVA_PORT_INFO:= ${A_JAVA_PORT:S/^/\${_/:S/$/_INFO}/}
+A_JAVA_PORT_HOME= ${A_JAVA_PORT_INFO:MHOME=*:S,HOME=,,}
+A_JAVA_PORT_VERSION= ${A_JAVA_PORT_INFO:MVERSION=*:C/VERSION=([0-9])\.([0-9])(.*)/\1.\2/}
+A_JAVA_PORT_OS= ${A_JAVA_PORT_INFO:MOS=*:S,OS=,,}
+A_JAVA_PORT_VENDOR= ${A_JAVA_PORT_INFO:MVENDOR=*:S,VENDOR=,,}
+A_JAVA_PORT_INSTALLED!= ${TEST} -x "${A_JAVA_PORT_HOME}/${_JDK_FILE}" \
+ && ${ECHO_CMD} "${A_JAVA_PORT}" \
+ || ${TRUE}
+__JAVA_PORTS_INSTALLED!= ${ECHO_CMD} "${__JAVA_PORTS_INSTALLED} ${A_JAVA_PORT_INSTALLED}"
+A_JAVA_PORT_POSSIBLE!= ${ECHO_CMD} "${_JAVA_VERSION}" | ${GREP} -q "${A_JAVA_PORT_VERSION}" \
+ && ${ECHO_CMD} "${_JAVA_OS}" | ${GREP} -q "${A_JAVA_PORT_OS}" \
+ && ${ECHO_CMD} "${_JAVA_VENDOR}" | ${GREP} -q "${A_JAVA_PORT_VENDOR}" \
+ && ${ECHO_CMD} "${A_JAVA_PORT}" \
+ || ${TRUE}
+__JAVA_PORTS_POSSIBLE!= ${ECHO_CMD} "${__JAVA_PORTS_POSSIBLE} ${A_JAVA_PORT_POSSIBLE}"
+. endfor
+_JAVA_PORTS_INSTALLED= ${__JAVA_PORTS_INSTALLED:C/ [ ]+/ /g}
+_JAVA_PORTS_POSSIBLE= ${__JAVA_PORTS_POSSIBLE:C/ [ ]+/ /g}
+
+
+#-------------------------------------------------------------------------------
+# Stage 5: Decide the exact JDK to use (or install)
+#
+
+# Find an installed JDK port that matches the requirements of the port
+
+. undef _JAVA_PORTS_INSTALLED_POSSIBLE
+
+. for A_JAVA_PORT in ${_JAVA_PORTS_POSSIBLE}
+A_JAVA_PORT_INSTALLED_POSSIBLE!= ${ECHO_CMD} "${_JAVA_PORTS_INSTALLED}" | ${GREP} -q "${A_JAVA_PORT}" \
+ && ${ECHO_CMD} "${A_JAVA_PORT}" || ${TRUE}
+__JAVA_PORTS_INSTALLED_POSSIBLE!= ${ECHO_CMD} "${__JAVA_PORTS_INSTALLED_POSSIBLE} ${A_JAVA_PORT_INSTALLED_POSSIBLE}"
+. endfor
+_JAVA_PORTS_INSTALLED_POSSIBLE= ${__JAVA_PORTS_INSTALLED_POSSIBLE:C/ [ ]+/ /g}
+
+. if ${_JAVA_PORTS_INSTALLED_POSSIBLE} != ""
+_JAVA_PORT!= ${ECHO_CMD} "${_JAVA_PORTS_INSTALLED_POSSIBLE}" \
+ | ${AWK} '{ print $$1 }'
+
+# If no installed JDK port fits, then pick one from the list of possible ones
+. else
+_JAVA_PORT!= ${ECHO_CMD} "${_JAVA_PORTS_POSSIBLE}" \
+ | ${AWK} '{ print $$1 }'
+. endif
+
+_JAVA_PORT_INFO:= ${_JAVA_PORT:S/^/\${_/:S/$/_INFO}/}
+JAVA_PORT= ${_JAVA_PORT_INFO:MPORT=*:S,PORT=,,}
+JAVA_HOME= ${_JAVA_PORT_INFO:MHOME=*:S,HOME=,,}
+JAVA_PORT_VERSION= ${_JAVA_PORT_INFO:MVERSION=*:S,VERSION=,,}
+JAVA_PORT_OS= ${_JAVA_PORT_INFO:MOS=*:S,OS=,,}
+JAVA_PORT_VENDOR= ${_JAVA_PORT_INFO:MVENDOR=*:S,VENDOR=,,}
+
+JAVA_PORT_VENDOR_DESCRIPTION:= ${JAVA_PORT_VENDOR:S/^/\${_JAVA_VENDOR_/:S/$/}/}
+JAVA_PORT_OS_DESCRIPTION:= ${JAVA_PORT_OS:S/^/\${_JAVA_OS_/:S/$/}/}
+
+#-------------------------------------------------------------------------------
+# Stage 6: Add any dependencies if necessary
+#
+
+# Jikes support: If USE_JIKES is set to YES, then use Jikes. If USE_JIKES is
+# set to NO, then don't use it. If it is set to a different value, then fail
+# with an error message. Otherwise USE_JIKES is not set, in which case it is
+# checked if Jikes is already installed. If it is, then it will be used,
+# otherwise it will not be used.
+#
+# As a result, HAVE_JIKES is defined and set to "yes" when Jikes is used by the
+# port according to the above policy.
+
+. undef HAVE_JIKES
+
+# First test if USE_JIKES has a valid value
+. if defined(USE_JIKES) && !(${USE_JIKES:U} == "YES") && !(${USE_JIKES:U} == "NO")
+check-makevars::
+ @${ECHO_CMD} "${PKGNAME}: Makefile error: \"${USE_JIKES}\" is not a valid value for USE_JIKES. It should be YES or NO, or it should be undefined.";
+ @${FALSE}
+. endif
+# Then test if jikes is needed or available: -> HAVE_JIKES=yes
+. if (exists(${_JIKES_PATH}) && (!defined(USE_JIKES) || (${USE_JIKES:U} == "YES"))) \
+ || (defined(USE_JIKES) && (${USE_JIKES:U} == "YES"))
+HAVE_JIKES= yes
+. endif
+
+# Add jikes port to the dependencies if needed
+. if !defined(NO_BUILD) && defined(HAVE_JIKES)
+BUILD_DEPENDS+= ${DEPEND_JIKES}
+. endif
+
+# Ant Support: USE_ANT --> JAVA_BUILD=jdk
+. if defined(USE_ANT)
+JAVA_BUILD= jdk
+. endif
+
+# Add the JDK port to the dependencies
+DEPEND_JAVA= ${JAVA}:${PORTSDIR}/${JAVA_PORT}
+. if defined(JAVA_EXTRACT)
+EXTRACT_DEPENDS+= ${DEPEND_JAVA}
+. endif
+. if defined(JAVA_BUILD)
+. if defined(NO_BUILD)
+check-makevars::
+ @${ECHO_CMD} "${PKGNAME}: Makefile error: JAVA_BUILD and NO_BUILD cannot be set at the same time.";
+ @${FALSE}
+. endif
+BUILD_DEPENDS+= ${DEPEND_JAVA}
+. endif
+. if defined(JAVA_RUN)
+RUN_DEPENDS+= ${DEPEND_JAVA}
+. endif
+
+# Ant support: default do-build target
+. if defined(USE_ANT)
+ANT?= ${LOCALBASE}/bin/ant
+MAKE_ENV+= JAVA_HOME=${JAVA_HOME}
+. if defined(HAVE_JIKES)
+MAKE_ARGS+= -Dbuild.compiler=jikes
+. endif
+BUILD_DEPENDS+= ${ANT}:${PORTSDIR}/devel/apache-ant
+ALL_TARGET?=
+. if !target(do-build)
+do-build:
+ @(cd ${BUILD_WRKSRC}; \
+ ${SETENV} ${MAKE_ENV} ${ANT} ${MAKE_ARGS} ${ALL_TARGET})
+. endif
+. endif
+
+#-----------------------------------------------------------------------------
+# Stage 7: Define all settings for the port to use
+#
+# At this stage both JAVA_HOME and JAVA_PORT are definitely given a value.
+#
+# Define the location of the Java compiler. If HAVE_JIKES is defined, then
+# use Jikes.
+
+# Only define JAVAC if a JDK is needed or USE_JIKES=yes
+. undef JAVAC
+
+# Then test if a JAVAC has to be set (JAVA_BUILD==jdk)
+. if defined(JAVA_BUILD)
+. if (${JAVA_BUILD:U} == "JDK") && !defined(JAVAC)
+# Use jikes if available and not explicitly forbidden (see Stage 6)
+. if defined(HAVE_JIKES)
+JAVAC?= ${_JIKES_PATH} -bootclasspath ${JAVA_CLASSES}
+# Otherwise use 'javac'
+. else
+JAVAC?= ${JAVA_HOME}/bin/javac
+. endif
+. endif
+. endif
+
+# Define the location of some more executables.
+APPLETVIEWER?= ${JAVA_HOME}/bin/appletviewer
+JAR?= ${JAVA_HOME}/bin/jar
+JAVA?= ${JAVA_HOME}/bin/java
+JAVADOC?= ${JAVA_HOME}/bin/javadoc
+JAVAH?= ${JAVA_HOME}/bin/javah
+JAVAP?= ${JAVA_HOME}/bin/javap
+JAVA_N2A?= ${JAVA_HOME}/bin/native2ascii
+JAVA_SERIALVER?=${JAVA_HOME}/bin/serialver
+RMIC?= ${JAVA_HOME}/bin/rmic
+RMIREGISTRY?= ${JAVA_HOME}/bin/rmiregistry
+
+# Some executables only exists in JDK 1.2 and up
+. if ${_JAVA_PORT} != "JAVA_PORT_NATIVE_BSDJAVA_JDK_1_1"
+JAVA_KEYTOOL?= ${JAVA_HOME}/bin/keytool
+JAVA_POLICYTOOL?= ${JAVA_HOME}/bin/policytool
+RMID?= ${JAVA_HOME}/bin/rmid
+. endif
+
+# Set the location of the ZIP or JAR file with all standard Java classes.
+. if ${_JAVA_PORT} == "JAVA_PORT_NATIVE_BSDJAVA_JDK_1_1"
+JAVA_CLASSES= ${JAVA_HOME}/lib/classes.zip
+. else
+JAVA_CLASSES= ${JAVA_HOME}/jre/lib/rt.jar
+. endif
+
+
+#-------------------------------------------------------------------------------
+# Additional Java support
+
+# Debug target
+# Use it to check Java dependency while porting
+java-debug:
+ @${ECHO_CMD} "_USE_BSD_JAVA_MK_1_0= ${_USE_BSD_JAVA_MK_1_0}"
+ @${ECHO_CMD}
+ @${ECHO_CMD} "# User specified parameters:"
+ @${ECHO_CMD} "JAVA_VERSION= ${JAVA_VERSION} (${_JAVA_VERSION})"
+ @${ECHO_CMD} "JAVA_OS= ${JAVA_OS} (${_JAVA_OS})"
+ @${ECHO_CMD} "JAVA_VENDOR= ${JAVA_VENDOR} (${_JAVA_VENDOR})"
+ @${ECHO_CMD} "JAVA_BUILD= ${JAVA_BUILD}"
+ @${ECHO_CMD} "JAVA_RUN= ${JAVA_RUN}"
+ @${ECHO_CMD} "JAVA_EXTRACT= ${JAVA_EXTRACT}"
+ @${ECHO_CMD}
+ @${ECHO_CMD} "# JDK port dependency selection process:"
+ @${ECHO_CMD} "_JAVA_PORTS_POSSIBLE= ${_JAVA_PORTS_POSSIBLE}"
+ @${ECHO_CMD} "_JAVA_PORTS_INSTALLED= ${_JAVA_PORTS_INSTALLED}"
+ @${ECHO_CMD} "_JAVA_PORTS_INSTALLED_POSSIBLE= ${_JAVA_PORTS_INSTALLED_POSSIBLE}"
+ @${ECHO_CMD} "_JAVA_PORT= ${_JAVA_PORT}"
+ @${ECHO_CMD} "_JAVA_PORT_INFO= ${_JAVA_PORT_INFO:S/\t/ /}"
+ @${ECHO_CMD}
+ @${ECHO_CMD} "# Selected JDK port:"
+ @${ECHO_CMD} "JAVA_PORT= ${JAVA_PORT}"
+ @${ECHO_CMD} "JAVA_HOME= ${JAVA_HOME}"
+ @${ECHO_CMD} "JAVA_PORT_VERSION= ${JAVA_PORT_VERSION}"
+ @${ECHO_CMD} "JAVA_PORT_OS= ${JAVA_PORT_OS} (${JAVA_PORT_OS_DESCRIPTION})"
+ @${ECHO_CMD} "JAVA_PORT_VENDOR= ${JAVA_PORT_VENDOR} (${JAVA_PORT_VENDOR_DESCRIPTION})"
+ @${ECHO_CMD}
+ @${ECHO_CMD} "# Additional variables:"
+ @${ECHO_CMD} "JAVAC= ${JAVAC}"
+ @${ECHO_CMD} "JAVA_CLASSES= ${JAVA_CLASSES}"
+
+. endif
+.endif
diff --git a/ports-mgmt/portmk/Mk/bsd.port.mk b/ports-mgmt/portmk/Mk/bsd.port.mk
index c85a131c6c1f..b9e47e8db1d4 100644
--- a/ports-mgmt/portmk/Mk/bsd.port.mk
+++ b/ports-mgmt/portmk/Mk/bsd.port.mk
@@ -2,6 +2,7 @@
# ex:ts=4
#
# $FreeBSD$
+# $NetBSD: $
#
# bsd.port.mk - 940820 Jordan K. Hubbard.
# This file is in the public domain.
@@ -16,8 +17,12 @@
# The maintainer alias of the bsd.port.mk file is listed below in the
# FreeBSD_MAINTAINER entry. You should consult them if you have any
# questions/suggestions regarding this file.
+#
+# DO NOT COMMIT CHANGES TO THIS FILE BY YOURSELF, EVEN IF YOU DID NOT GET
+# A RESPONSE FROM THE MAINTAINER(S) WITHIN A REASONABLE TIMEFRAME! ALL
+# UNAUTHORISED CHANGES WILL BE UNCONDITIONALLY REVERTED!
-FreeBSD_MAINTAINER= eik@FreeBSD.org
+FreeBSD_MAINTAINER= portmgr@FreeBSD.org
# For each port, the MAINTAINER variable is what you should consult for
# contact information on the person(s) to contact if you have questions/
@@ -25,14 +30,17 @@ FreeBSD_MAINTAINER= eik@FreeBSD.org
# is listed), a port is maintained by the subscribers of the ports@FreeBSD.org
# mailing list, and any correspondence should be directed there.
#
-# MAINTAINER - The e-mail address of the contact person for this port
-# (default: ports@FreeBSD.org).
+# MAINTAINER - The e-mail address of the contact person for this port.
+# Default: ports@FreeBSD.org
#
# These are meta-variables that are automatically set to the system
# you are running on. These are provided in case you need to take
# different actions for different values.
#
-# ARCH - The architecture, as returned by "uname -p".
+# ARCH - The architecture of the target machine, such as would be
+# returned by "uname -p". (Note: Ports should test against
+# ARCH, and not the host machine's architecture which is
+# MACHINE_ARCH, to enable ports to be cross-built.)
# OPSYS - Portability clause. This is the operating system the
# makefile is being used on. Automatically set to
# "FreeBSD," "NetBSD," or "OpenBSD" as appropriate.
@@ -48,7 +56,7 @@ FreeBSD_MAINTAINER= eik@FreeBSD.org
# These variables are used to identify your port.
#
# PORTNAME - Name of software. Mandatory.
-# PORTVERSION - Version of software. Mandatory.
+# PORTVERSION - Version of software. Mandatory when no DISTVERSION is given.
# PORTREVISION - Version of port. Optional. Commonly used to indicate
# that an update has happened that affects the port
# framework itself, but not the distributed software
@@ -65,45 +73,50 @@ FreeBSD_MAINTAINER= eik@FreeBSD.org
# Optional.
# PKGNAMESUFFIX - Suffix to specify compilation options. Optional.
# UNIQUENAME - A name for your port that is globally unique. By default,
-# this is set to ${LATEST_LINK} when LATEST_LINK is set,
-# and to ${PKGNAMEPREFIX}${PORTNAME} otherwise.
+# this is set to ${LATEST_LINK} when LATEST_LINK is set,
+# and to ${PKGNAMEPREFIX}${PORTNAME} otherwise.
+# DISTVERSION - Vendor version of the distribution.
+# Default: ${PORTVERSION}
# DISTNAME - Name of port or distribution used in generating
-# WRKSRC and DISTFILES below (default:
-# ${PORTNAME}-${PORTVERSION}).
+# WRKSRC and DISTFILES below.
+# Default:
+# ${PORTNAME}-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX})
# CATEGORIES - A list of descriptive categories into which this port falls.
# Mandatory.
#
# These variable describe how to fetch files required for building the port.
#
-# DISTFILES - Name(s) of archive file(s) containing distribution
-# (default: ${DISTNAME}${EXTRACT_SUFX}). Set this to
-# an empty string if the port doesn't require it.
-# EXTRACT_SUFX - Suffix for archive names (default: .tar.bz2 if USE_BZIP2
-# is set, .zip if USE_ZIP is set, .tar.gz otherwise).
+# DISTFILES - Name(s) of archive file(s) containing distribution.
+# Set this to an empty string if the port doesn't require it.
+# Default: ${DISTNAME}${EXTRACT_SUFX}
+# EXTRACT_SUFX - Suffix for archive names
# You never have to set both DISTFILES and EXTRACT_SUFX.
+# Default: .tar.bz2 if USE_BZIP2 is set, .zip if USE_ZIP is
+# set, .tar.gz otherwise).
# MASTER_SITES - Primary location(s) for distribution files if not found
# locally. See bsd.sites.mk for common choices for
# MASTER_SITES.
-# MASTER_SITE_SUBDIR - Subdirectory of MASTER_SITES (default: empty).
-# Will sometimes need to be set to ${PORTNAME} for (e.g.)
-# MASTER_SITE_SOURCEFORGE. Only guaranteed to work for
-# choices of ${MASTER_SITES} defined in bsd.sites.mk.
+# MASTER_SITE_SUBDIR
+# - Subdirectory of MASTER_SITES. Will sometimes need to be
+# set to ${PORTNAME} for (e.g.) MASTER_SITE_SOURCEFORGE.
+# Only guaranteed to work for choices of ${MASTER_SITES}
+# defined in bsd.sites.mk.
+# Default: not set.
# PATCHFILES - Name(s) of additional files that contain distribution
-# patches (default: none). make will look for them at
-# PATCH_SITES (see below). They will automatically be
-# uncompressed before patching if the names end with
-# ".gz", ".bz2" or ".Z".
+# patches. Make will look for them at PATCH_SITES (see below).
+# They will automatically be uncompressed before patching if
+# the names end with ".gz", ".bz2" or ".Z".
+# Default: not set.
# PATCH_SITES - Primary location(s) for distribution patch files
# if not found locally.
-# DIST_SUBDIR - Suffix to ${DISTDIR} (default: none). If set, all
-# ${DISTFILES} and ${PATCHFILES} will be put in this
-# subdirectory of ${DISTDIR} (see below). Also they will
-# be fetched in this subdirectory from FreeBSD mirror sites.
+# DIST_SUBDIR - Suffix to ${DISTDIR}. If set, all ${DISTFILES} and
+# ${PATCHFILES} will be put in this subdirectory of
+# ${DISTDIR} (see below). Also they will be fetched in this
+# subdirectory from FreeBSD mirror sites.
# ALLFILES - All of ${DISTFILES} and ${PATCHFILES}.
-# IGNOREFILES - If some of the ${ALLFILES} are not checksum-able, set
-# this variable to their names (default: empty).
-# EXTRACT_ONLY - If defined, a subset of ${DISTFILES} you want to
-# actually extract (default: none).
+# IGNOREFILES - If set, don't perform checksum checks on these files.
+# EXTRACT_ONLY - If set, a subset of ${DISTFILES} you want to
+# actually extract.
#
# (NOTE: by convention, the MAINTAINER entry (see above) should go here.)
#
@@ -111,17 +124,20 @@ FreeBSD_MAINTAINER= eik@FreeBSD.org
# the user's preferred location to fetch files from. You should
# rarely need to set these.
#
-# MASTER_SITE_BACKUP - Backup location(s) for distribution files and patch
+# MASTER_SITE_BACKUP
+# - Backup location(s) for distribution files and patch
# files if not found locally and ${MASTER_SITES}/${PATCH_SITES}
-# (default:
-# ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/${DIST_SUBDIR}/)
-# MASTER_SITE_OVERRIDE - If set, override the MASTER_SITES setting with this
+# Default:
+# ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/${DIST_SUBDIR}/
+# MASTER_SITE_OVERRIDE
+# - If set, override the MASTER_SITES setting with this
# value.
-# MASTER_SITE_FREEBSD - If set, only use ${MASTER_SITE_BACKUP} for
+# MASTER_SITE_FREEBSD
+# - If set, only use ${MASTER_SITE_BACKUP} for
# MASTER_SITES.
-# CD_MOUNTPTS - List of CDROM mountpoints to look for distfiles under.
-# This variable supercedes CD_MOUNTPT, which is
-# obsolete.
+# CD_MOUNTPTS - List of CDROM mountpoints to look for distfiles under.
+# This variable supercedes CD_MOUNTPT, which is
+# obsolete.
#
# Set these if your port should not be built under certain circumstances.
# These are string variables; you should set them to the reason why
@@ -139,75 +155,88 @@ FreeBSD_MAINTAINER= eik@FreeBSD.org
# IGNORE - Package build should be skipped entirely (e.g.
# because of serious unfixable problems in the build,
# because it cannot be manually fetched, etc). Error
-# logs will not appear on bento, so this should be
+# logs will not appear on pointyhat, so this should be
# used sparingly.
# BROKEN - Port is believed to be broken. Package builds will
-# still be attempted on the bento package cluster to
+# still be attempted on the pointyhat package cluster to
# test this assumption.
+# DEPRECATED - Port is deprecated to install. Advisory only.
+# EXPIRATION_DATE
+# - If DEPRECATED is set, determines a date when
+# the port is planed to remove. The date format is
+# ISO 8601 (YYYY-MM-DD).
#
+# DISABLE_VULNERABILITIES
+# - If set, do not check if the port is listed in the
+# vulnerabilities database.
# In addition to RESTRICTED or NO_CDROM, if only a subset of distfiles
# or patchfiles have redistribution restrictions, set the following
# to the list of such files.
#
-# RESTRICTED_FILES - List of files that cannot be redistributed
-# (default: "${DISTFILES} ${PATCHFILES}" if RESTRICTED
-# or NO_CDROM is set, empty otherwise).
+# RESTRICTED_FILES
+# - List of files that cannot be redistributed.
+# Default: "${DISTFILES} ${PATCHFILES}" if RESTRICTED
+# or NO_CDROM is set, empty otherwise.
#
# These variables are booleans, so you don't need to set them to the reason.
#
-# IS_INTERACTIVE - Set this if your port needs to interact with the user
+# IS_INTERACTIVE
+# - Set this if your port needs to interact with the user
# during any step in a package build. User can then decide
# to skip this port by setting ${BATCH}, or compiling only
# the interactive ports by setting ${INTERACTIVE}.
-# (Default: not set.)
+# Default: not set.
# USE_SUBMAKE - Set this if you want that each of the port's main 6 targets
# (extract, patch, configure, build, install and package) to be
# executed in a separate make(1) process. Useful when one of
# the stages needs to influence make(1) variables of the later
# stages using ${WRKDIR}/Makefile.inc generated on the fly.
-# (Default: not set.)
+# Default: not set.
#
# Set these if your port only makes sense to certain architectures.
# They are lists containing names for them (e.g., "alpha i386").
# (Defaults: not set.)
#
-# ONLY_FOR_ARCHS - Only build ports if ${ARCH} matches one of these.
-# NOT_FOR_ARCHS - Only build ports if ${ARCH} doesn't match one of these.
+# ONLY_FOR_ARCHS
+# - Only build ports if ${ARCH} matches one of these.
+# NOT_FOR_ARCHS - Only build ports if ${ARCH} doesn't match one of these.
#
# These variables control options about how a port gets built and/or
# are shorthand notations for common sets of dependencies.
# Use these if your port uses some of the common software packages. By
# convention these should be set to 'yes', although they only need to be
-# defined. (Defaults: not set, unless explicitly indicated below.)
+# defined. Defaults: not set, unless explicitly indicated below.
#
# Note: the distinction between the USE_* and WANT_* variables, and the
# WITH_* and WITHOUT_* variables, are that the former are restricted to
# usage inside the ports framework, and the latter are reserved for user-
# settable options. (Setting USE_* in /etc/make.conf is always wrong).
#
-# USE_BZIP2 - Says that the port tarballs use bzip2, not gzip, for
+# USE_BZIP2 - If set, this port tarballs use bzip2, not gzip, for
# compression.
-# USE_ZIP - Says that the port distfile uses zip, not tar w/[bg]zip
+# USE_ZIP - If set, this port distfile uses zip, not tar w/[bg]zip
# for compression.
-# USE_GCC - Says that the port requires this version of gcc, either in
+# USE_GCC - If set, this port requires this version of gcc, either in
# the system or installed from a port.
-# USE_GMAKE - Says that the port uses gmake.
-# GMAKE - Set to path of GNU make if not in $PATH (default: gmake).
+# USE_GMAKE - If set, this port uses gmake.
+# GMAKE - Set to path of GNU make if not in $PATH.
+# Default: gmake
##
-# USE_GETOPT_LONG - Says that the port uses getopt_long. If OSVERSION
+# USE_GETOPT_LONG
+# - If set, this port uses getopt_long. If OSVERSION
# less than 500041, automatically adds devel/libgnugeopt
# to LIB_DEPENDS, and pass adjusted values of
# CPPFLAGS and LDFLAGS in CONFIGURE_ENV.
-# Default: not set.
##
-# USE_ICONV - Says that the port uses libiconv.
-# USE_GETTEXT - Says that the port uses GNU gettext (libintl).
+# USE_ICONV - If set, this port uses libiconv.
+# USE_GETTEXT - If set, this port uses GNU gettext (libintl).
##
-# USE_PERL5 - Says that the port uses perl5 in one or more of the extract,
-# patch, build, install or run phases.
-# USE_PERL5_BUILD - Says that the port uses perl5 in one or more of the extract,
-# patch, build or install phases.
-# USE_PERL5_RUN - Says that the port uses perl5 for running.
+# USE_PERL5 - If set, this port uses perl5 in one or more of the extract,
+# patch, build, install or run phases.
+# USE_PERL5_BUILD
+# - If set, this port uses perl5 in one or more of the extract,
+# patch, build or install phases.
+# USE_PERL5_RUN - If set, this port uses perl5 for running.
# PERL5 - Set to full path of perl5, either in the system or
# installed from a port.
# PERL - Set to full path of perl5, either in the system or
@@ -216,152 +245,154 @@ FreeBSD_MAINTAINER= eik@FreeBSD.org
# PERL_VERSION - Full version of perl5 (see below for current value).
# PERL_VER - Short version of perl5 (see below for current value).
# PERL_LEVEL - Perl version as an integer of the form MNNNPP, where
-# M is major version, N is minor version, and P is
-# the patch level. E.g., PERL_VERSION=5.6.1 would give
-# a PERL_LEVEL of 500601. This can be used in comparisons
-# to determine if the version of perl is high enough,
-# whether a particular dependency is needed, etc.
+# M is major version, N is minor version, and P is
+# the patch level. E.g., PERL_VERSION=5.6.1 would give
+# a PERL_LEVEL of 500601. This can be used in comparisons
+# to determine if the version of perl is high enough,
+# whether a particular dependency is needed, etc.
# PERL_ARCH - Directory name of architecture dependent libraries
# (value: ${ARCH}-freebsd).
# PERL_PORT - Name of the perl port that is installed
# (value: perl5)
# SITE_PERL - Directory name where site specific perl packages go.
-# This value is added to PLIST_SUB.
-# PERL_MODBUILD - Use Module::Build to configure, build and install
-# port.
-#
-# USE_GHOSTSCRIPT - Says that the port needs ghostscript to both
-# build and run. Default: not set.
-# USE_GHOSTSCRIPT_BUILD - Says that the port needs ghostscript to build.
-# Default: not set.
-# USE_GHOSTSCRIPT_RUN - Says that the port needs ghostscript to run.
-# Default: not set.
-# GHOSTSCRIPT_PORT - The port that provides postscript functionality.
-# Some installations may wish to override the default
-# to specify a version without X11 and/or localized
-# versions for their nationality.
-# WITH_GHOSTSCRIPT_AFPL - If set to Yes, says to use the AFPL
-# version of the ghostscript software instead
-# of the GNU version, which is used otherwise.
+# This value is added to PLIST_SUB.
+# PERL_MODBUILD - Use Module::Build to configure, build and install port.
##
-# USE_BISON - Says that the port uses bison for building.
+# USE_GHOSTSCRIPT
+# - If set, this port needs ghostscript to both
+# build and run.
+# USE_GHOSTSCRIPT_BUILD
+# - If set, this port needs ghostscript to build.
+# USE_GHOSTSCRIPT_RUN
+# - If set, this port needs ghostscript to run.
+# GHOSTSCRIPT_PORT
+# - The port that provides postscript functionality.
+# Some installations may wish to override the default
+# to specify a version without X11 and/or localized
+# versions for their nationality.
+# WITH_GHOSTSCRIPT_AFPL
+# - If set, this port uses the AFPL version of the ghostscript
+# software instead of the GNU version, which is used otherwise.
##
-# USE_IMAKE - Says that the port uses imake. Implies USE_X_PREFIX.
-# XMKMF - Set to path of `xmkmf' if not in $PATH (default: xmkmf -a ).
-# USE_X_PREFIX - Says that the port installs in ${X11BASE}. Implies USE_XLIB.
-# USE_XLIB - Says that the port uses the X libraries.
+# USE_BISON - If set, this port uses bison for building.
+##
+# USE_IMAKE - If set, this port uses imake. Implies USE_X_PREFIX.
+# XMKMF - Set to path of `xmkmf' if not in $PATH
+# Default: xmkmf -a
+# USE_X_PREFIX - If set, this port installs in ${X11BASE}. Implies USE_XLIB.
+# USE_XLIB - If set, this port uses the X libraries. In the USE_LINUX
+# case the linux X libraries are referenced.
#
-# USE_FREETYPE - Says that the port uses the freetype print libraries.
-# USE_GL - Says that the port uses libGL (not needed with XFree86 4.x
+# USE_FREETYPE - If set, this port uses the freetype print libraries.
+# USE_GL - If set, this port uses libGL (not needed with XFree86 4.x
# which already includes this functionality).
-# USE_MESA - Says that the port uses libGL/libglut (deprecated).
-# USE_MOTIF - Says that the port uses a Motif toolkit. Implies USE_XPM.
-# NO_OPENMOTIF - Says that the port uses a custom Motif toolkit
-# instead of Openmotif.
-# Used only when USE_MOTIF is set.
-# WANT_LESSTIF - Says that the port uses Lesstif as Motif toolkit.
-# Used only when USE_MOTIF is set. Implies
-# NO_OPENMOTIF.
-# USE_SDL - Says that the port uses the sdl libraries.
-# See bsd.sdl.mk for more information.
-# USE_XPM - Says that the port uses the xpm graphics libraries.
+# USE_MESA - If set, this port uses libGL/libglut (deprecated).
+# USE_MOTIF - If set, this port uses a Motif toolkit. Implies USE_XPM.
+# NO_OPENMOTIF - If set, this port uses a custom Motif toolkit
+# instead of Openmotif.
+# Used only when USE_MOTIF is set.
+# WANT_LESSTIF - If set, this port uses Lesstif as Motif toolkit.
+# Used only when USE_MOTIF is set. Implies
+# NO_OPENMOTIF.
##
-# USE_OPENSSL - Says that the port relies on the OpenSSL package.
-# Default: not set.
+# USE_SDL - If set, this port uses the sdl libraries.
+# See bsd.sdl.mk for more information.
+# USE_XPM - If set, this port uses the xpm graphics libraries.
##
+# USE_OPENSSL - If set, this port relies on the OpenSSL package.
+##
+# USE_OPENLDAP - If set, this port uses the OpenLDAP libraries.
+# Implies: WANT_OPENLDAP_VER?=22
+# WANT_OPENLDAP_VER
+# - Legal values are: 21, 22, 23
+# If set to an unkown value, the port is marked BROKEN.
+# WANT_OPENLDAP_SASL
+# - If set, the system should use OpenLDAP libraries
+# with SASL support.
+##
+# USE_FAM - If set, this port uses the File Alteration Monitor.
#
-# USE_OPENLDAP - Says that the port uses the OpenLDAP libraries
-# Implies: WANT_OPENLDAP_VER?=21
-# WANT_OPENLDAP_VER - Legal values are: 21, 22
-# If set to an unkown value, the port is marked BROKEN.
-# WANT_OPENLDAP_SASL - Says that the system should use OpenLDAP libraries
-# with SASL support.
-#
+# WANT_FAM_SYSTEM
+# - Legal values are: fam (default), gamin
+# If set to an unknown value, the port is marked BROKEN.
##
-# USE_AUTOTOOLS - Says that the port uses various GNU autotools
-# (libtool, autoconf, autoheader, automake et al.)
-# See bsd.autotools.mk for more details.
-# XXX: not currently in active use - this is a placeholder.
+# USE_AUTOTOOLS - If set, this port uses various GNU autotools
+# (libtool, autoconf, autoheader, automake et al.)
+# See bsd.autotools.mk for more details.
+# XXX: not currently in active use - this is a placeholder.
##
-# USE_JAVA - Says that the port relies on the Java language.
+# USE_JAVA - If set, this port relies on the Java language.
# Implies inclusion of bsd.java.mk. (Also see
# that file for more information on USE_JAVA_*).
-# Default: not set.
-# USE_PYTHON - Says that the port relies on the Python language.
+# USE_PYTHON - If set, this port relies on the Python language.
# Implies inclusion of bsd.python.mk. (Also see
# that file for more information on USE_PYTHON_*
# and USE_PYDISTUTILS).
-# Default: not set.
-# USE_RUBY - Says that the port relies on the Ruby language.
+# USE_RUBY - If set, this port relies on the Ruby language.
# Implies inclusion of bsd.ruby.mk. (Also see
# that file for more information on USE_RUBY_*).
-# Default: not set.
-# USE_GNUSTEP - Says that the port relies on the GNUstep system.
-# Implies the inclusion of bsd.gnustep.mk.
-# (Also see that file for more information on
-# USE_GNUSTEP_*).
-# Default: not set.
+# USE_GNUSTEP - If set, this port relies on the GNUstep system.
+# Implies the inclusion of bsd.gnustep.mk.
+# (Also see that file for more information on
+# USE_GNUSTEP_*).
##
# USE_GNOME - A list of the Gnome dependencies the port has (e.g.,
# glib12, gtk12). Implies that the port needs Gnome.
# Implies inclusion of bsd.gnome.mk. See bsd.gnome.mk
# or http://www.FreeBSD.org/gnome/docs/porting.html
# for more details.
-# Default: not set.
-#
-# USE_KDEBASE_VER - Set to 3 to use the KDE windowing system.
-# Implies inclusion
-# of bsd.kde.mk. Default: not set.
-# USE_KDELIBS_VER - Set to 3 to use the KDE libraries.
-# Implies inclusion
-# of bsd.kde.mk. Default: not set.
-# USE_QT_VER - Set to either 2 or 3 to use the QT libraries.
-# (Only 3 is currently supported). Implies inclusion
-# of bsd.kde.mk. Default: not set.
-#
-# USE_LINUX - Set to yes to say the port needs emulators/linux_base.
-# Default: not set.
-# USE_LINUX_PREFIX - controls the action of PREFIX (see above).
-#
-#
-# USE_MYSQL - Add MySQL client dependency.
-# If no version is given (by the maintainer via the port or
-# by the user via defined variable), try to find the
-# currently installed version. Fall back to default if
-# necessary (MySQL4.0 = 40).
-#
-# DEFAULT_MYSQL_VER - MySQL default version. Can be overriden within a port.
-# Default: 40.
-#
-# WANT_MYSQL_VER - Maintainer can set an arbitrary version of MySQL by
-# using it.
-#
-# BROKEN_WITH_MYSQL - This variable can be defined if the ports doesn't support
-# one or more version of MySQL.
-#
-# MYSQL_VER - Internal variable for MySQL version.
-#
-# WITH_MYSQL_VER - User defined variable to set MySQL version.
-#
-# USE_RC_SUBR - Says the ports startup/shutdown script uses the common
-# routines found in etc/rc.subr and may need to
-# depend on the sysutils/rc_subr port.
-#
-# RC_SUBR - Set to path of rc.subr, defaults to ${LOCALBASE}/etc/rc.subr.
-#
-# USE_APACHE - Says that the port relies on an apache webserver.
-# APACHE_PORT - CATEGORY and portname of the prefered port for apache.
-# Default: www/apache13
-# If WITH_APACHE2 is defined defaults to www/apache2
-# APXS - Full path to the prefered apxs binary to configure
-# apache modules. Default: ${LOCALBASE}/sbin/apxs
-#
+##
+# USE_KDEBASE_VER
+# - Set to 3 to use the KDE windowing system.
+# Implies inclusion of bsd.kde.mk.
+# USE_KDELIBS_VER
+# - Set to 3 to use the KDE libraries.
+# Implies inclusion of bsd.kde.mk.
+# USE_QT_VER - Set to 3 to use the QT libraries.
+# Implies inclusion of bsd.kde.mk.
+##
+# USE_LINUX - Set to yes to say the port needs emulators/linux_base-8.
+# Set to value <X>, if the port needs emulators/linux_base-<X>.
+# If set to "7", a dependency is registered to emulators/linux_base.
+# Implies appropriate settings for NO_FILTER_SHLIBS,
+# STRIP and STRIP_CMD.
+# USE_LINUX_PREFIX
+# - controls the action of PREFIX (see above). Only use this
+# if the port is a linux infrastructure port (e.g. contains libs
+# or a sound server which supports the FreeBSD native one),
+# use the default or the X11 prefix if it's a leaf port
+# (e.g. a game or program).
+# Implies NO_MTREE=yes.
+# OVERRIDE_LINUX_BASE_PORT - This specifies the default linux base to use, for valid values
+# have a look at the description of USE_LINUX. This is an user-only
+# variable. Don't use it in any port, it's meant to be used in
+# make.conf.
#
+# LINUX_BASE_PORT - This is a read-only variable, it gets set to a value which
+# is usable in *_DEPENDS (e.g. BUILD_DEPENDS=${LINUX_BASE_PORT}).
+# It honors USE_LINUX=foo and OVERRIDE_LINUX_BASE_PORT.
+# USE_RC_SUBR - If set, the ports startup/shutdown script uses the common
+# routines found in etc/rc.subr and may need to
+# depend on the sysutils/rc_subr port.
+# If this is set to a list of files, these files will be
+# automatically added to ${SUB_FILES}, some %%VAR%%'s will
+# automatically be expanded, they will be installed in
+# ${PREFIX}/etc/rc.d and added to the packing list.
+# pairs will be added to ${SUB_LIST}. These files will be
+# installed in ${PREFIX}/etc/rc.d and added to the packing list.
+# RC_ORDER - List of rcNG startup scripts to be called early in the boot
+# process. This acts exactly like USE_RC_SUBR except that
+# scripts are installed in /etc/rc.d.
+# RC_SUBR - Set to path of rc.subr.
+# Default: ${LOCALBASE}/etc/rc.subr.
+##
+# USE_APACHE - If set, this port relies on an apache webserver.
#
# Dependency checking. Use these if your port requires another port
# not in the list above. (Default: empty.)
#
-# EXTRACT_DEPENDS - A list of "path:dir[:target]" tuples of other ports this
+# EXTRACT_DEPENDS
+# - A list of "path:dir[:target]" tuples of other ports this
# package depends on in the "extract" stage. "path" is
# the name of a file if it starts with a slash (/), an
# executable otherwise. make will test for the existence
@@ -370,7 +401,7 @@ FreeBSD_MAINTAINER= eik@FreeBSD.org
# a "make all install" if it's not found. If the third
# field ("target") exists, it will be used instead of
# ${DEPENDS_TARGET}.
-# PATCH_DEPENDS - A list of "path:dir[:target]" tuples of other ports this
+# PATCH_DEPENDS - A list of "path:dir[:target]" tuples of other ports this
# package depends on in the "patch" stage. "path" is the
# name of a file if it starts with a slash (/), an
# executable otherwise. make will test for the existence
@@ -379,7 +410,7 @@ FreeBSD_MAINTAINER= eik@FreeBSD.org
# a "make all install" if it's not found. If the third
# field ("target") exists, it will be used instead of
# ${DEPENDS_TARGET}.
-# FETCH_DEPENDS - A list of "path:dir[:target]" tuples of other ports this
+# FETCH_DEPENDS - A list of "path:dir[:target]" tuples of other ports this
# package depends in the "fetch" stage. "path" is the
# name of a file if it starts with a slash (/), an
# executable otherwise. make will test for the
@@ -388,7 +419,7 @@ FreeBSD_MAINTAINER= eik@FreeBSD.org
# into "dir" to do a "make all install" if it's not
# found. If the third field ("target") exists, it will
# be used instead of ${DEPENDS_TARGET}.
-# BUILD_DEPENDS - A list of "path:dir[:target]" tuples of other ports this
+# BUILD_DEPENDS - A list of "path:dir[:target]" tuples of other ports this
# package depends to build (between the "extract" and
# "build" stages, inclusive). The test done to
# determine the existence of the dependency is the
@@ -411,69 +442,80 @@ FreeBSD_MAINTAINER= eik@FreeBSD.org
# things that don't fall into the above four categories.
# If the second field ("target") exists, it will be used
# instead of ${DEPENDS_TARGET}.
-# DEPENDS_TARGET - The default target to execute when a port is calling a
-# dependency (default: "install").
+# DEPENDS_TARGET
+# - The default target to execute when a port is calling a
+# dependency.
+# Default: install
#
# Conflict checking. Use if your port cannot be installed at the same time as
# another package.
#
-# CONFLICTS - A list of package name patterns that the port conflicts with.
-# It's possible to use any shell meta-characters for pattern
-# matching.
-# E.g. apache*-1.2* apache*-1.3.[012345] apache-*+ssl_*
-#
+# CONFLICTS - A list of package name patterns that the port conflicts
+# with, separated by blanks. The names may include shell
+# pattern meta-characters "*", "?", "[", "]", and "!".
+# Example: apache*-1.2* apache*-1.3.[012345] apache-*+ssl_*
#
# Various directory definitions and variables to control them.
# You rarely need to redefine any of these except WRKSRC and NO_WRKSUBDIR.
#
-# X11BASE - Where X11 ports install things (default: /usr/X11R6).
-# LOCALBASE - Where non-X11 ports install things (default: /usr/local).
-# LINUXBASE - Where Linux ports install things (default: /compat/linux).
-# PREFIX - Where *this* port installs its files (default: ${X11BASE}
-# if USE_X_PREFIX is set, ${LINUXBASE} if USE_LINUX_PREFIX
-# is set, otherwise ${LOCALBASE}).
+# X11BASE - Where X11 ports install things.
+# Default: /usr/X11R6
+# LOCALBASE - Where non-X11 ports install things.
+# Default: /usr/local
+# LINUXBASE - Where Linux ports install things.
+# Default: /compat/linux
+# PREFIX - Where *this* port installs its files.
+# Default: ${X11BASE} if USE_X_PREFIX is set, ${LINUXBASE} if
+# USE_LINUX_PREFIX is set, otherwise ${LOCALBASE}
# MASTERDIR - Where the port finds patches, package files, etc. Define
# this is you have two or more ports that share most of the
-# files (default: ${.CURDIR}).
-# PORTSDIR - The root of the ports tree. (default: /usr/ports)
-# DISTDIR - Where to search for and store copies of original sources
-# (default: ${PORTSDIR}/distfiles).
+# files.
+# Default: ${.CURDIR}
+# PORTSDIR - The root of the ports tree.
+# Default: /usr/ports
+# DISTDIR - Where to search for and store copies of original sources
+# Default: ${PORTSDIR}/distfiles
# PACKAGES - A top level directory where all packages go (rather than
-# going locally to each port). (default: ${PORTSDIR}/packages).
+# going locally to each port).
+# Default: ${PORTSDIR}/packages
# WRKDIRPREFIX - The place to root the temporary working directory
-# hierarchy (default: none).
-# WRKDIR - A temporary working directory that gets *clobbered* on clean
-# (default: ${WRKDIRPREFIX}${.CURDIR}/work).
+# hierarchy.
+# Default: none
+# WRKDIR - A temporary working directory that gets *clobbered* on clean
+# Default: ${WRKDIRPREFIX}${.CURDIR}/work
# WRKSRC - A subdirectory of ${WRKDIR} where the distribution actually
-# unpacks to. (Default: ${WRKDIR}/${DISTNAME} unless
-# NO_WRKSUBDIR is set, in which case simply ${WRKDIR}).
+# unpacks to.
+# Default: ${WRKDIR}/${DISTNAME} unless NO_WRKSUBDIR is set,
+# in which case simply ${WRKDIR}
# NO_WRKSUBDIR - Assume port unpacks directly into ${WRKDIR}.
-# PATCHDIR - A directory containing any additional patches you made
-# to port this software to FreeBSD (default:
-# ${MASTERDIR}/files)
-# SCRIPTDIR - A directory containing any auxiliary scripts
-# (default: ${MASTERDIR}/scripts)
-# FILESDIR - A directory containing any miscellaneous additional files.
-# (default: ${MASTERDIR}/files)
-# PKGDIR - A directory containing any package creation files.
-# (default: ${MASTERDIR})
+# PATCHDIR - A directory containing any additional patches you made
+# to port this software to FreeBSD.
+# Default: ${MASTERDIR}/files
+# SCRIPTDIR - A directory containing any auxiliary scripts
+# Default: ${MASTERDIR}/scripts
+# FILESDIR - A directory containing any miscellaneous additional files.
+# Default: ${MASTERDIR}/files
+# PKGDIR - A directory containing any package creation files.
+# Default: ${MASTERDIR}
#
# Variables that serve as convenient "aliases" for your *-install targets.
# Use these like: "${INSTALL_PROGRAM} ${WRKSRC}/prog ${PREFIX}/bin".
#
-# INSTALL_PROGRAM - A command to install binary executables. (By
-# default, also strips them, unless ${STRIP} is
-# overridden to be the empty string).
-# INSTALL_SCRIPT - A command to install executable scripts.
-# INSTALL_DATA - A command to install sharable data.
-# INSTALL_MAN - A command to install manpages. May or not compress,
-# depending on the value of MANCOMPRESSED (see below).
+# INSTALL_PROGRAM
+# - A command to install binary executables. (By
+# default, also strips them, unless ${STRIP} is
+# overridden to be the empty string).
+# INSTALL_SCRIPT
+# - A command to install executable scripts.
+# INSTALL_DATA - A command to install sharable data.
+# INSTALL_MAN - A command to install manpages. May or not compress,
+# depending on the value of MANCOMPRESSED (see below).
#
# Boolean to control whether manpages are installed.
#
-# NO_INSTALL_MANPAGES - Says that the port doesn't want to install any
-# manpages (default: not set, i.e. manpages
-# are installed by default).
+# NO_INSTALL_MANPAGES
+# - If set, this port doesn't want to install any manpages.
+# Default: not set, i.e. manpages are installed by default).
#
# Set the following to specify all manpages that your port installs.
# These manpages will be automatically listed in ${PLIST}. Depending
@@ -490,58 +532,68 @@ FreeBSD_MAINTAINER= eik@FreeBSD.org
# appropriate directories. (Use this even if the port
# installs its own manpage links so they will show up
# correctly in ${PLIST}.)
-# MANPREFIX - The directory prefix for ${MAN<sect>} and ${MLINKS}
-# (default: ${PREFIX}).
-# MAN<sect>PREFIX - If manual pages of some sections install in different
-# locations than others, use these (default: ${MANPREFIX}).
-# MANCOMPRESSED - This variable can take values "yes", "no" or
+# MANPREFIX - The directory prefix for ${MAN<sect>} and ${MLINKS}.
+# Default: ${PREFIX}
+# MAN<sect>PREFIX
+# - If manual pages of some sections install in different
+# locations than others, use these.
+# Default: ${MANPREFIX}
+# MANCOMPRESSED - This variable can take values "yes", "no" or
# "maybe". "yes" means manpages are installed
# compressed; "no" means they are not; "maybe" means
-# it changes depending on the value of
-# NOMANCOMPRESS. The default is "yes" if USE_IMAKE
-# is set and NO_INSTALL_MANPAGES is not set, and
-# "no" otherwise.
+# it changes depending on the value of NOMANCOMPRESS.
+# Default: "yes" if USE_IMAKE is set and NO_INSTALL_MANPAGES
+# is not set, and "no" otherwise.
#
# Set the following to specify all .info files your port installs.
#
# INFO - A list of .info files (omitting the trailing ".info");
# only one entry per document!
# INFO_PATH - Path, where all .info files will be installed by your
-# port, relative to ${PREFIX} (default: "share/info" if
-# ${PREFIX} is equal to /usr and "info" otherwise).
+# port, relative to ${PREFIX}
+# Default: "share/info" if ${PREFIX} is equal to /usr
+# and "info" otherwise).
#
# Set the following to specify all documentation your port installs into
# ${DOCSDIR}
#
# PORTDOCS - A list of files and directories relative to DOCSDIR.
-# Shell glob patterns can be used, directories include
-# the entire subtree of contained files and directories.
-# Should not be set when no documentation files are
-# installed (for example because NOPORTDOCS is defined).
-# Useful for dynamically generated documentation.
+# Shell glob patterns can be used, directories include
+# the entire subtree of contained files and directories.
+# Should not be set when no documentation files are
+# installed (for example because NOPORTDOCS is defined).
+# Useful for dynamically generated documentation.
#
# Default targets and their behaviors:
#
# fetch - Retrieves ${DISTFILES} (and ${PATCHFILES} if defined)
# into ${DISTDIR} as necessary.
# fetch-list - Show list of files that would be retrieved by fetch.
-# fetch-recursive - Retrieves ${DISTFILES} (and ${PATCHFILES} if defined),
+# fetch-recursive
+# - Retrieves ${DISTFILES} (and ${PATCHFILES} if defined),
# for port and dependencies into ${DISTDIR} as necessary.
-# fetch-recursive-list - Show list of files that would be retrieved by
+# fetch-recursive-list
+# - Show list of files that would be retrieved by
# fetch-recursive.
-# fetch-required-list - Show list of files that would be retrieved by
+# fetch-required-list
+# - Show list of files that would be retrieved by
# fetch-required.
-# fetch-required - Retrieves ${DISTFILES} (and ${PATCHFILES} if defined),
+# fetch-required
+# - Retrieves ${DISTFILES} (and ${PATCHFILES} if defined),
# for port and dependencies that are not already installed
# into ${DISTDIR}.
-# all-depends-list - Show all directories which are dependencies
-# for this port.
-# build-depends-list - Show all directories which are build-dependencies
-# for this port.
-# package-depends-list - Show all directories which are
-# package-dependencies for this port.
-# run-depends-list - Show all directories which are run-dependencies
-# for this port.
+# all-depends-list
+# - Show all directories which are dependencies
+# for this port.
+# build-depends-list
+# - Show all directories which are build-dependencies
+# for this port.
+# package-depends-list
+# - Show all directories which are
+# package-dependencies for this port.
+# run-depends-list
+# - Show all directories which are run-dependencies
+# for this port.
#
# extract - Unpacks ${DISTFILES} into ${WRKDIR}.
# patch - Apply any provided patches to the source.
@@ -554,22 +606,28 @@ FreeBSD_MAINTAINER= eik@FreeBSD.org
# deinstall - Remove the installation.
# deinstall-all - Remove all installations with the same PKGORIGIN.
# package - Create a package from an _installed_ port.
-# package-recursive - Create a package for a port and _all_ of its dependancies.
+# package-recursive
+# - Create a package for a port and _all_ of its dependancies.
# describe - Try to generate a one-line description for each port for
# use in INDEX files and the like.
# checkpatch - Do a "patch -C" instead of a "patch". Note that it may
# give incorrect results if multiple patches deal with
# the same file.
# checksum - Use distinfo to ensure that your distfiles are valid.
-# checksum-recursive - Run checksum in this port and all dependencies.
+# checksum-recursive
+# - Run checksum in this port and all dependencies.
# makesum - Generate distinfo (only do this for your own ports!).
-# clean - Remove ${WRKDIR} and other temporary files used for building.
+# clean - Remove ${WRKDIR} and other temporary files used for building.
# clean-depends - Do a "make clean" for all dependencies.
-# config - Configure options for this port (using ${DIALOG}).
-# Automatically run prior to extract, patch, configure, build,
-# install, and package.
-# showconfig - Display options config for this port
-# rmconfig - Remove the options config for this port
+# config - Configure options for this port (using ${DIALOG}).
+# Automatically run prior to extract, patch, configure, build,
+# install, and package.
+# config-recursive
+# - Configure options for this port for this port and all dependencies.
+# showconfig - Display options config for this port.
+# rmconfig - Remove the options config for this port.
+# rmconfig-recursive
+# - Remove the options config for this port and all dependencies.
#
# Default sequence for "all" is:
#
@@ -595,144 +653,208 @@ FreeBSD_MAINTAINER= eik@FreeBSD.org
# Here are some variables used in various stages.
#
# For options:
-# OPTIONS - List of what WITH_<option> options this port accept. The
-# format is <option> "<description>" [on|off]
-# Example:
-# FLEXRESP "Flexible response to events" off
-# which tell that an option WITH_FLEXRESP exists for this port,
-# that by default it is not defined, and that the description to
-# show to a user in the config dialog is "Flexible response to
-# events". If you have more than one option, just chain them
-# into a single variable. NOTE: To make options work, you need
-# to include bsd.port.pre.mk before you start testing the
-# WITH_xyz variables.
+# OPTIONS - List of what WITH_<option> options this port accept. The
+# format is <option> "<description>" [on|off]
+# Example:
+# FLEXRESP "Flexible response to events" off
+# which tell that an option WITH_FLEXRESP exists for this port,
+# that by default it is not defined, and that the description to
+# show to a user in the config dialog is "Flexible response to
+# events". If you have more than one option, just chain them
+# into a single variable. NOTE: To make options work, you need
+# to include bsd.port.pre.mk before you start testing the
+# WITH_xyz variables.
#
# For fetch:
#
-# FETCH_CMD - Full path to ftp/http fetch command if not in $PATH
-# (default: "/usr/bin/fetch -ARr").
-# FETCH_BEFORE_ARGS -
-# Arguments to ${FETCH_CMD} before filename (default: none).
-# FETCH_AFTER_ARGS -
-# Arguments to ${FETCH_CMD} following filename (default: none).
-# FETCH_ENV - Environment to pass to ${FETCH_CMD} (default: none).
-# FETCH_REGET - Times to retry fetching of files on checksum errors (default: 1).
+# FETCH_CMD - Full path to ftp/http fetch command if not in $PATH.
+# Default: "/usr/bin/fetch -ARr"
+# FETCH_BEFORE_ARGS
+# - Arguments to ${FETCH_CMD} before filename.
+# Default: none
+# FETCH_AFTER_ARGS
+# - Arguments to ${FETCH_CMD} following filename.
+# Default: none
+# FETCH_ENV - Environment to pass to ${FETCH_CMD}.
+# Default: none
+# FETCH_REGET - Times to retry fetching of files on checksum errors.
+# Default: 1
#
# For extract:
#
-# EXTRACT_CMD - Command for extracting archive (default: "bzip2" if
-# USE_BZIP2 is set, "unzip" if USE_ZIP is set, "gzip"
-# otherwise).
-# EXTRACT_BEFORE_ARGS -
-# Arguments to ${EXTRACT_CMD} before filename
-# (default: "-dc").
-# EXTRACT_AFTER_ARGS -
-# Arguments to ${EXTRACT_CMD} following filename
-# (default: "| tar -xf -").
-# EXTRACT_PRESERVE_OWNERSHIP -
-# Normally, when run as "root", the extract stage will
+# EXTRACT_CMD - Command for extracting archive: "bzip2" if USE_BZIP2
+# is set, "unzip" if USE_ZIP is set, "gzip" otherwise.
+# EXTRACT_BEFORE_ARGS
+# - Arguments to ${EXTRACT_CMD} before filename.
+# Default: "-dc"
+# EXTRACT_AFTER_ARGS
+# - Arguments to ${EXTRACT_CMD} following filename.
+# default: "| tar -xf -"
+# EXTRACT_PRESERVE_OWNERSHIP
+# - Normally, when run as "root", the extract stage will
# change the owner and group of all files under ${WRKDIR}
# to 0:0. Set this variable if you want to turn off this
# feature.
#
# For makesum:
#
-# NO_SIZE - Don't record size data in distinfo, needed
+# NO_SIZE - Don't record size data in distinfo, needed
# when the master site does not report file
# sizes, or when multiple valid versions of
# a distfile, having different sizes, exist.
#
# For patch:
#
-# EXTRA_PATCHES - Define this variable if you have patches not in
+# EXTRA_PATCHES - Define this variable if you have patches not in
# ${PATCHDIR}. This usually happens when you need to
# do some pre-processing before some distribution
# patches can be applied. In that case, fetch them as
# extra distfiles, put the processed results in
# ${WRKDIR}, then point EXTRA_PATCHES to them.
-#
# The patches specified by this variable will be
# applied after the normal distribution patches but
# before those in ${PATCHDIR}.
-# PATCH_WRKSRC - Directory to apply patches in (default: ${WRKSRC}).
+# PATCH_WRKSRC - Directory to apply patches in.
+# Default: ${WRKSRC}
#
# For configure:
#
-# HAS_CONFIGURE - Says that the port has its own configure script. The
+# HAS_CONFIGURE - If set, this port has its own configure script. The
# configure stage will not do anything if this is not set.
-# GNU_CONFIGURE - Set if you are using GNU configure (optional). Implies
+# GNU_CONFIGURE - If set, you are using GNU configure (optional). Implies
# HAS_CONFIGURE.
-# PERL_CONFIGURE - Configure using Perl's MakeMaker. Implies USE_PERL5.
-# CONFIGURE_WRKSRC - Directory to run configure in (default: ${WRKSRC}).
-# CONFIGURE_SCRIPT - Name of configure script, relative to ${CONFIGURE_WRKSRC}
-# (default: "Makefile.PL" if PERL_CONFIGURE is set,
-# "configure" otherwise).
-# CONFIGURE_TARGET - The name of target to call when GNU_CONFIGURE is
-# defined (default: ${MACHINE_ARCH}-portbld-freebsd${OSREL}).
-# CONFIGURE_ARGS - Pass these args to configure if ${HAS_CONFIGURE} is set
-# (default: "--prefix=${PREFIX} ${CONFIGURE_TARGET}" if
+# PERL_CONFIGURE
+# - Configure using Perl's MakeMaker. Implies USE_PERL5.
+# CONFIGURE_WRKSRC
+# - Directory to run configure in.
+# Default: ${WRKSRC}
+# CONFIGURE_SCRIPT
+# - Name of configure script, relative to ${CONFIGURE_WRKSRC}.
+# Default: "Makefile.PL" if PERL_CONFIGURE is set,
+# "configure" otherwise.
+# CONFIGURE_TARGET
+# - The name of target to call when GNU_CONFIGURE is
+# defined.
+# Default: ${ARCH}-portbld-freebsd${OSREL}
+# CONFIGURE_ARGS
+# - Pass these args to configure if ${HAS_CONFIGURE} is set.
+# Default: "--prefix=${PREFIX} ${CONFIGURE_TARGET}" if
# GNU_CONFIGURE is set, "CC=${CC} CCFLAGS=${CFLAGS}
# PREFIX=${PREFIX} INSTALLPRIVLIB=${PREFIX}/lib
# INSTALLARCHLIB=${PREFIX}/lib" if PERL_CONFIGURE is set,
-# empty otherwise).
-# CONFIGURE_ENV - Pass these env (shell-like) to configure if
+# empty otherwise.
+# CONFIGURE_ENV - Pass these env (shell-like) to configure if
# ${HAS_CONFIGURE} is set.
-# CONFIGURE_LOG - The name of configure log file (default: config.log).
-# It will be printed to the screen if configure fails.
-# CONFIGURE_FAIL_MESSAGE - A message displayed to users when configure
-# fails (note: this assumes the do-configure
-# target has not been overwritten). This message
-# will be passed through /usr/bin/fmt before
-# being shown to the user.
+# CONFIGURE_LOG - The name of configure log file. It will be printed to
+# the screen if configure fails.
+# Default: config.log
+# CONFIGURE_FAIL_MESSAGE
+# - A message displayed to users when configure
+# fails (note: this assumes the do-configure
+# target has not been overwritten). This message
+# will be passed through /usr/bin/fmt before
+# being shown to the user.
#
# For build and install:
#
-# MAKEFILE - Name of the makefile (default: Makefile).
-# ALL_TARGET - Default target for sub-make in build stage (default: all).
-# BUILD_WRKSRC - Directory to do build in (default: ${WRKSRC}).
+# MAKEFILE - Name of the makefile.
+# Default: Makefile
+# ALL_TARGET - Default target for sub-make in build stage.
+# Default: all
+# BUILD_WRKSRC - Directory to do build in (default: ${WRKSRC}).
# MAKE_ENV - Additional environment vars passed to sub-make in build
-# and install stages (default: see below).
-# MAKE_ARGS - Any extra arguments to sub-make in build and install
-# stages (default: none).
+# and install stages.
+# Default: see below
+# MAKE_ARGS - Any extra arguments to sub-make in build and install stages.
+# Default: none
#
# For install:
#
-# INSTALL_TARGET - Default target for sub-make in install stage
-# (default: install).
-# INSTALL_WRKSRC - Directory to install from (default: ${WRKSRC}).
+# INSTALL_TARGET
+# - Default target for sub-make in install stage.
+# Default: install
+# INSTALL_WRKSRC
+# - Directory to install from
+# Default: ${WRKSRC}
# NO_MTREE - If set, will not invoke mtree from bsd.port.mk from
# the "install" target.
-# MTREE_FILE - The name of the mtree file (default: /etc/mtree/BSD.x11.dist
-# if USE_X_PREFIX is set, /etc/mtree/BSD.local.dist
-# otherwise.)
-# PLIST_DIRS - Directories to be added to packing list
-# PLIST_FILES - Files and symbolic links to be added to packing list
+# MTREE_FILE - The name of the mtree file.
+# Default: /etc/mtree/BSD.x11.dist if USE_X_PREFIX is set,
+# /etc/mtree/BSD.local.dist otherwise.
+# PLIST_DIRS - Directories to be added to packing list
+# PLIST_FILES - Files and symbolic links to be added to packing list
#
-# PLIST - Name of the `packing list' file (default: ${PKGDIR}/pkg-plist).
+# PLIST - Name of the `packing list' file.
# Change this to ${WRKDIR}/PLIST or something if you
# need to write to it. (It is not a good idea for a port
# to write to any file outside ${WRKDIR} during a normal
# build.)
+# Default: ${PKGDIR}/pkg-plist
# TMPPLIST - Name of the `packing list' file after processing
-# (default: ${WRKDIR}/.PLIST.mktmp).
+# Default: ${WRKDIR}/.PLIST.mktmp
# PLIST_SUB - List of "variable=value" pair for substitution in ${PLIST}
-# (default: see below).
-# INSTALLS_SHLIB - If set, bsd.port.mk will automatically run ldconfig commands
+# Default: see below
+#
+# SUB_FILES - Files that should be passed through sed and redirected to
+# ${WRKDIR}.
+# - For each file specified in SUB_FILES, there must be a
+# corresponding file in ${FILESDIR} whose suffix is ".in". For
+# instance, if the Makefile specifies "SUB_FILES= pkg-message"
+# then there must be a file called pkg-message.in in
+# ${FILESDIR}.
+# - The substitution process is the same as PLIST_FILES, as
+# described below except that any line beginning with @comment
+# is deleted.
+# SUB_LIST - List of "variable=value" pair for substitution in ${SUB_FILES}
+# Some pairs are added by default: eg. PREFIX=${PREFIX})
+#
+# INSTALLS_SHLIB
+# - If set, bsd.port.mk will automatically run ldconfig commands
# from post-install and also add appropriate @exec/@unexec
# directives to directories listed in LDCONFIG_DIRS.
-# LDCONFIG_DIRS - List of directories to run ldconfig if
-# INSTALLS_SHLIB is set (default: %%PREFIX%%/lib).
+# LDCONFIG_DIRS - List of directories to run ldconfig if INSTALLS_SHLIB is set.
# Note that this is passed through sed just like the
# rest of PLIST, so ${PLIST_SUB} substitutions also
# apply here. It is recommended that you use
# %%PREFIX%% for ${PREFIX}, %%LOCALBASE%% for
# ${LOCALBASE} and %%X11BASE%% for ${X11BASE}.
-# DOCSDIR - Name of the directory to install the packages docs in
-# (default: ${PREFIX}/share/doc/${PORTNAME}).
-# EXAMPLESDIR - Name of the directory to install the packages examples in
-# (default: ${PREFIX}/share/examples/${PORTNAME}).
-# DATADIR - Name of the directory to install the packages shared data
-# in (default: ${PREFIX}/share/${PORTNAME}).
+# Default: %%PREFIX%%/lib
+# DOCSDIR - Name of the directory to install the packages docs in.
+# Default: ${PREFIX}/share/doc/${PORTNAME}
+# EXAMPLESDIR - Name of the directory to install the packages examples in.
+# Default: ${PREFIX}/share/examples/${PORTNAME}
+# DATADIR - Name of the directory to install the packages shared data in.
+# Default: ${PREFIX}/share/${PORTNAME}
+#
+# DESKTOPDIR - Name of the directory to install ${DESKTOP_ENTRIES} in.
+# Default: ${PREFIX}/share/applications
+# DESKTOP_ENTRIES
+# - List of desktop entry files to generate and install in
+# ${DESKTOPDIR}. The format is
+# "Name" "Comment" "Icon" "Exec" "Categories" StartupNotify
+# Rules:
+# * Only add desktop entries for applications which do not
+# require a terminal (ie. X applications).
+# * If the upstream distribution already installs .desktop
+# files, you do not need to use this.
+# * If you require a more elaborate .desktop file than this
+# variable permits, write it yourself and install it
+# in ${DESKTOPDIR}.
+# Notes:
+# * Comment and Icon may be empty strings (""). The other
+# fields are mandatory.
+# * Exec will also be used to name the .desktop file.
+# * The files will be automatically added to ${PLIST}.
+# Example:
+# "X Window Information" \
+# "Get information about X windows" \
+# "wininfo.png" \
+# "wininfo" \
+# "Application;System;" \
+# true
+# See http://standards.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html
+# for an explanation of the fields. If you need to create more
+# than one file, just chain them into a single variable.
#
# Note that the install target will automatically add manpages (see
# above) and also substitute special sequences of characters (delimited
@@ -745,64 +867,4409 @@ FreeBSD_MAINTAINER= eik@FreeBSD.org
#
# For package:
#
-# NO_LATEST_LINK - Do not install the "Latest" link for package. Define this
+# NO_LATEST_LINK
+# - Do not install the "Latest" link for package. Define this
# if this port is a beta version of another stable port
# which is also in the tree.
-# LATEST_LINK - Install the "Latest" link for the package as ___. Define
-# this if the "Latest" link name will be incorrectly determined.
+# LATEST_LINK - Install the "Latest" link for the package as ___. Define
+# this if the "Latest" link name will be incorrectly determined.
#
# This is used in all stages:
#
# SCRIPTS_ENV - Additional environment vars passed to scripts in
-# ${SCRIPTDIR} executed by bsd.port.mk (default: see below).
+# ${SCRIPTDIR} executed by bsd.port.mk.
+# Default: see below
#
# Finally, variables to change if you want a special behavior. These
# are for debugging purposes. Don't set them in your Makefile.
#
# ECHO_MSG - Used to print all the '===>' style prompts - override this
-# to turn them off (default: ${ECHO_CMD}).
+# to turn them off.
+# Default: ${ECHO_CMD}
# PATCH_DEBUG - If set, print out more information about the patches as
# it attempts to apply them.
# PKG_DBDIR - Where package installation is recorded; this directory
-# must not contain anything else (default: /var/db/pkg).
-# PORT_DBDIR - Where port configuration options are recorded
-# (default: /var/db/ports)
-# NO_PKG_REGISTER - Don't register a port installation as a package.
-# FORCE_PKG_REGISTER - If set, it will overwrite any existing package
+# must not contain anything else.
+# Default: /var/db/pkg
+# PORT_DBDIR - Where port configuration options are recorded.
+# Default: /var/db/ports
+# NO_PKG_REGISTER
+# - Don't register a port installation as a package.
+# FORCE_PKG_REGISTER
+# - If set, it will overwrite any existing package
# registration information in ${PKG_DBDIR}/${PKGNAME}.
# NO_DEPENDS - Don't verify build of dependencies.
+# CHECKSUM_ALGORITHMS
+# - Different checksum algorithms to check for verifying the
+# integrity of the distfiles. The absence of the algorithm
+# in distinfo doesn't make it fail.
+# Default: md5
# NO_CHECKSUM - Don't verify the checksum. Typically used when
# when you noticed the distfile you just fetched has
# a different checksum and you intend to verify if
# the port still works with it.
-# USE_PACKAGE_DEPENDS - Install dependencies from existing packages instead
+# USE_PACKAGE_DEPENDS
+# - Install dependencies from existing packages instead
# of building the port from scratch.
-# INSTALL_AS_USER - Define this to install as the current user, intended
-# for systems where you have no root access.
-# DISABLE_SIZE - Do not check the size of a distfile even if the SIZE field
-# has been specified in distinfo. This is useful
-# when using an alternate FETCH_CMD.
+# INSTALL_AS_USER
+# - Define this to install as the current user, intended
+# for systems where you have no root access.
+# DISABLE_SIZE - Do not check the size of a distfile even if the SIZE field
+# has been specified in distinfo. This is useful
+# when using an alternate FETCH_CMD.
#
# End of the list of all variables that need to be defined in a port.
# Most port authors should not need to understand anything after this point.
#
-.if !defined(OLD_PORTMK)
+# Look for ${WRKSRC}/.../*.orig files, and (re-)create
+# ${FILEDIR}/patch-* files from them.
+
+.if !target(makepatch)
+makepatch:
+ @cd ${.CURDIR} && ${MKDIR} ${FILESDIR}
+ @(cd ${WRKSRC}; \
+ for i in `find . -type f -name '*.orig'`; do \
+ ORG=$$i; \
+ NEW=$${i%.orig}; \
+ OUT=${FILESDIR}`${ECHO} $${NEW} | \
+ ${SED} -e 's|/|__|g' \
+ -e 's|^\.__|/patch-|'`; \
+ ${ECHO} ${DIFF} -ud $${ORG} $${NEW} '>' $${OUT}; \
+ ${DIFF} -ud $${ORG} $${NEW} > $${OUT} || ${TRUE}; \
+ done \
+ )
+.endif
+
# Start of pre-makefile section.
.if !defined(AFTERPORTMK)
-.include "${PORTSDIR}/devel/portmk/Mk/bsd.port.pre.mk"
+
+.if defined(_PREMKINCLUDED)
+check-makefile::
+ @${ECHO_CMD} "${PKGNAME}: Makefile error: you cannot include bsd.port[.pre].mk twice"
+ @${FALSE}
+.endif
+
+_PREMKINCLUDED= yes
+
+.if defined(MAKE_VERSION)
+.if ${MAKE_VERSION} >= 5200408030 || ${MAKE_VERSION} >= 4200408030 && ${MAKE_VERSION} < 5000000000
+NOPRECIOUSSOFTMAKEVARS= yes
+.endif
+.endif
+
+AWK?= /usr/bin/awk
+BASENAME?= /usr/bin/basename
+BRANDELF?= /usr/bin/brandelf
+.if exists(/usr/bin/bzip2)
+BZCAT?= /usr/bin/bzcat
+BZIP2_CMD?= /usr/bin/bzip2
+.else
+BZCAT?= ${LOCALBASE}/bin/bzcat
+BZIP2_CMD?= ${LOCALBASE}/bin/bzip2
+BZIP2DEPENDS= yes
+.endif
+CAT?= /bin/cat
+CHGRP?= /usr/bin/chgrp
+CHMOD?= /bin/chmod
+CHOWN?= /usr/sbin/chown
+COMM?= /usr/bin/comm
+CP?= /bin/cp
+CPIO?= /usr/bin/cpio
+CUT?= /usr/bin/cut
+DC?= /usr/bin/dc
+DIALOG?= /usr/bin/dialog
+DIFF?= /usr/bin/diff
+DIRNAME?= /usr/bin/dirname
+EGREP?= /usr/bin/egrep
+EXPR?= /bin/expr
+FALSE?= false # Shell builtin
+FILE?= /usr/bin/file
+FIND?= /usr/bin/find
+FMT?= /usr/bin/fmt
+GREP?= /usr/bin/grep
+GUNZIP_CMD?= /usr/bin/gunzip -f
+GZCAT?= /usr/bin/gzcat
+GZIP?= -9
+GZIP_CMD?= /usr/bin/gzip -nf ${GZIP}
+HEAD?= /usr/bin/head
+ID?= /usr/bin/id
+IDENT?= /usr/bin/ident
+LDCONFIG?= /sbin/ldconfig
+LN?= /bin/ln
+LS?= /bin/ls
+MKDIR?= /bin/mkdir -p
+MKTEMP?= /usr/bin/mktemp
+MV?= /bin/mv
+OBJCOPY?= /usr/bin/objcopy
+OBJDUMP?= /usr/bin/objdump
+PASTE?= /usr/bin/paste
+PAX?= /bin/pax
+PRINTF?= /usr/bin/printf
+REALPATH?= /bin/realpath
+RM?= /bin/rm
+RMDIR?= /bin/rmdir
+SED?= /usr/bin/sed
+SETENV?= /usr/bin/env
+SH?= /bin/sh
+SORT?= /usr/bin/sort
+STRIP_CMD?= /usr/bin/strip
+SU_CMD?= /usr/bin/su root -c
+TAIL?= /usr/bin/tail
+TEST?= test # Shell builtin
+TR?= /usr/bin/tr
+TRUE?= true # Shell builtin
+UNAME?= /usr/bin/uname
+.if exists(/usr/bin/unzip)
+UNZIP_CMD?= /usr/bin/unzip
+.else
+UNZIP_CMD?= ${LOCALBASE}/bin/unzip
+ZIPDEPENDS= yes
+.endif
+WHICH?= /usr/bin/which
+XARGS?= /usr/bin/xargs
+YACC?= /usr/bin/yacc
+
+# ECHO is defined in /usr/share/mk/sys.mk, which can either be "echo",
+# or "true" if the make flag -s is given. Use ECHO_CMD where you mean
+# the echo command.
+ECHO_CMD?= echo # Shell builtin
+
+# Used to print all the '===>' style prompts - override this to turn them off.
+ECHO_MSG?= ${ECHO_CMD}
+
+# Get the default maintainer
+MAINTAINER?= ports@FreeBSD.org
+
+# Get the architecture
+.if !defined(ARCH)
+ARCH!= ${UNAME} -p
+.endif
+
+# Kludge for pre-3.0 systems
+MACHINE_ARCH?= i386
+
+# Get the operating system type
+.if !defined(OPSYS)
+OPSYS!= ${UNAME} -s
+.endif
+
+# Get the operating system revision
+.if !defined(OSREL)
+OSREL!= ${UNAME} -r | ${SED} -e 's/[-(].*//'
+.endif
+
+# Get __FreeBSD_version
+.if !defined(OSVERSION)
+.if exists(/sbin/sysctl)
+OSVERSION!= /sbin/sysctl -n kern.osreldate
+.else
+OSVERSION!= /usr/sbin/sysctl -n kern.osreldate
+.endif
+.endif
+
+# Get the object format.
+.if !defined(PORTOBJFORMAT)
+PORTOBJFORMAT!= ${TEST} -x /usr/bin/objformat && /usr/bin/objformat || ${ECHO_CMD} aout
+.endif
+
+MASTERDIR?= ${.CURDIR}
+
+.if ${MASTERDIR} != ${.CURDIR}
+SLAVE_PORT?= yes
+MASTER_PORT?=${MASTERDIR:C/[^\/]+\/\.\.\///:C/[^\/]+\/\.\.\///:C/^.*\/([^\/]+\/[^\/]+)$/\\1/}
+.else
+SLAVE_PORT?= no
+MASTER_PORT?=
+.endif
+
+# If they exist, include Makefile.inc, then architecture/operating
+# system specific Makefiles, then local Makefile.local.
+
+.if ${MASTERDIR} != ${.CURDIR} && exists(${.CURDIR}/../Makefile.inc)
+.include "${.CURDIR}/../Makefile.inc"
+USE_SUBMAKE= yes
+.endif
+
+.if exists(${MASTERDIR}/../Makefile.inc)
+.include "${MASTERDIR}/../Makefile.inc"
+USE_SUBMAKE= yes
+.endif
+
+.if exists(${MASTERDIR}/Makefile.${ARCH}-${OPSYS})
+.include "${MASTERDIR}/Makefile.${ARCH}-${OPSYS}"
+USE_SUBMAKE= yes
+.elif exists(${MASTERDIR}/Makefile.${OPSYS})
+.include "${MASTERDIR}/Makefile.${OPSYS}"
+USE_SUBMAKE= yes
+.elif exists(${MASTERDIR}/Makefile.${ARCH})
+.include "${MASTERDIR}/Makefile.${ARCH}"
+USE_SUBMAKE= yes
+.endif
+
+.if exists(${MASTERDIR}/Makefile.local)
+.include "${MASTERDIR}/Makefile.local"
+USE_SUBMAKE= yes
+.endif
+
+# where 'make config' records user configuration options
+PORT_DBDIR?= /var/db/ports
+
+.if defined(LATEST_LINK)
+UNIQUENAME?= ${LATEST_LINK}
+.else
+UNIQUENAME?= ${PKGNAMEPREFIX}${PORTNAME}
+.endif
+OPTIONSFILE?= ${PORT_DBDIR}/${UNIQUENAME}/options
+_OPTIONSFILE!= ${ECHO_CMD} "${OPTIONSFILE}"
+.if defined(OPTIONS)
+. if defined(PACKAGE_BUILDING) || (defined(BATCH) && !exists(${_OPTIONSFILE}))
+WITHOUT:=
+WITH:=
+. if defined(OPTIONS)
+REALOPTIONS=${OPTIONS:C/".*"//g}
+. for O in ${REALOPTIONS}
+RO:=${O}
+. if ${RO:L} == off
+WITHOUT:= ${WITHOUT} ${OPT}
+. endif
+. if ${RO:L} == on
+WITH:= ${WITH} ${OPT}
+. endif
+OPT:=${RO}
+. endfor
+. endif
+. for W in ${WITH}
+WITH_${W}:= true
+. endfor
+. for W in ${WITHOUT}
+WITHOUT_${W}:= true
+. endfor
+. undef WITH
+. undef WITHOUT
+. undef RO
+. undef REALOPTIONS
+. endif
+. if exists(${_OPTIONSFILE}) && !make(rmconfig)
+. include "${_OPTIONSFILE}"
+. endif
+. if exists(${_OPTIONSFILE}.local)
+. include "${_OPTIONSFILE}.local"
+. endif
+.endif
+
+# check for old, crufty, makefile types, part 1:
+.if !defined(PORTNAME) || !( defined(PORTVERSION) || defined (DISTVERSION) ) || defined(PKGNAME)
+check-makefile::
+ @${ECHO_CMD} "Makefile error: you need to define PORTNAME and PORTVERSION instead of PKGNAME."
+ @${ECHO_CMD} "(This port is too old for your bsd.port.mk, please update it to match"
+ @${ECHO_CMD} " your bsd.port.mk.)"
+ @${FALSE}
+.endif
+
+.if defined(PORTVERSION)
+.if ${PORTVERSION:M*[-_,]*}x != x
+BROKEN= "PORTVERSION ${PORTVERSION} may not contain '-' '_' or ','"
+.endif
+DISTVERSION?= ${PORTVERSION:S/:/::/g}
+.elif defined(DISTVERSION)
+PORTVERSION= ${DISTVERSION:L:C/([a-z])[a-z]+/\1/g:C/([0-9])([a-z])/\1.\2/g:C/:(.)/\1/g:C/[^a-z0-9+]+/./g}
+.endif
+
+PORTREVISION?= 0
+.if ${PORTREVISION} != 0
+_SUF1= _${PORTREVISION}
+.endif
+
+PORTEPOCH?= 0
+.if ${PORTEPOCH} != 0
+_SUF2= ,${PORTEPOCH}
+.endif
+
+# check for old, crufty, makefile types, part 2. The "else" case
+# should have been handled in part 1, above.
+.if !defined(PKGNAME)
+PKGNAME= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION:C/[-_,]/./g}${_SUF1}${_SUF2}
+.endif
+DISTNAME?= ${PORTNAME}-${DISTVERSIONPREFIX}${DISTVERSION:C/:(.)/\1/g}${DISTVERSIONSUFFIX}
+
+# These need to be absolute since we don't know how deep in the ports
+# tree we are and thus can't go relative. They can, of course, be overridden
+# by individual Makefiles or local system make configuration.
+PORTSDIR?= /usr/ports
+DEVELMKDIR= ${PORTSDIR}/devel/portmk/Mk
+LOCALBASE?= ${DESTDIR}/usr/local
+X11BASE?= ${DESTDIR}/usr/X11R6
+LINUXBASE?= ${DESTDIR}/compat/linux
+DISTDIR?= ${PORTSDIR}/distfiles
+_DISTDIR?= ${DISTDIR}/${DIST_SUBDIR}
+.if ${OSVERSION} >= 500036
+INDEXFILE?= INDEX-${OSVERSION:C/([0-9]).*/\1/}
+.else
+INDEXFILE?= INDEX
+.endif
+.if defined(USE_BZIP2)
+EXTRACT_SUFX?= .tar.bz2
+.elif defined(USE_ZIP)
+EXTRACT_SUFX?= .zip
+.else
+EXTRACT_SUFX?= .tar.gz
+.endif
+PACKAGES?= ${PORTSDIR}/packages
+TEMPLATES?= ${PORTSDIR}/Templates
+
+.if (!defined(PKGDIR) && exists(${MASTERDIR}/pkg/DESCR)) || \
+ (!defined(MD5_FILE) && exists(${MASTERDIR}/files/md5))
+check-makefile::
+ @${ECHO_CMD} "Makefile error: your port uses an old layout. Please update it to match this bsd.port.mk. If you have updated your ports collection via cvsup and are still getting this error, see Q12 and Q13 in the cvsup FAQ on http://www.polstra.com for further information."
+ @${FALSE}
+.endif
+PATCHDIR?= ${MASTERDIR}/files
+FILESDIR?= ${MASTERDIR}/files
+SCRIPTDIR?= ${MASTERDIR}/scripts
+PKGDIR?= ${MASTERDIR}
+
+.if defined(USE_IMAKE) && !defined(USE_X_PREFIX)
+USE_X_PREFIX= yes
+.endif
+.if defined(USE_X_PREFIX) && ${USE_X_PREFIX} == "no"
+.undef USE_X_PREFIX
+.endif
+.if defined(USE_X_PREFIX)
+USE_XLIB= yes
+.endif
+.if defined(USE_X_PREFIX)
+PREFIX?= ${X11BASE}
+.elif defined(USE_LINUX_PREFIX)
+PREFIX?= ${LINUXBASE}
+NO_MTREE= yes
+.else
+PREFIX?= ${LOCALBASE}
+.endif
+
+PKGCOMPATDIR?= ${LOCALBASE}/lib/compat/pkg
+
+.if ${OSVERSION} >= 500036
+PERL_VERSION?= 5.8.7
+PERL_VER?= 5.8.7
+.else
+.if ${OSVERSION} >= 500032
+PERL_VERSION?= 5.6.1
+PERL_VER?= 5.6.1
+.else
+.if ${OSVERSION} >= 500007
+PERL_VERSION?= 5.6.0
+PERL_VER?= 5.6.0
+.else
+PERL_VERSION?= 5.00503
+PERL_VER?= 5.005
+.endif
+.endif
+.endif
+
+.if !defined(PERL_LEVEL) && defined(PERL_VERSION)
+perl_major= ${PERL_VERSION:C|^([1-9]+).*|\1|}
+_perl_minor= 00${PERL_VERSION:C|^([1-9]+)\.([0-9]+).*|\2|}
+perl_minor= ${_perl_minor:C|^.*(...)|\1|}
+.if ${perl_minor} >= 100
+perl_minor= ${PERL_VERSION:C|^([1-9]+)\.([0-9][0-9][0-9]).*|\2|}
+perl_patch= ${PERL_VERSION:C|^.*(..)|\1|}
+.else # ${perl_minor} < 100
+_perl_patch= 0${PERL_VERSION:C|^([1-9]+)\.([0-9]+)\.*|0|}
+perl_patch= ${_perl_patch:C|^.*(..)|\1|}
+.endif # ${perl_minor} < 100
+PERL_LEVEL= ${perl_major}${perl_minor}${perl_patch}
+.else
+PERL_LEVEL=0
+.endif # !defined(PERL_LEVEL) && defined(PERL_VERSION)
+
+.if ${PERL_LEVEL} >= 500600
+PERL_ARCH?= mach
+.else
+PERL_ARCH?= ${ARCH}-freebsd
+.endif
+
+.if ${PERL_LEVEL} >= 500800
+PERL_PORT?= perl5.8
+.else
+PERL_PORT?= perl5
+.endif
+
+SITE_PERL_REL?= lib/perl5/site_perl/${PERL_VER}
+SITE_PERL?= ${LOCALBASE}/${SITE_PERL_REL}
+
+.if ${PERL_LEVEL} < 500600
+PERL5= /usr/bin/perl${PERL_VERSION}
+PERL= /usr/bin/perl
+.else
+PERL5= ${LOCALBASE}/bin/perl${PERL_VERSION}
+PERL= ${LOCALBASE}/bin/perl
+.endif
+
+# XXX: (not yet): .if defined(USE_AUTOTOOLS)
+# .include "${PORTSDIR}/Mk/bsd.autotools.mk"
+# XXX: (not yet): .endif
+
+.if defined(USE_OPENSSL)
+.include "${PORTSDIR}/Mk/bsd.openssl.mk"
+.endif
+
+.if defined(EMACS_PORT_NAME)
+.include "${PORTSDIR}/Mk/bsd.emacs.mk"
+.endif
+
+.if defined(USE_GNUSTEP)
+.include "${PORTSDIR}/Mk/bsd.gnustep.mk"
+.endif
+
+.if defined(USE_PHP)
+.include "${PORTSDIR}/Mk/bsd.php.mk"
+.endif
+
+.if defined(USE_PYTHON) || defined(USE_PYTHON_BUILD) || defined(USE_PYTHON_RUN)
+.include "${PORTSDIR}/Mk/bsd.python.mk"
+.endif
+
+.if defined(USE_JAVA)
+.include "${DEVELMKDIR}/bsd.java.mk"
+.endif
+
+.if defined(USE_RUBY) || defined(USE_LIBRUBY)
+.include "${PORTSDIR}/Mk/bsd.ruby.mk"
+.endif
+
+.if defined(USE_TCL) || defined(USE_TK)
+.include "${DEVELMKDIR}/bsd.tcl.mk"
+.endif
+
+.if defined(USE_APACHE)
+.include "${DEVELMKDIR}/bsd.apache.mk"
+.endif
+
+.if defined(USE_QT_VER) || defined(USE_KDELIBS_VER) || defined(USE_KDEBASE_VER)
+.include "${PORTSDIR}/Mk/bsd.kde.mk"
+.endif
+
+.if defined(WANT_GNOME) || defined(USE_GNOME) || defined(USE_GTK)
+.include "${PORTSDIR}/Mk/bsd.gnome.mk"
+.endif
+
+.if defined(WANT_GSTREAMER) || defined(USE_GSTREAMER)
+.include "${PORTSDIR}/Mk/bsd.gstreamer.mk"
+.endif
+
+.if defined(USE_SDL) || defined(WANT_SDL)
+.include "${PORTSDIR}/Mk/bsd.sdl.mk"
+.endif
+
+.if ${OSVERSION} >= 502123
+X_WINDOW_SYSTEM ?= xorg
+.elif (${OSVERSION} >= 450005 && !defined(XFREE86_VERSION)) || \
+ (defined(XFREE86_VERSION) && ${XFREE86_VERSION} == 4)
+X_WINDOW_SYSTEM ?= xfree86-4
+.else
+X_WINDOW_SYSTEM ?= xfree86-3
+.endif
+
+# Location of mounted CDROM(s) to search for files
+CD_MOUNTPTS?= /cdrom ${CD_MOUNTPT}
+
+WANT_OPENLDAP_VER?= 22
+
+WANT_FAM_SYSTEM?= fam
+
+# Owner and group of the WWW user
+WWWOWN?= www
+WWWGRP?= www
+
.endif
# End of pre-makefile section.
# Start of post-makefile section.
.if !defined(BEFOREPORTMK)
-.include "${PORTSDIR}/devel/portmk/Mk/bsd.port.post.mk"
+
+.if defined(_POSTMKINCLUDED)
+check-makefile::
+ @${ECHO_CMD} "${PKGNAME}: Makefile error: you cannot include bsd.port[.post].mk twice"
+ @${FALSE}
.endif
-# End of post-makefile section.
+_POSTMKINCLUDED= yes
+
+WRKDIR?= ${WRKDIRPREFIX}${.CURDIR}/work
+.if defined(NO_WRKSUBDIR)
+WRKSRC?= ${WRKDIR}
+.else
+WRKSRC?= ${WRKDIR}/${DISTNAME}
+.endif
+
+PATCH_WRKSRC?= ${WRKSRC}
+CONFIGURE_WRKSRC?= ${WRKSRC}
+BUILD_WRKSRC?= ${WRKSRC}
+INSTALL_WRKSRC?=${WRKSRC}
+
+PLIST_SUB+= OSREL=${OSREL} PREFIX=%D LOCALBASE=${LOCALBASE} X11BASE=${X11BASE}
+SUB_LIST+= PREFIX=${PREFIX} LOCALBASE=${LOCALBASE} X11BASE=${X11BASE} \
+ DATADIR=${DATADIR} DOCSDIR=${DOCSDIR} EXAMPLESDIR=${EXAMPLESDIR}
+
+.if defined(WITHOUT_CPU_CFLAGS)
+.if defined(_CPUCFLAGS)
+.if !empty(_CPUCFLAGS)
+CFLAGS:= ${CFLAGS:C/${_CPUCFLAGS}//}
+.endif
+.endif
+.endif
+.if ${CFLAGS:M-O[23s]} != ""
+CFLAGS+= -fno-strict-aliasing
+.endif
+
+.if defined(NOPORTDOCS)
+PLIST_SUB+= PORTDOCS="@comment "
+.else
+PLIST_SUB+= PORTDOCS=""
+.endif
+
+CONFIGURE_SHELL?= ${SH}
+MAKE_SHELL?= ${SH}
+
+CONFIGURE_ENV+= SHELL=${SH} CONFIG_SHELL=${SH} PORTOBJFORMAT=${PORTOBJFORMAT}
+SCRIPTS_ENV+= PORTOBJFORMAT=${PORTOBJFORMAT}
+MAKE_ENV+= SHELL=${SH} PORTOBJFORMAT=${PORTOBJFORMAT} NO_LINT=YES
+PLIST_SUB+= PORTOBJFORMAT=${PORTOBJFORMAT}
+
+.if defined(MANCOMPRESSED)
+.if ${MANCOMPRESSED} != yes && ${MANCOMPRESSED} != no && \
+ ${MANCOMPRESSED} != maybe
+check-makevars::
+ @${ECHO_CMD} "${PKGNAME}: Makefile error: value of MANCOMPRESSED (is \"${MANCOMPRESSED}\") can only be \"yes\", \"no\" or \"maybe\"".
+ @${FALSE}
+.endif
+.endif
+
+.if defined(USE_IMAKE) && !defined(NO_INSTALL_MANPAGES)
+MANCOMPRESSED?= yes
+.else
+MANCOMPRESSED?= no
+.endif
+
+.if defined(PATCHFILES)
+.if ${PATCHFILES:M*.bz2}x != x && defined(BZIP2DEPENDS)
+PATCH_DEPENDS+= bzip2:${PORTSDIR}/archivers/bzip2
+.endif
+.if ${PATCHFILES:M*.zip}x != x && defined(ZIPDEPENDS)
+PATCH_DEPENDS+= unzip:${PORTSDIR}/archivers/unzip
+.endif
+.endif
+
+.if defined(USE_BZIP2) && defined(BZIP2DEPENDS)
+EXTRACT_DEPENDS+= bzip2:${PORTSDIR}/archivers/bzip2
+.endif
+.if defined(USE_ZIP) && defined(ZIPDEPENDS)
+EXTRACT_DEPENDS+= unzip:${PORTSDIR}/archivers/unzip
+.endif
+.if defined(USE_GMAKE)
+BUILD_DEPENDS+= gmake:${PORTSDIR}/devel/gmake
+CONFIGURE_ENV+= MAKE=${GMAKE}
+MAKE_ENV+= CC="${CC}" CXX="${CXX}"
+.endif
+
+.if defined(USE_GCC)
+.include "${PORTSDIR}/Mk/bsd.gcc.mk"
+.endif
+
+.if defined(USE_OPENLDAP_VER)
+USE_OPENLDAP?= yes
+WANT_OPENLDAP_VER= ${USE_OPENLDAP_VER}
+.endif
+
+.if defined(USE_OPENLDAP)
+.if defined(WANT_OPENLDAP_SASL)
+_OPENLDAP_FLAVOUR= -sasl
+.else
+_OPENLDAP_FLAVOUR=
+.endif
+.if ${WANT_OPENLDAP_VER} == 22
+LIB_DEPENDS+= ldap-2.2.7:${PORTSDIR}/net/openldap22${_OPENLDAP_FLAVOUR}-client
+.elif ${WANT_OPENLDAP_VER} == 23
+LIB_DEPENDS+= ldap-2.3.1:${PORTSDIR}/net/openldap23${_OPENLDAP_FLAVOUR}-client
+.else
+BROKEN= "unknown OpenLDAP version: ${WANT_OPENLDAP_VER}"
+.endif
+.endif
+
+.if defined(USE_FAM)
+.if ${WANT_FAM_SYSTEM} == fam
+LIB_DEPENDS+= fam.0:${PORTSDIR}/devel/fam
+.elif ${WANT_FAM_SYSTEM} == gamin
+LIB_DEPENDS+= fam.0:${PORTSDIR}/devel/gamin
+.else
+BROKEN= "unknown FAM system: ${WANT_FAM_SYSTEM}"
+.endif
+.endif
+
+.if defined(USE_GETOPT_LONG)
+.if ${OSVERSION} < 500041
+LIB_DEPENDS+= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt
+CPPFLAGS+= -I${LOCALBASE}/include
+LDFLAGS+= -L${LOCALBASE}/lib -lgnugetopt
+CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
+.endif
+.endif
+
+.if defined(USE_RC_SUBR) || defined(USE_RCORDER)
+.if ${OSVERSION} < 500037
+RUN_DEPENDS+= ${LOCALBASE}/etc/rc.subr:${PORTSDIR}/sysutils/rc_subr
+RC_SUBR= ${LOCALBASE}/etc/rc.subr
+.else
+RC_SUBR= /etc/rc.subr
+.endif
+SUB_LIST+= RC_SUBR=${RC_SUBR}
+.if defined(USE_RC_SUBR) && ${USE_RC_SUBR:U} != "YES"
+SUB_FILES+= ${USE_RC_SUBR}
+.endif
+.if defined(USE_RCORDER)
+SUB_FILES+= ${USE_RCORDER}
+.endif
+.endif
+
+.if defined(USE_ICONV)
+LIB_DEPENDS+= iconv.3:${PORTSDIR}/converters/libiconv
+.endif
+
+.if defined(USE_GETTEXT)
+. if ${USE_GETTEXT:L} == "yes"
+LIB_DEPENDS+= intl:${PORTSDIR}/devel/gettext
+. else
+LIB_DEPENDS+= intl.${USE_GETTEXT}:${PORTSDIR}/devel/gettext
+. endif
+.endif
+
+.if defined(USE_LINUX)
+
+# install(1) also does a brandelf on strip, so don't strip with FreeBSD tools.
+STRIP=
+. if exists(${LINUXBASE}/usr/bin/strip)
+STRIP_CMD= ${LINUXBASE}/usr/bin/strip
+. else
+STRIP_CMD= ${TRUE}
+. endif
+
+NO_FILTER_SHLIBS= yes
+
+# Allow the user to specify another linux_base version.
+. if defined(OVERRIDE_LINUX_BASE_PORT)
+. if ${USE_LINUX:L} == yes
+USE_LINUX= ${OVERRIDE_LINUX_BASE_PORT}
+. endif
+. endif
+
+. if exists(${PORTSDIR}/emulators/linux_base-${USE_LINUX})
+LINUX_BASE_PORT= ${LINUXBASE}/bin/sh:${PORTSDIR}/emulators/linux_base-${USE_LINUX}
+. else
+. if ${USE_LINUX} == "7"
+LINUX_BASE_PORT= ${LINUXBASE}/etc/redhat-release:${PORTSDIR}/emulators/linux_base
+. else
+. if ${USE_LINUX:L} == "yes"
+LINUX_BASE_PORT= ${LINUXBASE}/etc/redhat-release:${PORTSDIR}/emulators/linux_base-8
+. else
+IGNORE= There is no emulators/linux_base-${USE_LINUX}, perhaps wrong use of USE_LINUX or OVERRIDE_LINUX_BASE_PORT.
+. endif
+. endif
+. endif
+
+RUN_DEPENDS+= ${LINUX_BASE_PORT}
+.endif
+
+.if defined(USE_MOTIF)
+USE_XPM= yes
+.if defined(WANT_LESSTIF)
+LIB_DEPENDS+= Xm:${PORTSDIR}/x11-toolkits/lesstif
+NO_OPENMOTIF= yes
+.endif
+.if !defined(NO_OPENMOTIF)
+LIB_DEPENDS+= Xm.3:${PORTSDIR}/x11-toolkits/open-motif
+.endif
+.endif
+
+.if defined(USE_FREETYPE)
+LIB_DEPENDS+= ttf.4:${PORTSDIR}/print/freetype
+.endif
+
+.if defined(X_WINDOW_SYSTEM) && ${X_WINDOW_SYSTEM:L} == xorg
+X_IMAKE_PORT= ${PORTSDIR}/devel/imake-6
+X_LIBRARIES_PORT= ${PORTSDIR}/x11/xorg-libraries
+X_CLIENTS_PORT= ${PORTSDIR}/x11/xorg-clients
+X_SERVER_PORT= ${PORTSDIR}/x11-servers/xorg-server
+X_FONTSERVER_PORT= ${PORTSDIR}/x11-servers/xorg-fontserver
+X_PRINTSERVER_PORT= ${PORTSDIR}/x11-servers/xorg-printserver
+X_VFBSERVER_PORT= ${PORTSDIR}/x11-servers/xorg-vfbserver
+X_NESTSERVER_PORT= ${PORTSDIR}/x11-servers/xorg-nestserver
+X_FONTS_ENCODINGS_PORT= ${PORTSDIR}/x11-fonts/xorg-fonts-encodings
+X_FONTS_MISC_PORT= ${PORTSDIR}/x11-fonts/xorg-fonts-miscbitmaps
+X_FONTS_100DPI_PORT= ${PORTSDIR}/x11-fonts/xorg-fonts-100dpi
+X_FONTS_75DPI_PORT= ${PORTSDIR}/x11-fonts/xorg-fonts-75dpi
+X_FONTS_CYRILLIC_PORT= ${PORTSDIR}/x11-fonts/xorg-fonts-cyrillic
+X_FONTS_TTF_PORT= ${PORTSDIR}/x11-fonts/xorg-fonts-truetype
+X_FONTS_TYPE1_PORT= ${PORTSDIR}/x11-fonts/xorg-fonts-type1
+X_MANUALS_PORT= ${PORTSDIR}/x11/xorg-manpages
+.elif defined(X_WINDOW_SYSTEM) && ${X_WINDOW_SYSTEM:L} == xfree86-4
+X_IMAKE_PORT= ${PORTSDIR}/devel/imake-4
+X_LIBRARIES_PORT= ${PORTSDIR}/x11/XFree86-4-libraries
+X_CLIENTS_PORT= ${PORTSDIR}/x11/XFree86-4-clients
+X_SERVER_PORT= ${PORTSDIR}/x11-servers/XFree86-4-Server
+X_FONTSERVER_PORT= ${PORTSDIR}/x11-servers/XFree86-4-FontServer
+X_PRINTSERVER_PORT= ${PORTSDIR}/x11-servers/XFree86-4-PrintServer
+X_VFBSERVER_PORT= ${PORTSDIR}/x11-servers/XFree86-4-VirtualFramebufferServer
+X_NESTSERVER_PORT= ${PORTSDIR}/x11-servers/XFree86-4-NestServer
+X_FONTS_ENCODINGS_PORT= ${PORTSDIR}/x11-fonts/XFree86-4-fontEncodings
+X_FONTS_MISC_PORT= ${PORTSDIR}/x11-fonts/XFree86-4-fontDefaultBitmaps
+X_FONTS_100DPI_PORT= ${PORTSDIR}/x11-fonts/XFree86-4-font100dpi
+X_FONTS_75DPI_PORT= ${PORTSDIR}/x11-fonts/XFree86-4-font75dpi
+X_FONTS_CYRILLIC_PORT= ${PORTSDIR}/x11-fonts/XFree86-4-fontCyrillic
+X_FONTS_TTF_PORT= ${PORTSDIR}/x11-fonts/XFree86-4-fontScalable
+X_FONTS_TYPE1_PORT= ${PORTSDIR}/x11-fonts/XFree86-4-fontScalable
+X_MANUALS_PORT= ${PORTSDIR}/x11/XFree86-4-manuals
+.elif defined(X_WINDOW_SYSTEM) && ${X_WINDOW_SYSTEM:L} == xfree86-3
+X_IMAKE_PORT= ${PORTSDIR}/x11/XFree86
+X_LIBRARIES_PORT= ${PORTSDIR}/x11/XFree86
+X_CLIENTS_PORT= ${PORTSDIR}/x11/XFree86
+X_SERVER_PORT= ${PORTSDIR}/x11/XFree86
+X_FONTSERVER_PORT= ${PORTSDIR}/x11/XFree86
+X_PRINTSERVER_PORT= ${PORTSDIR}/x11/XFree86
+X_VFBSERVER_PORT= ${PORTSDIR}/x11/XFree86
+X_NESTSERVER_PORT= ${PORTSDIR}/x11/XFree86
+X_FONTS_ENCODINGS_PORT= ${PORTSDIR}/x11/XFree86
+X_FONTS_MISC_PORT= ${PORTSDIR}/x11/XFree86
+X_FONTS_100DPI_PORT= ${PORTSDIR}/x11/XFree86
+X_FONTS_75DPI_PORT= ${PORTSDIR}/x11/XFree86
+X_FONTS_CYRILLIC_PORT= ${PORTSDIR}/x11/XFree86
+X_FONTS_TTF_PORT= ${PORTSDIR}/x11/XFree86
+X_FONTS_TYPE1_PORT= ${PORTSDIR}/x11/XFree86
+X_MANUALS_PORT= ${PORTSDIR}/x11/XFree86
+.else
+.error Bad X_WINDOW_SYSTEM setting
+.endif
+
+.if defined(USE_IMAKE)
+BUILD_DEPENDS+= imake:${X_IMAKE_PORT}
+.endif
+
+.if ${X_WINDOW_SYSTEM:L} == xfree86-3
+
+.if defined(USE_XPM)
+LIB_DEPENDS+= Xpm.4:${PORTSDIR}/graphics/xpm
+.endif
+.if defined(USE_GL)
+LIB_DEPENDS+= GL.14:${PORTSDIR}/graphics/mesagl
+.endif
+
+XAWVER= 6
+PKG_IGNORE_DEPENDS?= '^XFree86-3\.'
+
+.else
+
+.if defined(USE_XPM) || defined(USE_GL)
+USE_XLIB= yes
+.endif
+
+.if ${X_WINDOW_SYSTEM:L} == xorg
+XAWVER= 8
+.else
+XAWVER= 7
+.endif
+PKG_IGNORE_DEPENDS?= 'this_port_does_not_exist'
+
+.endif
+
+PLIST_SUB+= XAWVER=${XAWVER}
+
+.if defined(USE_MESA)
+LIB_DEPENDS+= glut.3:${PORTSDIR}/graphics/libglut
+.endif
+
+.if defined(USE_BISON)
+BUILD_DEPENDS+= bison:${PORTSDIR}/devel/bison
+.endif
+
+PLIST_SUB+= PERL_VERSION=${PERL_VERSION} \
+ PERL_VER=${PERL_VER} \
+ PERL_ARCH=${PERL_ARCH} \
+ SITE_PERL=${SITE_PERL_REL}
+
+.if defined(PERL_MODBUILD)
+PERL_CONFIGURE= yes
+CONFIGURE_SCRIPT?= Build.PL
+.if ${PORTNAME} != Module-Build
+BUILD_DEPENDS+= ${SITE_PERL}/Module/Build.pm:${PORTSDIR}/devel/p5-Module-Build
+.endif
+ALL_TARGET?=
+PL_BUILD?= Build
+CONFIGURE_ARGS+= \
+ create_packlist=0 \
+ install_path=lib="${PREFIX}/${SITE_PERL_REL}" \
+ install_path=arch="${PREFIX}/${SITE_PERL_REL}/${PERL_ARCH}" \
+ install_path=script="${PREFIX}/bin" \
+ install_path=bin="${PREFIX}/bin" \
+ install_path=libdoc="${MAN3PREFIX}/man/man3" \
+ install_path=bindoc="${MAN1PREFIX}/man/man1"
+.elif defined(PERL_CONFIGURE)
+CONFIGURE_ARGS+= INSTALLDIRS="site"
+.endif
+
+.if defined(PERL_CONFIGURE)
+USE_PERL5= yes
+USE_REINPLACE=yes
+.endif
+
+.if ${PERL_LEVEL} >= 500600
+.if defined(USE_PERL5) || defined(USE_PERL5_BUILD)
+EXTRACT_DEPENDS+=${PERL5}:${PORTSDIR}/lang/${PERL_PORT}
+PATCH_DEPENDS+= ${PERL5}:${PORTSDIR}/lang/${PERL_PORT}
+BUILD_DEPENDS+= ${PERL5}:${PORTSDIR}/lang/${PERL_PORT}
+.endif
+.if defined(USE_PERL5) || defined(USE_PERL5_RUN)
+RUN_DEPENDS+= ${PERL5}:${PORTSDIR}/lang/${PERL_PORT}
+.endif
+.endif
+
+# XXX: (not yet): .if defined(USE_AUTOTOOLS)
+.include "${PORTSDIR}/Mk/bsd.autotools.mk"
+# XXX: (not yet): .endif
+
+.if defined(USE_MYSQL) || defined(WANT_MYSQL_VER) || \
+ defined(USE_PGSQL) || defined(WANT_PGSQL_VER) || \
+ defined(USE_BDB) || defined(USE_SQLITE)
+.include "${DEVELMKDIR}/bsd.database.mk"
+.endif
+
+.if defined(WANT_GNOME) || defined(USE_GNOME) || defined(USE_GTK)
+.include "${PORTSDIR}/Mk/bsd.gnome.mk"
+.endif
+
+.if defined(WANT_GSTREAMER) || defined(USE_GSTREAMER)
+.include "${PORTSDIR}/Mk/bsd.gstreamer.mk"
+.endif
+
+.if defined(USE_SDL) || defined(WANT_SDL)
+.include "${PORTSDIR}/Mk/bsd.sdl.mk"
+.endif
+
+.if defined(USE_PYTHON)
+.include "${PORTSDIR}/Mk/bsd.python.mk"
+.endif
+
+.if defined(USE_TCL) || defined(USE_TK)
+.include "${DEVELMKDIR}/bsd.tcl.mk"
+.endif
+
+.if defined(USE_APACHE)
+.include "${DEVELMKDIR}/bsd.apache.mk"
+.endif
+
+.if exists(${PORTSDIR}/../Makefile.inc)
+.include "${PORTSDIR}/../Makefile.inc"
+USE_SUBMAKE= yes
+.endif
+
+.if defined(USE_XLIB)
+. if defined(USE_LINUX)
+RUN_DEPENDS+= ${LINUXBASE}/usr/X11R6/lib/libXrender.so.1:${PORTSDIR}/x11/linux-XFree86-libs
+. else
+LIB_DEPENDS+= X11.6:${X_LIBRARIES_PORT}
+. endif
+# Add explicit X options to avoid problems with false positives in configure
+.if defined(GNU_CONFIGURE)
+CONFIGURE_ARGS+=--x-libraries=${X11BASE}/lib --x-includes=${X11BASE}/include
+.endif
+.endif
+
+# Set the default for the installation of Postscript(TM)-
+# compatible functionality.
+.if !defined(WITHOUT_X11)
+.if defined(WITH_GHOSTSCRIPT_AFPL)
+.if ${WITH_GHOSTSCRIPT_AFPL} == yes
+GHOSTSCRIPT_PORT?= print/ghostscript-afpl
+.else
+GHOSTSCRIPT_PORT?= print/ghostscript-gnu
+.endif
+.else
+GHOSTSCRIPT_PORT?= print/ghostscript-gnu
+.endif
+.else
+.if defined(WITH_GHOSTSCRIPT_AFPL)
+.if ${WITH_GHOSTSCRIPT_AFPL} == yes
+GHOSTSCRIPT_PORT?= print/ghostscript-afpl-nox11
+.else
+GHOSTSCRIPT_PORT?= print/ghostscript-gnu-nox11
+.endif
+.else
+GHOSTSCRIPT_PORT?= print/ghostscript-gnu-nox11
+.endif
+.endif
+
+# Set up the ghostscript dependencies.
+.if defined(USE_GHOSTSCRIPT) || defined(USE_GHOSTSCRIPT_BUILD)
+BUILD_DEPENDS+= gs:${PORTSDIR}/${GHOSTSCRIPT_PORT}
+.endif
+.if defined(USE_GHOSTSCRIPT) || defined(USE_GHOSTSCRIPT_RUN)
+RUN_DEPENDS+= gs:${PORTSDIR}/${GHOSTSCRIPT_PORT}
+.endif
+
+# Special macro for doing in-place file editing using regexps
+.if defined(USE_REINPLACE)
+REINPLACE_ARGS?= -i.bak
+REINPLACE_CMD?= ${SED} ${REINPLACE_ARGS}
+.endif
+
+# Names of cookies used to skip already completed stages
+EXTRACT_COOKIE?= ${WRKDIR}/.extract_done.${PKGNAME}.${PREFIX:S/\//_/g}
+CONFIGURE_COOKIE?= ${WRKDIR}/.configure_done.${PKGNAME}.${PREFIX:S/\//_/g}
+INSTALL_COOKIE?= ${WRKDIR}/.install_done.${PKGNAME}.${PREFIX:S/\//_/g}
+BUILD_COOKIE?= ${WRKDIR}/.build_done.${PKGNAME}.${PREFIX:S/\//_/g}
+PATCH_COOKIE?= ${WRKDIR}/.patch_done.${PKGNAME}.${PREFIX:S/\//_/g}
+PACKAGE_COOKIE?= ${WRKDIR}/.package_done.${PKGNAME}.${PREFIX:S/\//_/g}
+
+# How to do nothing. Override if you, for some strange reason, would rather
+# do something.
+DO_NADA?= ${TRUE}
+
+# Use this as the first operand to always build dependency.
+NONEXISTENT?= /nonexistent
+
+# Miscellaneous overridable commands:
+GMAKE?= gmake
+XMKMF?= xmkmf -a
+.if exists(/sbin/md5)
+MD5?= /sbin/md5
+.elif exists(/bin/md5)
+MD5?= /bin/md5
+.elif exists(/usr/bin/md5)
+MD5?= /usr/bin/md5
+.else
+MD5?= md5
+.endif
+.if exists(/sbin/sha256)
+SHA256?= /sbin/sha256
+.elif exists(${LOCALBASE}/sbin/sha256)
+SHA256?= ${LOCALBASE}/sbin/sha256
+.else
+SHA256?= NO
+.endif
+
+CHECKSUM_ALGORITHMS?= md5 sha256
+
+MD5_FILE?= ${MASTERDIR}/distinfo
+
+MAKE_FLAGS?= -f
+MAKEFILE?= Makefile
+MAKE_ENV+= PREFIX=${PREFIX} LOCALBASE=${LOCALBASE} X11BASE=${X11BASE} MOTIFLIB="${MOTIFLIB}" LIBDIR="${LIBDIR}" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" MANPREFIX="${MANPREFIX}"
+
+.if ${OSVERSION} < 500016
+PTHREAD_CFLAGS?= -D_THREAD_SAFE
+PTHREAD_LIBS?= -pthread
+.elif ${OSVERSION} < 502102
+PTHREAD_CFLAGS?= -D_THREAD_SAFE
+PTHREAD_LIBS?= -lc_r
+.else
+PTHREAD_CFLAGS?=
+PTHREAD_LIBS?= -pthread
+.endif
+
+.if exists(/usr/bin/fetch)
+FETCH_CMD?= /usr/bin/fetch -ARr
+FETCH_REGET?= 1
+.if ${OSVERSION} >= 480000 && !defined(DISABLE_SIZE)
+# Avoid -S for 4.7 and earlier since it causes fetch errors
+FETCH_BEFORE_ARGS+= $${CKSIZE:+-S $$CKSIZE}
+.endif
+.else
+FETCH_CMD?= /usr/bin/ftp
+FETCH_REGET?= 0
+.endif
+
+.if defined(RANDOMIZE_MASTER_SITES)
+.if exists(/usr/games/random)
+RANDOM_CMD?= /usr/games/random
+RANDOM_ARGS?= "-w -f -"
+.if ( ${OSVERSION} > 480000 && ${OSVERSION} < 500000 ) || ${OSVERSION} > 500100
+_RANDOMIZE_SITES= " |${RANDOM_CMD} ${RANDOM_ARGS}"
+.else
+_RANDOMIZE_SITES= ''
+.endif
+.endif
+.endif
+
+TOUCH?= /usr/bin/touch
+TOUCH_FLAGS?= -f
+
+DISTORIG?= .bak.orig
+PATCH?= /usr/bin/patch
+PATCH_STRIP?= -p0
+PATCH_DIST_STRIP?= -p0
+.if defined(PATCH_DEBUG)
+PATCH_DEBUG_TMP= yes
+PATCH_ARGS?= -d ${PATCH_WRKSRC} -E ${PATCH_STRIP}
+PATCH_DIST_ARGS?= --suffix ${DISTORIG} -d ${PATCH_WRKSRC} -E ${PATCH_DIST_STRIP}
+.else
+PATCH_DEBUG_TMP= no
+PATCH_ARGS?= -d ${PATCH_WRKSRC} --forward --quiet -E ${PATCH_STRIP}
+PATCH_DIST_ARGS?= --suffix ${DISTORIG} -d ${PATCH_WRKSRC} --forward --quiet -E ${PATCH_DIST_STRIP}
+.endif
+.if defined(BATCH)
+PATCH_ARGS+= --batch
+PATCH_DIST_ARGS+= --batch
+.endif
+
+# Prevent breakage with VERSION_CONTROL=numbered
+PATCH_ARGS+= -V simple
+
+.if defined(PATCH_CHECK_ONLY)
+PATCH_ARGS+= -C
+PATCH_DIST_ARGS+= -C
+.endif
+
+.if ${PATCH} == "/usr/bin/patch"
+PATCH_ARGS+= --suffix .orig
+PATCH_DIST_ARGS+= --suffix .orig
+.endif
+
+.if exists(/bin/tar)
+TAR?= /bin/tar
+.else
+TAR?= /usr/bin/tar
+.endif
+
+# EXTRACT_SUFX is defined in .pre.mk section
+.if defined(USE_ZIP)
+EXTRACT_CMD?= ${UNZIP_CMD}
+EXTRACT_BEFORE_ARGS?= -qo
+EXTRACT_AFTER_ARGS?= -d ${WRKDIR}
+.else
+EXTRACT_BEFORE_ARGS?= -dc
+EXTRACT_AFTER_ARGS?= | ${TAR} -xf -
+.if defined(USE_BZIP2)
+EXTRACT_CMD?= ${BZIP2_CMD}
+.else
+EXTRACT_CMD?= ${GZIP_CMD}
+.endif
+.endif
+
+# Figure out where the local mtree file is
+.if !defined(MTREE_FILE) && !defined(NO_MTREE)
+.if ${PREFIX} == ${X11BASE} || defined(USE_X_PREFIX)
+# User may have specified non-standard PREFIX for installing a port that
+# uses X
+.if ${X_WINDOW_SYSTEM:L} == xfree86-3
+MTREE_FILE= /etc/mtree/BSD.x11.dist
+.elif ${X_WINDOW_SYSTEM:L} == xorg
+MTREE_FILE= ${PORTSDIR}/x11-servers/xorg-server/files/BSD.x11-xorg.dist
+.else
+MTREE_FILE= /etc/mtree/BSD.x11-4.dist
+.endif
+.elif ${PREFIX} == /usr
+MTREE_FILE= /etc/mtree/BSD.usr.dist
+.else
+MTREE_FILE= /etc/mtree/BSD.local.dist
+.endif
+.endif
+MTREE_CMD?= /usr/sbin/mtree
+MTREE_ARGS?= -U ${MTREE_FOLLOWS_SYMLINKS} -f ${MTREE_FILE} -d -e -p
+
+# Determine whether or not we can use rootly owner/group functions.
+.if !defined(UID)
+UID!= ${ID} -u
+.endif
+.if ${UID} == 0
+_BINOWNGRP= -o ${BINOWN} -g ${BINGRP}
+_SHROWNGRP= -o ${SHAREOWN} -g ${SHAREGRP}
+_MANOWNGRP= -o ${MANOWN} -g ${MANGRP}
+.else
+_BINOWNGRP=
+_SHROWNGRP=
+_MANOWNGRP=
+.endif
+
+# A few aliases for *-install targets
+INSTALL_PROGRAM= \
+ ${INSTALL} ${COPY} ${STRIP} ${_BINOWNGRP} -m ${BINMODE}
+INSTALL_SCRIPT= \
+ ${INSTALL} ${COPY} ${_BINOWNGRP} -m ${BINMODE}
+INSTALL_DATA= \
+ ${INSTALL} ${COPY} ${_SHROWNGRP} -m ${SHAREMODE}
+INSTALL_MAN= \
+ ${INSTALL} ${COPY} ${_MANOWNGRP} -m ${MANMODE}
+
+INSTALL_MACROS= BSD_INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
+ BSD_INSTALL_SCRIPT="${INSTALL_SCRIPT}" \
+ BSD_INSTALL_DATA="${INSTALL_DATA}" \
+ BSD_INSTALL_MAN="${INSTALL_MAN}"
+MAKE_ENV+= ${INSTALL_MACROS}
+SCRIPTS_ENV+= ${INSTALL_MACROS}
+
+# The user can override the NO_PACKAGE by specifying this from
+# the make command line
+.if defined(FORCE_PACKAGE)
+.undef NO_PACKAGE
+.endif
+
+COMMENTFILE?= ${PKGDIR}/pkg-comment
+DESCR?= ${PKGDIR}/pkg-descr
+PLIST?= ${PKGDIR}/pkg-plist
+PKGINSTALL?= ${PKGDIR}/pkg-install
+PKGDEINSTALL?= ${PKGDIR}/pkg-deinstall
+PKGREQ?= ${PKGDIR}/pkg-req
+PKGMESSAGE?= ${PKGDIR}/pkg-message
+
+TMPPLIST?= ${WRKDIR}/.PLIST.mktmp
+
+.for _CATEGORY in ${CATEGORIES}
+PKGCATEGORY?= ${_CATEGORY}
+.endfor
+_PORTDIRNAME= ${.CURDIR:T}
+PORTDIRNAME?= ${_PORTDIRNAME}
+PKGORIGIN?= ${PKGCATEGORY}/${PORTDIRNAME}
+
+.if exists(${LOCALBASE}/sbin/pkg_info)
+PKG_CMD?= ${LOCALBASE}/sbin/pkg_create
+PKG_ADD?= ${LOCALBASE}/sbin/pkg_add
+PKG_DELETE?= ${LOCALBASE}/sbin/pkg_delete
+PKG_INFO?= ${LOCALBASE}/sbin/pkg_info
+PKG_VERSION?= ${LOCALBASE}/sbin/pkg_version
+.else
+PKG_CMD?= /usr/sbin/pkg_create
+PKG_ADD?= /usr/sbin/pkg_add
+PKG_DELETE?= /usr/sbin/pkg_delete
+PKG_INFO?= /usr/sbin/pkg_info
+PKG_VERSION?= /usr/sbin/pkg_version
+.endif
+
+# Does the pkg_create tool support conflict checking?
+# XXX Slow?
+.if !defined(PKGINSTALLVER)
+PKGINSTALLVER!= ${PKG_INFO} -P 2>/dev/null | ${SED} -e 's/.*: //'
+.endif
+.if ${PKGINSTALLVER} < 20030417
+DISABLE_CONFLICTS= YES
+.endif
+.if !defined(PKG_ARGS)
+PKG_ARGS= -v -c -${COMMENT:Q} -d ${DESCR} -f ${TMPPLIST} -p ${PREFIX} -P "`cd ${.CURDIR} && ${MAKE} package-depends | ${GREP} -v -E ${PKG_IGNORE_DEPENDS} | ${SORT} -u`" ${EXTRA_PKG_ARGS} $${_LATE_PKG_ARGS}
+.if !defined(NO_MTREE)
+PKG_ARGS+= -m ${MTREE_FILE}
+.endif
+.if defined(PKGORIGIN)
+PKG_ARGS+= -o ${PKGORIGIN}
+.endif
+.if defined(CONFLICTS) && !defined(DISABLE_CONFLICTS)
+PKG_ARGS+= -C "${CONFLICTS}"
+.endif
+.endif
+.if defined(PKG_NOCOMPRESS)
+PKG_SUFX?= .tar
+.else
+.if ${OSVERSION} >= 500039
+PKG_SUFX?= .tbz
+.else
+PKG_SUFX?= .tgz
+.endif
+.endif
+# where pkg_add records its dirty deeds.
+PKG_DBDIR?= /var/db/pkg
+
+MOTIFLIB?= -L${X11BASE}/lib -lXm -lXp
+
+ALL_TARGET?= all
+INSTALL_TARGET?= install
+
+# This is a mid-term solution patch while pkg-comment files are
+# phased out.
+# The final simpler patch will come afterwards
+.if !defined(COMMENT)
+check-makevars::
+ @${ECHO_CMD} 'Makefile error: there is no COMMENT variable defined'
+ @${ECHO_CMD} 'for this port. Please, rectify this.'
+ @${FALSE}
+.else
+.if exists(${COMMENTFILE})
+check-makevars::
+ @${ECHO_CMD} 'Makefile error: There is a COMMENTFILE in this port.'
+ @${ECHO_CMD} 'COMMENTFILEs have been deprecated in'
+ @${ECHO_CMD} 'favor of COMMENT variables.'
+ @${ECHO_CMD} 'Please, rectify this.'
+ @${FALSE}
+.endif
+.endif
+
+# Popular master sites
+.include "${PORTSDIR}/Mk/bsd.sites.mk"
+
+# Empty declaration to avoid "variable MASTER_SITES recursive" error
+MASTER_SITES?=
+PATCH_SITES?=
+_MASTER_SITES_DEFAULT?=
+_PATCH_SITES_DEFAULT?=
+
+# Feed internal _{MASTER,PATCH}_SITES_n where n is a group designation
+# as per grouping rules (:something)
+# Organize _{MASTER,PATCH}_SITES_{DEFAULT,[^/:]+} according to grouping
+# rules (:something)
+.for _S in ${MASTER_SITES}
+_S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//:S/^://}
+. if !empty(_S_TEMP)
+. for _group in ${_S_TEMP:S/,/ /g}
+_G_TEMP= ${_group}
+. if ${_G_TEMP} == all || ${_G_TEMP} == ALL || ${_G_TEMP} == default
+check-makevars::
+ @${ECHO_CMD} "Makefile error: the words all, ALL and default are reserved and cannot be"
+ @${ECHO_CMD} "used in group definitions. Please fix your MASTER_SITES"
+ @${FALSE}
+. endif
+_MASTER_SITES_${_group}+= ${_S:C@^(.*/):[^/:]+$@\1@}
+. endfor
+. else
+_MASTER_SITES_DEFAULT+= ${_S:C@^(.*/):[^/:]+$@\1@}
+. endif
+.endfor
+.for _S in ${PATCH_SITES}
+_S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//:S/^://}
+. if !empty(_S_TEMP)
+. for _group in ${_S_TEMP:S/,/ /g}
+_G_TEMP= ${_group}
+. if ${_G_TEMP} == all || ${_G_TEMP} == ALL || ${_G_TEMP} == default
+check-makevars::
+ @${ECHO_CMD} "The words all, ALL and default are reserved and cannot be"
+ @${ECHO_CMD} "used in group definitions. Please fix your PATCH_SITES"
+ @${FALSE}
+. endif
+_PATCH_SITES_${_group}+= ${_S:C@^(.*/):[^/:]+$@\1@}
+. endfor
+. else
+_PATCH_SITES_DEFAULT+= ${_S:C@^(.*/):[^/:]+$@\1@}
+. endif
+.endfor
+
+# Feed internal _{MASTER,PATCH}_SITE_SUBDIR_n where n is a group designation
+# as per grouping rules (:something)
+# Organize _{MASTER,PATCH}_SITE_SUBDIR_{DEFAULT,[^/:]+} according to grouping
+# rules (:something)
+.for _S in ${MASTER_SITE_SUBDIR}
+_S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//:S/^://}
+. if !empty(_S_TEMP)
+. for _group in ${_S_TEMP:S/,/ /g}
+_G_TEMP= ${_group}
+. if ${_G_TEMP} == all || ${_G_TEMP} == ALL || ${_G_TEMP} == default
+check-makevars::
+ @${ECHO_CMD} "Makefile error: the words all, ALL and default are reserved and cannot be"
+ @${ECHO_CMD} "used in group definitions. Please fix your MASTER_SITE_SUBDIR"
+ @${FALSE}
+. endif
+. if defined(_MASTER_SITES_${_group})
+_MASTER_SITE_SUBDIR_${_group}+= ${_S:C@^(.*)/:[^/:]+$@\1@}
+. endif
+. endfor
+. else
+. if defined(_MASTER_SITES_DEFAULT)
+_MASTER_SITE_SUBDIR_DEFAULT+= ${_S:C@^(.*)/:[^/:]+$@\1@}
+. endif
+. endif
+.endfor
+.for _S in ${PATCH_SITE_SUBDIR}
+_S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//:S/^://}
+. if !empty(_S_TEMP)
+. for _group in ${_S_TEMP:S/,/ /g}
+_G_TEMP= ${_group}
+. if ${_G_TEMP} == all || ${_G_TEMP} == ALL || ${_G_TEMP} == default
+check-makevars::
+ @${ECHO_CMD} "Makefile error: the words all, ALL and default are reserved and cannot be"
+ @${ECHO_CMD} "used in group definitions. Please fix your PATCH_SITE_SUBDIR"
+ @${FALSE}
+. endif
+. if defined(_PATCH_SITES_${_group})
+_PATCH_SITE_SUBDIR_${_group}+= ${_S:C@^(.*)/:[^/:]+$@\1@}
+. endif
+. endfor
+. else
+. if defined(_PATCH_SITES_DEFAULT)
+_PATCH_SITE_SUBDIR_DEFAULT+= ${_S:C@^(.*)/:[^/:]+$@\1@}
+. endif
+. endif
+.endfor
+
+# Substitute subdirectory names
+# XXX simpler/faster solution but not the best space wise, suggestions please
+.for _S in ${MASTER_SITES}
+_S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//:S/^://}
+. if !empty(_S_TEMP)
+. for _group in ${_S_TEMP:S/,/ /g}
+. if !defined(_MASTER_SITE_SUBDIR_${_group})
+MASTER_SITES_TMP= ${_MASTER_SITES_${_group}:S^%SUBDIR%/^^}
+. else
+_S_TEMP_TEMP= ${_MASTER_SITES_${_group}:M*%SUBDIR%/*}
+. if empty(_S_TEMP_TEMP)
+MASTER_SITES_TMP= ${_MASTER_SITES_${_group}}
+. else
+MASTER_SITES_TMP=
+. for site in ${_MASTER_SITES_${_group}}
+_S_TEMP_TEMP= ${site:M*%SUBDIR%/*}
+. if empty(_S_TEMP_TEMP)
+MASTER_SITES_TMP+= ${site}
+. else
+. for dir in ${_MASTER_SITE_SUBDIR_${_group}}
+MASTER_SITES_TMP+= ${site:S^%SUBDIR%^\${dir}^}
+. endfor
+. endif
+. endfor
+. endif
+. endif
+_MASTER_SITES_${_group}:= ${MASTER_SITES_TMP}
+. endfor
+. endif
+.endfor
+.if defined(_MASTER_SITE_SUBDIR_DEFAULT)
+_S_TEMP= ${_MASTER_SITES_DEFAULT:M*%SUBDIR%/*}
+. if empty(_S_TEMP)
+MASTER_SITES_TMP= ${_MASTER_SITES_DEFAULT}
+. else
+MASTER_SITES_TMP=
+. for site in ${_MASTER_SITES_DEFAULT}
+_S_TEMP_TEMP= ${site:M*%SUBDIR%/*}
+. if empty(_S_TEMP_TEMP)
+MASTER_SITES_TMP+= ${site}
+. else
+. for dir in ${_MASTER_SITE_SUBDIR_DEFAULT}
+MASTER_SITES_TMP+= ${site:S^%SUBDIR%^\${dir}^}
+. endfor
+. endif
+. endfor
+. endif
+.else
+MASTER_SITES_TMP= ${_MASTER_SITES_DEFAULT:S^%SUBDIR%/^^}
+.endif
+_MASTER_SITES_DEFAULT:= ${MASTER_SITES_TMP}
+MASTER_SITES_TMP=
+.for _S in ${PATCH_SITES}
+_S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//:S/^://}
+. if !empty(_S_TEMP)
+. for _group in ${_S_TEMP:S/,/ /g}
+. if !defined(_PATCH_SITE_SUBDIR_${_group})
+PATCH_SITES_TMP= ${_PATCH_SITES_${_group}:S^%SUBDIR%/^^}
+. else
+_S_TEMP_TEMP= ${_PATCH_SITES_${_group}:M*%SUBDIR%/*}
+. if empty(_S_TEMP_TEMP)
+PATCH_SITES_TMP= ${_PATCH_SITES_${_group}}
+. else
+PATCH_SITES_TMP=
+. for site in ${_PATCH_SITES_${_group}}
+_S_TEMP_TEMP= ${site:M*%SUBDIR%/*}
+. if empty(_S_TEMP_TEMP)
+PATCH_SITES_TMP+= ${site}
+. else
+. for dir in ${_PATCH_SITE_SUBDIR_${_group}}
+PATCH_SITES_TMP+= ${site:S^%SUBDIR%^\${dir}^}
+. endfor
+. endif
+. endfor
+. endif
+. endif
+_PATCH_SITES_${_group}:= ${PATCH_SITES_TMP}
+. endfor
+. endif
+.endfor
+.if defined(_PATCH_SITE_SUBDIR_DEFAULT)
+_S_TEMP= ${_PATCH_SITES_DEFAULT:M*%SUBDIR%/*}
+. if empty(_S_TEMP)
+PATCH_SITES_TMP= ${_PATCH_SITES_DEFAULT}
+. else
+PATCH_SITES_TMP=
+. for site in ${_PATCH_SITES_DEFAULT}
+_S_TEMP_TEMP= ${site:M*%SUBDIR%/*}
+. if empty(_S_TEMP_TEMP)
+PATCH_SITES_TMP+= ${site}
+. else
+. for dir in ${_PATCH_SITE_SUBDIR_DEFAULT}
+PATCH_SITES_TMP+= ${site:S^%SUBDIR%^\${dir}^}
+. endfor
+. endif
+. endfor
+. endif
+.else
+PATCH_SITES_TMP= ${_PATCH_SITES_DEFAULT:S^%SUBDIR%/^^}
+.endif
+_PATCH_SITES_DEFAULT:= ${PATCH_SITES_TMP}
+PATCH_SITES_TMP=
+
+# The primary backup site.
+MASTER_SITE_BACKUP?= \
+ ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/${DIST_SUBDIR}/
+MASTER_SITE_BACKUP:= ${MASTER_SITE_BACKUP:S^\${DIST_SUBDIR}/^^}
+
+# If the user has MASTER_SITE_FREEBSD set, go to the FreeBSD repository
+# for everything, but don't search it twice by appending it to the end.
+.if defined(MASTER_SITE_FREEBSD)
+_MASTER_SITE_OVERRIDE:= ${MASTER_SITE_BACKUP}
+_MASTER_SITE_BACKUP:= # empty
+.else
+_MASTER_SITE_OVERRIDE= ${MASTER_SITE_OVERRIDE}
+_MASTER_SITE_BACKUP= ${MASTER_SITE_BACKUP}
+.endif
+
+# Search CDROM first if mounted, symlink instead of copy if
+# FETCH_SYMLINK_DISTFILES is set
+.for MOUNTPT in ${CD_MOUNTPTS}
+.if exists(${MOUNTPT}/ports/distfiles)
+_MASTER_SITE_OVERRIDE:= file:${MOUNTPT}/ports/distfiles/${DIST_SUBDIR}/ ${_MASTER_SITE_OVERRIDE}
+.if defined(FETCH_SYMLINK_DISTFILES)
+FETCH_BEFORE_ARGS+= -l
+.endif
+.endif
+.endfor
+
+# Organize DISTFILES, PATCHFILES, _MASTER_SITES_ALL, _PATCH_SITES_ALL
+# according to grouping rules (:something)
+DISTFILES?= ${DISTNAME}${EXTRACT_SUFX}
+_MASTER_SITES_ALL= ${_MASTER_SITES_DEFAULT}
+_PATCH_SITES_ALL= ${_PATCH_SITES_DEFAULT}
+_G_TEMP= DEFAULT
+.for _D in ${DISTFILES}
+_D_TEMP= ${_D:S/^${_D:C/:[^:]+$//}//}
+. if !empty(_D_TEMP)
+. for _group in ${_D_TEMP:S/^://:S/,/ /g}
+. if !defined(_MASTER_SITES_${_group})
+_G_TEMP_TEMP= ${_G_TEMP:M/${_group}/}
+. if empty(_G_TEMP_TEMP)
+_G_TEMP+= ${_group}
+_MASTER_SITES_ALL+= ${_MASTER_SITES_${_group}}
+. endif
+. endif
+. endfor
+_DISTFILES+= ${_D:C/:[^:]+$//}
+. else
+_DISTFILES+= ${_D}
+. endif
+.endfor
+_G_TEMP= DEFAULT
+.for _P in ${PATCHFILES}
+_P_TEMP= ${_P:S/^${_P:C/:[^:]+$//}//}
+. if !empty(_P_TEMP)
+. for _group in ${_P_TEMP:S/^://:S/,/ /g}
+. if !defined(_PATCH_SITES_${_group})
+_G_TEMP_TEMP= ${_G_TEMP:M/${_group}/}
+. if empty(_G_TEMP_TEMP)
+_G_TEMP+= ${_group}
+_PATCH_SITES_ALL+= ${_PATCH_SITES_${_group}}
+. endif
+. endif
+. endfor
+_PATCHFILES+= ${_P:C/:[^:]+$//}
+. else
+_PATCHFILES+= ${_P}
+. endif
+.endfor
+_G_TEMP=
+_G_TEMP_TEMP=
+ALLFILES?= ${_DISTFILES} ${_PATCHFILES}
+
+#
+# Sort the master site list according to the patterns in MASTER_SORT
+#
+MASTER_SORT?=
+MASTER_SORT_REGEX?=
+MASTER_SORT_REGEX+= ${MASTER_SORT:S|.|\\.|g:S|^|://[^/]*|:S|$|/|}
+
+MASTER_SORT_AWK= BEGIN { RS = " "; ORS = " "; IGNORECASE = 1 ; gl = "${MASTER_SORT_REGEX:S|\\|\\\\|g}"; }
+.for srt in ${MASTER_SORT_REGEX}
+MASTER_SORT_AWK+= /${srt:S|/|\\/|g}/ { good["${srt:S|\\|\\\\|g}"] = good["${srt:S|\\|\\\\|g}"] " " $$0 ; next; }
+.endfor
+MASTER_SORT_AWK+= { rest = rest " " $$0; } END { n=split(gl, gla); for(i=1;i<=n;i++) { print good[gla[i]]; } print rest; }
+
+SORTED_MASTER_SITES_DEFAULT_CMD= cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} master-sites-DEFAULT
+SORTED_PATCH_SITES_DEFAULT_CMD= cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} patch-sites-DEFAULT
+SORTED_MASTER_SITES_ALL_CMD= cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} master-sites-ALL
+SORTED_PATCH_SITES_ALL_CMD= cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} patch-sites-ALL
+
+#
+# Sort the master site list according to the patterns in MASTER_SORT
+# according to grouping rules (:something)
+#
+# for use in the fetch targets
+.for _S in ${MASTER_SITES}
+_S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//}
+. if !empty(_S_TEMP)
+. for _group in ${_S_TEMP:S/^://:S/,/ /g}
+. if !target(master-sites-${_group})
+SORTED_MASTER_SITES_${_group}_CMD= cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} master-sites-${_group}
+master-sites-${_group}:
+ @${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} '${_MASTER_SITES_${_group}}' | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP}
+. endif
+. endfor
+. endif
+.endfor
+.for _S in ${PATCH_SITES}
+_S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//}
+. if !empty(_S_TEMP)
+. for _group in ${_S_TEMP:S/^://:S/,/ /g}
+. if !target(patch-sites-${_group})
+SORTED_PATCH_SITES_${_group}_CMD= cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} patch-sites-${_group}
+patch-sites-${_group}:
+ @${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} '${_PATCH_SITES_${_group}}' | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP}
+. endif
+. endfor
+. endif
+.endfor
+
+#
+# Hackery to enable simple fetch targets with several dynamic MASTER_SITES
+#
+_MASTER_SITES_ENV= _MASTER_SITES_DEFAULT="${_MASTER_SITES_DEFAULT}"
+.for _F in ${DISTFILES}
+_F_TEMP= ${_F:S/^${_F:C/:[^:]+$//}//:S/^://}
+. if !empty(_F_TEMP)
+. for _group in ${_F_TEMP:S/,/ /g}
+. if defined(_MASTER_SITES_${_group})
+_MASTER_SITES_ENV+= _MASTER_SITES_${_group}="${_MASTER_SITES_${_group}}"
+. endif
+. endfor
+. endif
+.endfor
+_PATCH_SITES_ENV= _PATCH_SITES_DEFAULT="${_PATCH_SITES_DEFAULT}"
+.for _F in ${PATCHFILES}
+_F_TEMP= ${_F:S/^${_F:C/:[^:]+$//}//:S/^://}
+. if !empty(_F_TEMP)
+. for _group in ${_F_TEMP:S/,/ /g}
+. if defined(_PATCH_SITES_${_group})
+_PATCH_SITES_ENV+= _PATCH_SITES_${_group}="${_PATCH_SITES_${_group}}"
+. endif
+. endfor
+. endif
+.endfor
+
+master-sites-ALL:
+ @${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} '${_MASTER_SITES_ALL}' | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP}
+patch-sites-ALL:
+ @${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} '${_PATCH_SITES_ALL}' | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP}
+# has similar effect to old targets, i.e., access only {MASTER,PATCH}_SITES, not working with the new _n variables
+master-sites-DEFAULT:
+ @${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} '${_MASTER_SITES_DEFAULT}' | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP}
+patch-sites-DEFAULT:
+ @${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} '${_PATCH_SITES_DEFAULT}' | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP}
+
+# synonyms, mnemonics
+master-sites-all: master-sites-ALL
+patch-sites-all: patch-sites-ALL
+master-sites-default: master-sites-DEFAULT
+patch-sites-default: patch-sites-DEFAULT
+
+# compatibility with old behavior
+master-sites: master-sites-DEFAULT
+patch-sites: patch-sites-DEFAULT
+
+.if defined(IGNOREFILES)
+.if !defined(CKSUMFILES)
+CKSUMFILES!= \
+ for file in ${ALLFILES}; do \
+ ignore=0; \
+ for tmp in ${IGNOREFILES}; do \
+ if [ "$$file" = "$$tmp" ]; then \
+ ignore=1; \
+ fi; \
+ done; \
+ if [ "$$ignore" = 0 ]; then \
+ ${ECHO_CMD} "$$file"; \
+ fi; \
+ done
+.endif
+.else
+CKSUMFILES= ${ALLFILES}
+.endif
+
+# List of all files, with ${DIST_SUBDIR} in front. Used for checksum.
+.if defined(DIST_SUBDIR)
+.if defined(CKSUMFILES) && ${CKSUMFILES}!=""
+_CKSUMFILES?= ${CKSUMFILES:S/^/${DIST_SUBDIR}\//}
+.endif
+.if defined(IGNOREFILES) && ${IGNOREFILES}!=""
+_IGNOREFILES?= ${IGNOREFILES:S/^/${DIST_SUBDIR}\//}
+.endif
+.else
+_CKSUMFILES?= ${CKSUMFILES}
+_IGNOREFILES?= ${IGNOREFILES}
+.endif
+
+# This is what is actually going to be extracted, and is overridable
+# by user.
+EXTRACT_ONLY?= ${_DISTFILES}
+
+.if !target(maintainer)
+maintainer:
+ @${ECHO_CMD} "${MAINTAINER}"
+.endif
+
+.if !target(check-makefile)
+check-makefile:
+ @${DO_NADA}
+.endif
+
+.if !defined(CATEGORIES)
+check-categories:
+ @${ECHO_CMD} "${PKGNAME}: Makefile error: CATEGORIES is mandatory."
+ @${FALSE}
+.else
+
+VALID_CATEGORIES+= accessibility afterstep arabic archivers astro audio \
+ benchmarks biology cad chinese comms converters databases \
+ deskutils devel dns editors elisp emulators finance french ftp \
+ games german gnome graphics haskell hebrew hungarian \
+ ipv6 irc japanese java kde korean lang linux lisp \
+ mail math mbone misc multimedia net net-im net-mgmt news \
+ offix palm parallel pear perl5 picobsd plan9 polish portuguese print \
+ python ruby russian \
+ scheme science security shells sysutils \
+ tcl80 tcl81 tcl82 tcl83 tcl84 textproc \
+ tk80 tk82 tk83 tk84 tkstep80 \
+ ukrainian vietnamese windowmaker www \
+ x11 x11-clocks x11-fm x11-fonts x11-servers x11-themes x11-toolkits \
+ x11-wm xfce zope
+
+check-categories:
+.for cat in ${CATEGORIES}
+ @if ${ECHO_CMD} ${VALID_CATEGORIES} | ${GREP} -wq ${cat}; then \
+ ${TRUE}; \
+ else \
+ ${ECHO_CMD} "${PKGNAME}: Makefile error: category ${cat} not in list of valid categories."; \
+ ${FALSE}; \
+ fi
+.endfor
+.endif
+
+.if !target(check-makevars)
+check-makevars:
+ @${DO_NADA}
+.endif
+
+.if !target(check-depends)
+check-depends:
+ @${DO_NADA}
+.endif
+
+PKGREPOSITORYSUBDIR?= All
+PKGREPOSITORY?= ${PACKAGES}/${PKGREPOSITORYSUBDIR}
+.if exists(${PACKAGES})
+PKGFILE?= ${PKGREPOSITORY}/${PKGNAME}${PKG_SUFX}
+.else
+PKGFILE?= ${.CURDIR}/${PKGNAME}${PKG_SUFX}
+.endif
+
+# The "latest version" link -- ${PKGNAME} minus everthing after the last '-'
+PKGLATESTREPOSITORY?= ${PACKAGES}/Latest
+PKGBASE?= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}
+LATEST_LINK?= ${PKGBASE}
+PKGLATESTFILE= ${PKGLATESTREPOSITORY}/${LATEST_LINK}${PKG_SUFX}
+
+.if defined(PERL_CONFIGURE)
+CONFIGURE_ARGS+= CC="${CC}" CCFLAGS="${CFLAGS}" PREFIX="${PREFIX}" \
+ INSTALLPRIVLIB="${PREFIX}/lib" INSTALLARCHLIB="${PREFIX}/lib"
+CONFIGURE_SCRIPT?= Makefile.PL
+MAN3PREFIX?= ${PREFIX}/lib/perl5/${PERL_VERSION}
+.undef HAS_CONFIGURE
+.endif
+
+CONFIGURE_SCRIPT?= configure
+CONFIGURE_TARGET?= ${ARCH}-portbld-freebsd${OSREL}
+CONFIGURE_LOG?= config.log
+
+# A default message to print if do-configure fails.
+CONFIGURE_FAIL_MESSAGE?= "Please report the problem to ${MAINTAINER} [maintainer] and attach the \"${CONFIGURE_WRKSRC}/${CONFIGURE_LOG}\" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an \`ls ${PKG_DBDIR}\`)."
+
+.if defined(GNU_CONFIGURE)
+# Maximum command line length
+.if !defined(CONFIGURE_MAX_CMD_LEN)
+.if exists(/sbin/sysctl)
+CONFIGURE_MAX_CMD_LEN!= /sbin/sysctl -n kern.argmax
+.else
+CONFIGURE_MAX_CMD_LEN!= /usr/sbin/sysctl -n kern.argmax
+.endif
+.endif
+CONFIGURE_ARGS+= --prefix=${PREFIX} ${CONFIGURE_TARGET}
+CONFIGURE_ENV+= lt_cv_sys_max_cmd_len=${CONFIGURE_MAX_CMD_LEN}
+HAS_CONFIGURE= yes
+.endif
+
+# Passed to most of script invocations
+SCRIPTS_ENV+= CURDIR=${MASTERDIR} DISTDIR=${DISTDIR} \
+ WRKDIR=${WRKDIR} WRKSRC=${WRKSRC} PATCHDIR=${PATCHDIR} \
+ SCRIPTDIR=${SCRIPTDIR} FILESDIR=${FILESDIR} \
+ PORTSDIR=${PORTSDIR} DEPENDS="${DEPENDS}" \
+ PREFIX=${PREFIX} LOCALBASE=${LOCALBASE} X11BASE=${X11BASE}
+
+.if defined(BATCH)
+SCRIPTS_ENV+= BATCH=yes
+.endif
+
+.if ${PREFIX} == /usr
+MANPREFIX?= /usr/share
+.else
+MANPREFIX?= ${PREFIX}
+.endif
+
+.for sect in 1 2 3 4 5 6 7 8 9
+MAN${sect}PREFIX?= ${MANPREFIX}
+.endfor
+MANLPREFIX?= ${MANPREFIX}
+MANNPREFIX?= ${MANPREFIX}
+
+MANLANG?= "" # english only by default
+
+.if !defined(NOMANCOMPRESS)
+MANEXT= .gz
+.endif
+
+.if (defined(MLINKS) || defined(_MLINKS_PREPEND)) && !defined(_MLINKS)
+__pmlinks!= ${ECHO_CMD} '${MLINKS:S/ / /}' | ${AWK} \
+ '{ if (NF % 2 != 0) { print "broken"; exit; } \
+ for (i=1; i<=NF; i++) { \
+ if ($$i ~ /^-$$/ && i != 1 && i % 2 != 0) \
+ { $$i = $$(i-2); printf " " $$i " "; } \
+ else if ($$i ~ /^[^ ]+\.[1-9ln][^. ]*$$/ || $$i ~ /^\//) \
+ printf " " $$i " "; \
+ else \
+ { print "broken"; exit; } \
+ } \
+ }' | ${SED} -e 's \([^/ ][^ ]*\.\(.\)[^. ]*\) $${MAN\2PREFIX}/$$$$$$$${__lang}/man\2/\1${MANEXT}g' -e 's/ //g' -e 's/MANlPREFIX/MANLPREFIX/g' -e 's/MANnPREFIX/MANNPREFIX/g'
+.if ${__pmlinks:Mbroken} == "broken"
+check-makevars::
+ @${ECHO_CMD} "${PKGNAME}: Makefile error: unable to parse MLINKS."
+ @${FALSE}
+.endif
+_MLINKS= ${_MLINKS_PREPEND}
+# XXX 20040119 This next line should read:
+# .for lang in ${MANLANG:S%^%man/%:S%^man/""$%man%}
+# but there is currently a bug in make(1) that prevents the double-quote
+# substitution from working correctly. Once that problem is addressed,
+# and has had a enough time to mature, this hack should be removed.
+.for lang in ${MANLANG:S%^%man/%:S%^man/""$%man%:S%^man/"$%man%}
+.for ___pmlinks in ${__pmlinks}
+.for __lang in ${lang}
+_MLINKS+= ${___pmlinks:S// /g}
+.endfor
+.endfor
+.endfor
+.endif
+_COUNT=0
+.for ___tpmlinks in ${_MLINKS}
+.if ${_COUNT} == "1"
+_TMLINKS+= ${___tpmlinks}
+_COUNT=0
+.else
+_COUNT=1
+.endif
+.endfor
+
+# XXX 20040119 This next line should read:
+# .for manlang in ${MANLANG:S%^%man/%:S%^man/""$%man%}
+# but there is currently a bug in make(1) that prevents the double-quote
+# substitution from working correctly. Once that problem is addressed,
+# and has had a enough time to mature, this hack should be removed.
+.for manlang in ${MANLANG:S%^%man/%:S%^man/""$%man%:S%^man/"$%man%}
+
+.for sect in 1 2 3 4 5 6 7 8 9 L N
+.if defined(MAN${sect})
+_MANPAGES+= ${MAN${sect}:S%^%${MAN${sect}PREFIX}/${manlang}/man${sect:L}/%}
+.endif
+.endfor
+
+.endfor
+
+.if !defined(_MLINKS)
+_TMLINKS=
+.endif
+
+.if defined(_MANPAGES)
+
+.if defined(NOMANCOMPRESS)
+__MANPAGES:= ${_MANPAGES:S%^${PREFIX}/%%}
+.else
+__MANPAGES:= ${_MANPAGES:S%^${PREFIX}/%%:S%$%.gz%}
+.endif
+
+.if ${MANCOMPRESSED} == "yes"
+_MANPAGES:= ${_MANPAGES:S%$%.gz%}
+.endif
+
+.endif
+
+.if ${PREFIX} == /usr
+INFO_PATH?= share/info
+.else
+INFO_PATH?= info
+.endif
+
+DOCSDIR?= ${PREFIX}/share/doc/${PORTNAME}
+EXAMPLESDIR?= ${PREFIX}/share/examples/${PORTNAME}
+DATADIR?= ${PREFIX}/share/${PORTNAME}
+
+PLIST_SUB+= DOCSDIR="${DOCSDIR:S,^${PREFIX}/,,}" \
+ EXAMPLESDIR="${EXAMPLESDIR:S,^${PREFIX}/,,}" \
+ DATADIR="${DATADIR:S,^${PREFIX}/,,}"
+
+DESKTOPDIR?= ${PREFIX}/share/applications
+_DESKTOPDIR_REL= ${DESKTOPDIR:S,^${PREFIX}/,,}/
+
+.if ${_DESKTOPDIR_REL} == ${DESKTOPDIR}/
+# DESKTOPDIR is not beneath PREFIX
+_DESKTOPDIR_REL=
+.endif
+
+# Put this as far down as possible so it will catch all PLIST_SUB definitions.
+
+.if defined(INSTALLS_SHLIB)
+LDCONFIG_DIRS?= %%PREFIX%%/lib
+LDCONFIG_PLIST!= ${ECHO_CMD} ${LDCONFIG_DIRS} | ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/}
+LDCONFIG_RUNLIST!= ${ECHO_CMD} ${LDCONFIG_PLIST} | ${SED} -e "s!%D!${PREFIX}!g"
+.endif
+
+.MAIN: all
+
+################################################################
+# Many ways to disable a port.
+#
+# If we're in BATCH mode and the port is interactive, or we're
+# in interactive mode and the port is non-interactive, skip all
+# the important targets. The reason we have two modes is that
+# one might want to leave a build in BATCH mode running
+# overnight, then come back in the morning and do _only_ the
+# interactive ones that required your intervention.
+#
+# Ignore ports that can't be resold if building for a CDROM.
+#
+# Don't build a port if it's restricted and we don't want to get
+# into that.
+#
+# Don't build a port on an ELF machine if it's broken for ELF.
+#
+# Don't build a port if it's broken, unless we're running a parallel
+# build (in case it's fixed).
+#
+# Don't build a port if it's forbidden for whatever reason.
+#
+# Don't build a port if the system is too old.
+################################################################
+
+.if defined(ONLY_FOR_ARCHS)
+.for __ARCH in ${ONLY_FOR_ARCHS}
+.if ${ARCH:M${__ARCH}} != ""
+__ARCH_OK?= 1
+.endif
+.endfor
+.else
+__ARCH_OK?= 1
+.endif
+
+.if defined(NOT_FOR_ARCHS)
+.for __NARCH in ${NOT_FOR_ARCHS}
+.if ${ARCH:M${__NARCH}} != ""
+.undef __ARCH_OK
+.endif
+.endfor
+.endif
+
+.if !defined(__ARCH_OK)
+.if defined(ONLY_FOR_ARCHS)
+IGNORE= "is only for ${ONLY_FOR_ARCHS},"
+.else # defined(NOT_FOR_ARCHS)
+IGNORE= "does not run on ${NOT_FOR_ARCHS},"
+.endif
+IGNORE+= "and you are running ${ARCH}"
+.endif
+
+.if !defined(NO_IGNORE)
+.if (defined(IS_INTERACTIVE) && defined(BATCH))
+IGNORE= "is an interactive port"
+.elif (!defined(IS_INTERACTIVE) && defined(INTERACTIVE))
+IGNORE= "is not an interactive port"
+.elif (defined(NO_CDROM) && defined(FOR_CDROM))
+IGNORE= "may not be placed on a CDROM: ${NO_CDROM}"
+.elif (defined(RESTRICTED) && defined(NO_RESTRICTED))
+IGNORE= "is restricted: ${RESTRICTED}"
+.elif defined(BROKEN)
+.if !defined(TRYBROKEN)
+IGNORE= "is marked as broken: ${BROKEN}"
+.endif
+.elif defined(FORBIDDEN)
+IGNORE= "is forbidden: ${FORBIDDEN}"
+.endif
+
+.if (defined(MANUAL_PACKAGE_BUILD) && defined(PACKAGE_BUILDING) && !defined(PARALLEL_PACKAGE_BUILD))
+IGNORE= "has to be built manually: ${MANUAL_PACKAGE_BUILD}"
+clean:
+ @${IGNORECMD}
+.endif
+
+.if defined(IGNORE)
+.if defined(IGNORE_SILENT)
+IGNORECMD= ${DO_NADA}
+.else
+IGNORECMD= ${ECHO_MSG} "===> ${PKGNAME} ${IGNORE}."
+.endif
+
+.for target in check-sanity fetch checksum extract patch configure all build install reinstall package
+${target}:
+ @${IGNORECMD}
+.if defined(INSTALLS_DEPENDS)
+ @${FALSE}
+.endif
+.endfor
+
+.endif
+
+.endif
+
+.if defined(IGNORE) || defined(NO_PACKAGE)
+ignorelist: package-name
+.else
+ignorelist:
+ @${DO_NADA}
+.endif
+
+################################################################
+# Clean directories for ftp or CDROM.
+################################################################
+
+.if defined(RESTRICTED)
+clean-restricted: delete-distfiles delete-package
+clean-restricted-list: delete-distfiles-list delete-package-list
+RESTRICTED_FILES?= ${_DISTFILES} ${_PATCHFILES}
+.else
+clean-restricted:
+clean-restricted-list:
+.endif
+
+.if defined(NO_CDROM)
+clean-for-cdrom: delete-distfiles delete-package
+clean-for-cdrom-list: delete-distfiles-list delete-package-list
+RESTRICTED_FILES?= ${_DISTFILES} ${_PATCHFILES}
+.else
+clean-for-cdrom:
+clean-for-cdrom-list:
+.endif
+
+.if defined(ALL_HOOK)
+all:
+ @cd ${.CURDIR} && ${SETENV} CURDIR=${.CURDIR} DISTNAME=${DISTNAME} \
+ DISTDIR=${DISTDIR} WRKDIR=${WRKDIR} WRKSRC=${WRKSRC} \
+ PATCHDIR=${PATCHDIR} SCRIPTDIR=${SCRIPTDIR} \
+ FILESDIR=${FILESDIR} PORTSDIR=${PORTSDIR} PREFIX=${PREFIX} \
+ DEPENDS="${DEPENDS}" BUILD_DEPENDS="${BUILD_DEPENDS}" \
+ RUN_DEPENDS="${RUN_DEPENDS}" X11BASE=${X11BASE} \
+ CONFLICTS="${CONFLICTS}" \
+ ${ALL_HOOK}
+.endif
+
+.if !target(all)
+all: build
+.endif
+
+.if !defined(DEPENDS_TARGET)
+.if make(reinstall)
+DEPENDS_TARGET= reinstall
+.else
+DEPENDS_TARGET= install
+.endif
+.if defined(DEPENDS_CLEAN)
+DEPENDS_TARGET+= clean
+DEPENDS_ARGS+= NOCLEANDEPENDS=yes
+.endif
+.else
+DEPENDS_ARGS+= FORCE_PKG_REGISTER=yes
+.endif
+.if defined(DEPENDS)
+# pretty much guarantees overwrite of existing installation
+.MAKEFLAGS: FORCE_PKG_REGISTER=yes
+.endif
+
+################################################################
+#
+# Do preliminary work to detect if we need to run the config
+# target or not.
+#
+################################################################
+.if (!defined(OPTIONS) || defined(CONFIG_DONE) || \
+ defined(PACKAGE_BUILDING) || defined(BATCH) || \
+ exists(${_OPTIONSFILE}) || exists(${_OPTIONSFILE}.local))
+_OPTIONS_OK=yes
+.endif
+
+################################################################
+# The following are used to create easy dummy targets for
+# disabling some bit of default target behavior you don't want.
+# They still check to see if the target exists, and if so don't
+# do anything, since you might want to set this globally for a
+# group of ports in a Makefile.inc, but still be able to
+# override from an individual Makefile.
+################################################################
+
+# Disable checksum
+.if defined(NO_CHECKSUM) && !target(checksum)
+checksum: fetch
+ @${DO_NADA}
+.endif
+
+# Disable build
+.if defined(NO_BUILD) && !target(build)
+build: configure
+ @${TOUCH} ${TOUCH_FLAGS} ${BUILD_COOKIE}
+.endif
+
+# Disable install
+.if defined(NO_INSTALL) && !target(install)
+install: build
+ @${TOUCH} ${TOUCH_FLAGS} ${INSTALL_COOKIE}
+.endif
+
+# Disable package
+.if defined(NO_PACKAGE) && !target(package)
+package:
+.if defined(IGNORE_SILENT)
+ @${DO_NADA}
+.else
+ @${ECHO_MSG} "===> ${PKGNAME} may not be packaged: ${NO_PACKAGE}."
+.endif
+.endif
+
+# Disable describe
+.if defined(NO_DESCRIBE) && !target(describe)
+describe:
+ @${DO_NADA}
+.endif
+
+################################################################
+# More standard targets start here.
+#
+# These are the body of the build/install framework. If you are
+# not happy with the default actions, and you can't solve it by
+# adding pre-* or post-* targets/scripts, override these.
+################################################################
+
+# Pre-everything
+
+# XXX MCL suggests deprecating this in favor of something
+# less likely to be abused by overloading
+pre-everything::
+ @${DO_NADA}
+
+buildanyway-message:
+.if defined(TRYBROKEN) && defined(BROKEN)
+ @${ECHO_MSG} "Trying build of ${PKGNAME} even though it is marked BROKEN."
+.else
+ @${DO_NADA}
+.endif
+
+options-message:
+.if defined(GNOME_OPTION_MSG) && (!defined(PACKAGE_BUILDING) || !defined(BATCH))
+ @for m in ${GNOME_OPTION_MSG}; do \
+ ${ECHO_MSG} $$m; \
+ done
+.else
+ @${DO_NADA}
+.endif
+.if defined(_OPTIONS_READ)
+ @${ECHO_MSG} "===> Found saved configuration for ${_OPTIONS_READ}"
+.if ${OPTIONSFILE} != ${_OPTIONSFILE}
+ @${ECHO_MSG} "===> *** CAUTION *** Using wrong configuration file ${_OPTIONSFILE}"
+.endif
+.endif
+
+
+# Warn user about deprecated packages. Advisory only.
+
+.if !target(check-deprecated)
+check-deprecated:
+.if defined(DEPRECATED)
+ @${ECHO_MSG} "===> NOTICE:"
+ @${ECHO_MSG}
+ @${ECHO_MSG} "This port is deprecated; you may wish to reconsider installing it:"
+ @${ECHO_MSG}
+ @${ECHO_MSG} "${DEPRECATED}."
+ @${ECHO_MSG}
+.if defined(EXPIRATION_DATE)
+ @${ECHO_MSG} "It is scheduled to be removed on or after ${EXPIRATION_DATE}."
+ @${ECHO_MSG}
+.endif
+.endif
+.endif
+
+# Check if the port is listed in the vulnerability database
+
+AUDITFILE?= /var/db/portaudit/auditfile.tbz
+_EXTRACT_AUDITFILE= ${TAR} -jxOf "${AUDITFILE}" auditfile
+
+check-vulnerable:
+.if !defined(DISABLE_VULNERABILITIES) && !defined(PACKAGE_BUILDING)
+ @if [ -f "${AUDITFILE}" ]; then \
+ audit_created=`${_EXTRACT_AUDITFILE} | \
+ ${SED} -nEe "1s/^#CREATED: *([0-9]{4})-?([0-9]{2})-?([0-9]{2}).*$$/\1\2\3/p"`; \
+ audit_expiry=`/bin/date -u -v-14d "+%Y%m%d"`; \
+ if [ "$$audit_created" -lt "$$audit_expiry" ]; then \
+ ${ECHO_MSG} "===> WARNING: Vulnerability database out of date, checking anyway"; \
+ fi; \
+ vlist=`${_EXTRACT_AUDITFILE} | ${GREP} "${PORTNAME}" | \
+ ${AWK} -F\| ' /^[^#]/ { \
+ if (!system("${PKG_VERSION} -T \"${PKGNAME}\" \"" $$1 "\"")) \
+ print "=> " $$3 ".\n Reference: <" $$2 ">" \
+ } \
+ '`; \
+ if [ -n "$$vlist" ]; then \
+ ${ECHO_MSG} "===> ${PKGNAME} has known vulnerabilities:"; \
+ ${ECHO_MSG} "$$vlist"; \
+ ${ECHO_MSG} "=> Please update your ports tree and try again."; \
+ exit 1; \
+ fi; \
+ else \
+ ${ECHO_MSG} "===> Vulnerability check disabled, database not found"; \
+ fi
+.endif
+
+# Fetch
+
+.if !target(do-fetch)
+do-fetch:
+ @${MKDIR} ${_DISTDIR}
+ @(cd ${_DISTDIR}; \
+ ${_MASTER_SITES_ENV} ; \
+ for _file in ${DISTFILES}; do \
+ file=`${ECHO_CMD} $$_file | ${SED} -E -e 's/:[^:]+$$//'` ; \
+ select=`${ECHO_CMD} $${_file#$${file}} | ${SED} -e 's/^://' -e 's/,/ /g'` ; \
+ force_fetch=false; \
+ filebasename=`${BASENAME} $$file`; \
+ for afile in ${FORCE_FETCH}; do \
+ afile=`${BASENAME} $$afile`; \
+ if [ "x$$afile" = "x$$filebasename" ]; then \
+ force_fetch=true; \
+ fi; \
+ done; \
+ if [ ! -f $$file -a ! -f $$filebasename -o "$$force_fetch" = "true" ]; then \
+ DIR=${DIST_SUBDIR}; \
+ pattern="$${DIR:+$$DIR/}`${ECHO_CMD} $$file | ${SED} -e 's/\./\\\\./g'`"; \
+ if [ -L $$file -o -L $$filebasename ]; then \
+ ${ECHO_MSG} "=> ${_DISTDIR}/$$file is a broken symlink."; \
+ ${ECHO_MSG} "=> Perhaps a filesystem (most likely a CD) isn't mounted?"; \
+ ${ECHO_MSG} "=> Please correct this problem and try again."; \
+ exit 1; \
+ fi ; \
+ if [ -f ${MD5_FILE} -a "x${NO_CHECKSUM}" = "x" ]; then \
+ if ! ${GREP} -q "^MD5 ($$pattern)" ${MD5_FILE}; then \
+ ${ECHO_MSG} "=> $${DIR:+$$DIR/}$$file is not in ${MD5_FILE}."; \
+ ${ECHO_MSG} "=> Either ${MD5_FILE} is out of date, or"; \
+ ${ECHO_MSG} "=> $${DIR:+$$DIR/}$$file is spelled incorrectly."; \
+ exit 1; \
+ fi; \
+ fi; \
+ ${ECHO_MSG} "=> $$file doesn't seem to exist in ${_DISTDIR}."; \
+ if [ ! -w ${DISTDIR} ]; then \
+ ${ECHO_MSG} "=> ${DISTDIR} is not writable by you; cannot fetch."; \
+ exit 1; \
+ fi; \
+ if [ ! -z "$$select" ] ; then \
+ __MASTER_SITES_TMP= ; \
+ for group in $$select; do \
+ if [ ! -z \$${_MASTER_SITES_$${group}} ] ; then \
+ eval ___MASTER_SITES_TMP="\$${_MASTER_SITES_$${group}}" ; \
+ __MASTER_SITES_TMP="$${__MASTER_SITES_TMP} $${___MASTER_SITES_TMP}" ; \
+ fi \
+ done; \
+ ___MASTER_SITES_TMP= ; \
+ SORTED_MASTER_SITES_CMD_TMP="${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} $${__MASTER_SITES_TMP} | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP}" ; \
+ else \
+ SORTED_MASTER_SITES_CMD_TMP="${SORTED_MASTER_SITES_DEFAULT_CMD}" ; \
+ fi ; \
+ for site in `eval $$SORTED_MASTER_SITES_CMD_TMP ${_RANDOMIZE_SITES}`; do \
+ ${ECHO_MSG} "=> Attempting to fetch from $${site}."; \
+ DIR=${DIST_SUBDIR}; \
+ CKSIZE=`${GREP} "^SIZE ($${DIR:+$$DIR/}$$file)" ${MD5_FILE} | ${AWK} '{print $$4}'`; \
+ case $${file} in \
+ */*) ${MKDIR} $${file%/*}; \
+ args="-o $${file} $${site}$${file}";; \
+ *) args=$${site}$${file};; \
+ esac; \
+ if ${SETENV} ${FETCH_ENV} ${FETCH_CMD} ${FETCH_BEFORE_ARGS} $${args} ${FETCH_AFTER_ARGS}; then \
+ continue 2; \
+ fi \
+ done; \
+ ${ECHO_MSG} "=> Couldn't fetch it - please try to retrieve this";\
+ ${ECHO_MSG} "=> port manually into ${_DISTDIR} and try again."; \
+ exit 1; \
+ fi \
+ done)
+.if defined(PATCHFILES)
+ @(cd ${_DISTDIR}; \
+ ${_PATCH_SITES_ENV} ; \
+ for _file in ${PATCHFILES}; do \
+ file=`${ECHO_CMD} $$_file | ${SED} -E -e 's/:[^:]+$$//'` ; \
+ select=`${ECHO_CMD} $${_file#$${file}} | ${SED} -e 's/^://' -e 's/,/ /g'` ; \
+ force_fetch=false; \
+ filebasename=`${BASENAME} $$file`; \
+ for afile in ${FORCE_FETCH}; do \
+ afile=`${BASENAME} $$afile`; \
+ if [ "x$$afile" = "x$$filebasename" ]; then \
+ force_fetch=true; \
+ fi; \
+ done; \
+ if [ ! -f $$file -a ! -f $$filebasename -o "$$force_fetch" = "true" ]; then \
+ if [ -L $$file -o -L `${BASENAME} $$file` ]; then \
+ ${ECHO_MSG} "=> ${_DISTDIR}/$$file is a broken symlink."; \
+ ${ECHO_MSG} "=> Perhaps a filesystem (most likely a CD) isn't mounted?"; \
+ ${ECHO_MSG} "=> Please correct this problem and try again."; \
+ exit 1; \
+ fi ; \
+ ${ECHO_MSG} "=> $$file doesn't seem to exist in ${_DISTDIR}."; \
+ if [ ! -z "$$select" ] ; then \
+ __PATCH_SITES_TMP= ; \
+ for group in $$select; do \
+ if [ ! -z \$${_PATCH_SITES_$${group}} ] ; then \
+ eval ___PATCH_SITES_TMP="\$${_PATCH_SITES_$${group}}" ; \
+ __PATCH_SITES_TMP="$${__PATCH_SITES_TMP} $${___PATCH_SITES_TMP}" ; \
+ fi \
+ done; \
+ ___PATCH_SITES_TMP= ; \
+ SORTED_PATCH_SITES_CMD_TMP="${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} $${__PATCH_SITES_TMP} | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP}" ; \
+ else \
+ SORTED_PATCH_SITES_CMD_TMP="${SORTED_PATCH_SITES_DEFAULT_CMD}" ; \
+ fi ; \
+ for site in `eval $$SORTED_PATCH_SITES_CMD_TMP`; do \
+ ${ECHO_MSG} "=> Attempting to fetch from $${site}."; \
+ DIR=${DIST_SUBDIR}; \
+ pattern="$${DIR:+$$DIR/}`${ECHO_CMD} $$file | ${SED} -e 's/\./\\\\./g'`"; \
+ CKSIZE=`${GREP} "^SIZE ($$pattern)" ${MD5_FILE} | ${AWK} '{print $$4}'`; \
+ case $${file} in \
+ */*) ${MKDIR} $${file%/*}; \
+ args="-o $${file} $${site}$${file}";; \
+ *) args=$${site}$${file};; \
+ esac; \
+ if ${SETENV} ${FETCH_ENV} ${FETCH_CMD} ${FETCH_BEFORE_ARGS} $${args} ${FETCH_AFTER_ARGS}; then \
+ continue 2; \
+ fi \
+ done; \
+ ${ECHO_MSG} "=> Couldn't fetch it - please try to retrieve this";\
+ ${ECHO_MSG} "=> port manually into ${_DISTDIR} and try again."; \
+ exit 1; \
+ fi \
+ done)
+.endif
+.endif
+
+# Extract
+
+.if !target(do-extract)
+do-extract:
+ @${RM} -rf ${WRKDIR}
+ @${MKDIR} ${WRKDIR}
+ @for file in ${EXTRACT_ONLY}; do \
+ if ! (cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/$$file ${EXTRACT_AFTER_ARGS});\
+ then \
+ exit 1; \
+ fi \
+ done
+.if !defined(EXTRACT_PRESERVE_OWNERSHIP)
+ @if [ `${ID} -u` = 0 ]; then \
+ ${CHMOD} -R ug-s ${WRKDIR}; \
+ ${CHOWN} -R 0:0 ${WRKDIR}; \
+ fi
+.endif
+.endif
+
+# Patch
+
+.if !target(do-patch)
+do-patch:
+.if defined(PATCHFILES)
+ @${ECHO_MSG} "===> Applying distribution patches for ${PKGNAME}"
+ @(cd ${_DISTDIR}; \
+ for i in ${_PATCHFILES}; do \
+ if [ ${PATCH_DEBUG_TMP} = yes ]; then \
+ ${ECHO_MSG} "===> Applying distribution patch $$i" ; \
+ fi; \
+ case $$i in \
+ *.Z|*.gz) \
+ ${GZCAT} $$i | ${PATCH} ${PATCH_DIST_ARGS}; \
+ ;; \
+ *.bz2) \
+ ${BZCAT} $$i | ${PATCH} ${PATCH_DIST_ARGS}; \
+ ;; \
+ *) \
+ ${PATCH} ${PATCH_DIST_ARGS} < $$i; \
+ ;; \
+ esac; \
+ done)
+.endif
+.if defined(EXTRA_PATCHES)
+ @for i in ${EXTRA_PATCHES}; do \
+ ${ECHO_MSG} "===> Applying extra patch $$i"; \
+ ${PATCH} ${PATCH_ARGS} < $$i; \
+ done
+.endif
+ @if [ -d ${PATCHDIR} ]; then \
+ if [ "`${ECHO_CMD} ${PATCHDIR}/patch-*`" != "${PATCHDIR}/patch-*" ]; then \
+ ${ECHO_MSG} "===> Applying ${OPSYS} patches for ${PKGNAME}" ; \
+ PATCHES_APPLIED="" ; \
+ for i in ${PATCHDIR}/patch-*; do \
+ case $$i in \
+ *.orig|*.rej|*~|*,v) \
+ ${ECHO_MSG} "===> Ignoring patchfile $$i" ; \
+ ;; \
+ *) \
+ if [ ${PATCH_DEBUG_TMP} = yes ]; then \
+ ${ECHO_MSG} "===> Applying ${OPSYS} patch $$i" ; \
+ fi; \
+ if ${PATCH} ${PATCH_ARGS} < $$i ; then \
+ PATCHES_APPLIED="$$PATCHES_APPLIED $$i" ; \
+ else \
+ ${ECHO_MSG} `${ECHO_CMD} "=> Patch $$i failed to apply cleanly." | ${SED} "s|${PATCHDIR}/||"` ; \
+ if [ x"$$PATCHES_APPLIED" != x"" ]; then \
+ ${ECHO_MSG} `${ECHO_CMD} "=> Patch(es) $$PATCHES_APPLIED applied cleanly." | ${SED} "s|${PATCHDIR}/||g"` ; \
+ fi; \
+ ${FALSE} ; \
+ fi; \
+ ;; \
+ esac; \
+ done; \
+ fi; \
+ fi
+.endif
+
+# Configure
+
+.if !target(do-configure)
+do-configure:
+ @if [ -f ${SCRIPTDIR}/configure ]; then \
+ cd ${.CURDIR} && ${SETENV} ${SCRIPTS_ENV} ${SH} \
+ ${SCRIPTDIR}/configure; \
+ fi
+.if defined(GNU_CONFIGURE)
+ @CONFIG_GUESS_DIRS=$$(${FIND} ${WRKDIR} -name config.guess -o -name config.sub \
+ | ${XARGS} -n 1 ${DIRNAME}); \
+ for _D in $${CONFIG_GUESS_DIRS}; do \
+ ${CP} -f ${TEMPLATES}/config.guess $${_D}/config.guess; \
+ ${CHMOD} a+rx $${_D}/config.guess; \
+ ${CP} -f ${TEMPLATES}/config.sub $${_D}/config.sub; \
+ ${CHMOD} a+rx $${_D}/config.sub; \
+ done
+.endif
+.if defined(HAS_CONFIGURE)
+ @(cd ${CONFIGURE_WRKSRC} && \
+ if ! ${SETENV} CC="${CC}" CXX="${CXX}" \
+ CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
+ INSTALL="/usr/bin/install -c ${_BINOWNGRP}" \
+ INSTALL_DATA="${INSTALL_DATA}" \
+ INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
+ INSTALL_SCRIPT="${INSTALL_SCRIPT}" \
+ ${CONFIGURE_ENV} ./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}; then \
+ ${ECHO_CMD} "===> Script \"${CONFIGURE_SCRIPT}\" failed unexpectedly."; \
+ (${ECHO_CMD} ${CONFIGURE_FAIL_MESSAGE}) | ${FMT} 75 79 ; \
+ ${FALSE}; \
+ fi)
+.endif
+.if defined(PERL_CONFIGURE)
+ @cd ${CONFIGURE_WRKSRC} && \
+ ${SETENV} ${CONFIGURE_ENV} \
+ ${PERL5} ./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}
+.if !defined(PERL_MODBUILD)
+ @cd ${CONFIGURE_WRKSRC} && \
+ ${PERL5} -pi -e 's/ doc_(perl|site|\$$\(INSTALLDIRS\))_install$$//' Makefile
+.if ${PERL_LEVEL} <= 500503
+ @cd ${CONFIGURE_WRKSRC} && \
+ ${PERL5} -pi -e 's/^(INSTALLSITELIB|INSTALLSITEARCH|SITELIBEXP|SITEARCHEXP|INSTALLMAN1DIR|INSTALLMAN3DIR) = \/usr\/local/$$1 = \$$(PREFIX)/' Makefile
+.endif
+.endif
+.endif
+.if defined(USE_IMAKE)
+ @(cd ${CONFIGURE_WRKSRC}; ${SETENV} ${MAKE_ENV} ${XMKMF})
+.endif
+.endif
+
+# Build
+
+.if !target(do-build)
+do-build:
+.if defined(USE_GMAKE)
+ @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
+.else
+.if defined(PERL_MODBUILD)
+ @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} ${PL_BUILD} ${MAKE_ARGS} ${ALL_TARGET})
+.else
+ @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
+.endif
+.endif
+.endif
+
+# Check conflicts
+
+.if !target(check-conflicts)
+check-conflicts:
+.if defined(CONFLICTS) && !defined(DISABLE_CONFLICTS)
+ @found=`${PKG_INFO} -I ${CONFLICTS:C/.+/'&'/} 2>/dev/null | ${AWK} '{print $$1}'`; \
+ conflicts_with=; \
+ for entry in $${found}; do \
+ prfx=`${PKG_INFO} -q -p "$${entry}" 2> /dev/null | ${SED} -ne '1s/^@cwd //p'`; \
+ orgn=`${PKG_INFO} -q -o "$${entry}" 2> /dev/null`; \
+ if [ "/${PREFIX}" = "/$${prfx}" -a "/${PKGORIGIN}" != "/$${orgn}" ]; then \
+ conflicts_with="$${conflicts_with} $${entry}"; \
+ fi; \
+ done; \
+ if [ -n "$${conflicts_with}" ]; then \
+ ${ECHO_MSG}; \
+ ${ECHO_MSG} "===> ${PKGNAME} conflicts with installed package(s): "; \
+ for entry in $${conflicts_with}; do \
+ ${ECHO_MSG} " $${entry}"; \
+ done; \
+ ${ECHO_MSG}; \
+ ${ECHO_MSG} " They install files into the same place."; \
+ ${ECHO_MSG} " Please remove them first with pkg_delete(1)."; \
+ exit 1; \
+ fi
+.endif # CONFLICTS
+.endif
+
+# Install
+
+.if !target(do-install)
+do-install:
+.if defined(USE_GMAKE)
+ @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET})
+.if defined(USE_IMAKE) && !defined(NO_INSTALL_MANPAGES)
+ @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install.man)
+.endif
+.else # !defined(USE_GMAKE)
+.if defined(PERL_MODBUILD)
+ @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} ${PL_BUILD} ${MAKE_ARGS} ${INSTALL_TARGET})
+.else
+ @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET})
+.if defined(USE_IMAKE) && !defined(NO_INSTALL_MANPAGES)
+ @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install.man)
+.endif
+.endif
+.endif
+.endif
+
+# Package
+
+.if !target(do-package)
+do-package: ${TMPPLIST}
+ @if [ -d ${PACKAGES} ]; then \
+ if [ ! -d ${PKGREPOSITORY} ]; then \
+ if ! ${MKDIR} ${PKGREPOSITORY}; then \
+ ${ECHO_MSG} "=> Can't create directory ${PKGREPOSITORY}."; \
+ exit 1; \
+ fi; \
+ fi; \
+ fi
+ @__softMAKEFLAGS='${__softMAKEFLAGS:S/'/'\''/g}'; \
+ _LATE_PKG_ARGS=""; \
+ if [ -f ${PKGINSTALL} ]; then \
+ _LATE_PKG_ARGS="$${_LATE_PKG_ARGS} -i ${PKGINSTALL}"; \
+ fi; \
+ if [ -f ${PKGDEINSTALL} ]; then \
+ _LATE_PKG_ARGS="$${_LATE_PKG_ARGS} -k ${PKGDEINSTALL}"; \
+ fi; \
+ if [ -f ${PKGREQ} ]; then \
+ _LATE_PKG_ARGS="$${_LATE_PKG_ARGS} -r ${PKGREQ}"; \
+ fi; \
+ if [ -f ${PKGMESSAGE} ]; then \
+ _LATE_PKG_ARGS="$${_LATE_PKG_ARGS} -D ${PKGMESSAGE}"; \
+ fi; \
+ if ${PKG_CMD} ${PKG_ARGS} ${PKGFILE}; then \
+ if [ -d ${PACKAGES} ]; then \
+ cd ${.CURDIR} && eval ${MAKE} $${__softMAKEFLAGS} package-links; \
+ fi; \
+ else \
+ cd ${.CURDIR} && eval ${MAKE} $${__softMAKEFLAGS} delete-package; \
+ exit 1; \
+ fi
+.endif
+
+# Some support rules for do-package
+
+.if !target(package-links)
+package-links: delete-package-links
+ @for cat in ${CATEGORIES}; do \
+ if [ ! -d ${PACKAGES}/$$cat ]; then \
+ if ! ${MKDIR} ${PACKAGES}/$$cat; then \
+ ${ECHO_MSG} "=> Can't create directory ${PACKAGES}/$$cat."; \
+ exit 1; \
+ fi; \
+ fi; \
+ ${LN} -sf `${ECHO_CMD} $$cat | ${SED} -e 'sa[^/]*a..ag'`/${PKGREPOSITORYSUBDIR}/${PKGNAME}${PKG_SUFX} ${PACKAGES}/$$cat; \
+ done
+.if !defined(NO_LATEST_LINK)
+ @if [ ! -d ${PKGLATESTREPOSITORY} ]; then \
+ if ! ${MKDIR} ${PKGLATESTREPOSITORY}; then \
+ ${ECHO_MSG} "=> Can't create directory ${PKGLATESTREPOSITORY}."; \
+ exit 1; \
+ fi; \
+ fi
+ @${LN} -s ../${PKGREPOSITORYSUBDIR}/${PKGNAME}${PKG_SUFX} ${PKGLATESTFILE}
+.endif
+.endif
+
+.if !target(delete-package-links)
+delete-package-links:
+ @for cat in ${CATEGORIES}; do \
+ ${RM} -f ${PACKAGES}/$$cat/${PKGNAME}${PKG_SUFX}; \
+ done
+.if !defined(NO_LATEST_LINK)
+ @${RM} -f ${PKGLATESTFILE}
+.endif
+.endif
+
+.if !target(delete-package)
+delete-package: delete-package-links
+ @${RM} -f ${PKGFILE}
+.endif
+
+.if !target(delete-package-links-list)
+delete-package-links-list:
+ @for cat in ${CATEGORIES}; do \
+ ${ECHO_CMD} ${RM} -f ${PACKAGES}/$$cat/${PKGNAME}${PKG_SUFX}; \
+ done
+.if !defined(NO_LATEST_LINK)
+ @${ECHO_CMD} ${RM} -f ${PKGLATESTFILE}
+.endif
+.endif
+
+.if !target(delete-package-list)
+delete-package-list: delete-package-links-list
+ @${ECHO_CMD} "[ -f ${PKGFILE} ] && (${ECHO_CMD} deleting ${PKGFILE}; ${RM} -f ${PKGFILE})"
+.endif
+
+# Utility targets follow
+
+.if !target(check-already-installed)
+check-already-installed:
+.if !defined(NO_PKG_REGISTER) && !defined(FORCE_PKG_REGISTER)
+ @${ECHO_MSG} "===> Checking if ${PKGORIGIN} already installed"
+ @${MKDIR} ${PKG_DBDIR}
+ @already_installed=`${PKG_INFO} -q -O ${PKGORIGIN}`; \
+ if [ -n "$${already_installed}" ]; then \
+ for p in $${already_installed}; do \
+ prfx=`${PKG_INFO} -q -p $${p} 2> /dev/null | ${SED} -ne '1s|^@cwd ||p'`; \
+ if [ "x${PREFIX}" = "x$${prfx}" ]; then \
+ df=`${PKG_INFO} -q -f $${p} 2> /dev/null | ${GREP} -v "^@" | ${COMM} -12 - ${TMPPLIST}`; \
+ if [ -n "$${df}" ]; then \
+ found_package=$${p}; \
+ break; \
+ fi; \
+ fi; \
+ done; \
+ fi; \
+ if [ -d ${PKG_DBDIR}/${PKGNAME} -o -n "$${found_package}" ]; then \
+ if [ -d ${PKG_DBDIR}/${PKGNAME} ]; then \
+ ${ECHO_CMD} "===> ${PKGNAME} is already installed"; \
+ else \
+ ${ECHO_CMD} "===> An older version of ${PKGORIGIN} is already installed ($${found_package})"; \
+ fi; \
+ ${ECHO_CMD} " You may wish to \`\`make deinstall'' and install this port again"; \
+ ${ECHO_CMD} " by \`\`make reinstall'' to upgrade it properly."; \
+ ${ECHO_CMD} " If you really wish to overwrite the old port of ${PKGORIGIN}"; \
+ ${ECHO_CMD} " without deleting it first, set the variable \"FORCE_PKG_REGISTER\""; \
+ ${ECHO_CMD} " in your environment or the \"make install\" command line."; \
+ exit 1; \
+ fi
+.else
+ @${DO_NADA}
+.endif
+.endif
+
+.if !target(check-umask)
+check-umask:
+ @if [ `${SH} -c umask` != 0022 ]; then \
+ ${ECHO_MSG} "===> Warning: your umask is \"`${SH} -c umask`"\".; \
+ ${ECHO_MSG} " If this is not desired, set it to an appropriate value"; \
+ ${ECHO_MSG} " and install this port again by \`\`make reinstall''."; \
+ fi
+.endif
+
+.if !target(install-mtree)
+install-mtree:
+ @${MKDIR} ${PREFIX}
+ @if [ `${ID} -u` != 0 ]; then \
+ if [ -w ${PREFIX}/ ]; then \
+ ${ECHO_MSG} "Warning: not superuser, you may get some errors during installation."; \
+ else \
+ ${ECHO_MSG} "Error: ${PREFIX}/ not writable."; \
+ ${FALSE}; \
+ fi; \
+ fi
+.if !defined(NO_MTREE)
+ @if [ `${ID} -u` = 0 ]; then \
+ if [ ! -f ${MTREE_FILE} ]; then \
+ ${ECHO_CMD} "Error: mtree file \"${MTREE_FILE}\" is missing."; \
+ ${ECHO_CMD} "Copy it from a suitable location (e.g., /usr/src/etc/mtree) and try again."; \
+ exit 1; \
+ else \
+ ${MTREE_CMD} ${MTREE_ARGS} ${PREFIX}/ >/dev/null; \
+ if [ ${MTREE_FILE} = "/etc/mtree/BSD.local.dist" ]; then \
+ cd ${PREFIX}/share/nls; \
+ ${LN} -shf C POSIX; \
+ ${LN} -shf C en_US.US-ASCII; \
+ fi; \
+ fi; \
+ else \
+ ${ECHO_MSG} "Warning: not superuser, can't run mtree."; \
+ ${ECHO_MSG} "You may want to become root and try again to ensure correct permissions."; \
+ fi
+.endif
+.endif
+
+.if !target(run-ldconfig)
+run-ldconfig:
+.if defined(INSTALLS_SHLIB)
+.if !defined(INSTALL_AS_USER)
+ @${ECHO_MSG} "===> Running ldconfig"
+ ${LDCONFIG} -m ${LDCONFIG_RUNLIST}
+.else
+ @${ECHO_MSG} "===> Running ldconfig (errors are ignored)"
+ -${LDCONFIG} -m ${LDCONFIG_RUNLIST}
+.endif
+.else
+ @${DO_NADA}
+.endif
+.endif
+
+.if !target(security-check)
+.if !defined(OLD_SECURITY_CHECK)
+
+security-check:
+# Scan PLIST for:
+# 1. setugid files
+# 2. accept()/recvfrom() which indicates network listening capability
+# 3. insecure functions (gets/mktemp/tempnam/[XXX])
+# 4. startup scripts, in conjunction with 2.
+# 5. world-writable files/dirs
+#
+ -@${RM} -f ${WRKDIR}/.PLIST.setuid ${WRKDIR}/.PLIST.writable ${WRKDIR}/.PLIST.objdump; \
+ ${AWK} -v prefix='${PREFIX}' ' \
+ match($$0, /^@cwd /) { prefix = substr($$0, RSTART + RLENGTH); if (prefix == "/") prefix=""; next; } \
+ /^@/ { next; } \
+ /^\// { print; next; } \
+ { print prefix "/" $$0; } \
+ ' ${TMPPLIST} > ${WRKDIR}/.PLIST.flattened; \
+ ${TR} '\n' '\0' < ${WRKDIR}/.PLIST.flattened \
+ | ${XARGS} -0 -J % ${FIND} % -prune ! -type l -type f \( -perm -4000 -o -perm -2000 \) \( -perm -0010 -o -perm -0001 \) 2> /dev/null > ${WRKDIR}/.PLIST.setuid; \
+ ${TR} '\n' '\0' < ${WRKDIR}/.PLIST.flattened \
+ | ${XARGS} -0 -J % ${FIND} % -prune -perm -0002 \! -type l 2> /dev/null > ${WRKDIR}/.PLIST.writable; \
+ ${TR} '\n' '\0' < ${WRKDIR}/.PLIST.flattened \
+ | ${XARGS} -0 -J % ${FIND} % -prune ! -type l -type f -print0 2> /dev/null \
+ | ${XARGS} -0 -n 1 ${OBJDUMP} -R 2> /dev/null > ${WRKDIR}/.PLIST.objdump; \
+ if \
+ ! ${AWK} -v audit="$${PORTS_AUDIT}" -f ${PORTSDIR}/Tools/scripts/security-check.awk \
+ ${WRKDIR}/.PLIST.flattened ${WRKDIR}/.PLIST.objdump ${WRKDIR}/.PLIST.setuid ${WRKDIR}/.PLIST.writable; \
+ then \
+ www_site=$$(cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} www-site); \
+ if [ ! -z "$${www_site}" ]; then \
+ ${ECHO_MSG}; \
+ ${ECHO_MSG} " For more information, and contact details about the security"; \
+ ${ECHO_MSG} " status of this software, see the following webpage: "; \
+ ${ECHO_MSG} "$${www_site}"; \
+ fi; \
+ fi
+
+
+.else # i.e. defined(OLD_SECURITY_CHECK)
+
+security-check:
+# Scan PLIST for:
+# 1. setugid files
+# 2. accept()/recvfrom() which indicates network listening capability
+# 3. insecure functions (gets/mktemp/tempnam/[XXX])
+# 4. startup scripts, in conjunction with 2.
+# 5. world-writable files/dirs
+#
+ -@${RM} -f ${WRKDIR}/.PLIST.setuid ${WRKDIR}/.PLIST.stupid \
+ ${WRKDIR}/.PLIST.network ${WRKDIR}/.PLIST.writable; \
+ if [ -n "$$PORTS_AUDIT" ]; then \
+ stupid_functions_regexp=' (gets|mktemp|tempnam|tmpnam|strcpy|strcat|sprintf)$$'; \
+ else \
+ stupid_functions_regexp=' (gets|mktemp|tempnam|tmpnam)$$'; \
+ fi; \
+ for i in `${GREP} -v '^@' ${TMPPLIST}`; do \
+ if [ ! -L "${PREFIX}/$$i" -a -f "${PREFIX}/$$i" ]; then \
+ ${OBJDUMP} -R ${PREFIX}/$$i > \
+ ${WRKDIR}/.PLIST.objdump 2> /dev/null; \
+ if [ -s ${WRKDIR}/.PLIST.objdump ] ; then \
+ ${EGREP} " $$stupid_functions_regexp" \
+ ${WRKDIR}/.PLIST.objdump | ${AWK} '{print " " $$3}' | ${TR} -d '\n' \
+ > ${WRKDIR}/.PLIST.stupid; \
+ if [ -n "`${EGREP} ' (accept|recvfrom)$$' ${WRKDIR}/.PLIST.objdump`" ] ; then \
+ if [ -s ${WRKDIR}/.PLIST.stupid ]; then \
+ ${ECHO_CMD} -n "${PREFIX}/$$i (USES POSSIBLY INSECURE FUNCTIONS:" >> ${WRKDIR}/.PLIST.network; \
+ ${CAT} ${WRKDIR}/.PLIST.stupid >> ${WRKDIR}/.PLIST.network; \
+ ${ECHO_CMD} ")" >> ${WRKDIR}/.PLIST.network; \
+ else \
+ ${ECHO_CMD} ${PREFIX}/$$i >> ${WRKDIR}/.PLIST.network; \
+ fi; \
+ fi; \
+ fi; \
+ if [ -n "`${FIND} ${PREFIX}/$$i -prune \( -perm -4000 -o -perm -2000 \) \( -perm -0010 -o -perm -0001 \) 2>/dev/null`" ]; then \
+ if [ -s ${WRKDIR}/.PLIST.stupid ]; then \
+ ${ECHO_CMD} -n "${PREFIX}/$$i (USES POSSIBLY INSECURE FUNCTIONS:" >> ${WRKDIR}/.PLIST.setuid; \
+ ${CAT} ${WRKDIR}/.PLIST.stupid >> ${WRKDIR}/.PLIST.setuid; \
+ ${ECHO_CMD} ")" >> ${WRKDIR}/.PLIST.setuid; \
+ else \
+ ${ECHO_CMD} ${PREFIX}/$$i >> ${WRKDIR}/.PLIST.setuid; \
+ fi; \
+ fi; \
+ fi; \
+ if [ ! -L "${PREFIX}/$$i" ]; then \
+ if [ -n "`${FIND} ${PREFIX}/$$i -prune -perm -0002 \! -type l 2>/dev/null`" ]; then \
+ ${ECHO_CMD} ${PREFIX}/$$i >> ${WRKDIR}/.PLIST.writable; \
+ fi; \
+ fi; \
+ done; \
+ ${GREP} '^etc/rc.d/' ${TMPPLIST} > ${WRKDIR}/.PLIST.startup; \
+ if [ -s ${WRKDIR}/.PLIST.setuid -o -s ${WRKDIR}/.PLIST.network -o -s ${WRKDIR}/.PLIST.writable ]; then \
+ if [ -n "$$PORTS_AUDIT" ]; then \
+ ${ECHO_MSG} "===> SECURITY REPORT (PARANOID MODE): "; \
+ else \
+ ${ECHO_MSG} "===> SECURITY REPORT: "; \
+ fi; \
+ if [ -s ${WRKDIR}/.PLIST.setuid ] ; then \
+ ${ECHO_MSG} " This port has installed the following binaries which execute with"; \
+ ${ECHO_MSG} " increased privileges."; \
+ ${CAT} ${WRKDIR}/.PLIST.setuid; \
+ ${ECHO_MSG}; \
+ fi; \
+ if [ -s ${WRKDIR}/.PLIST.network ] ; then \
+ ${ECHO_MSG} " This port has installed the following files which may act as network"; \
+ ${ECHO_MSG} " servers and may therefore pose a remote security risk to the system."; \
+ ${CAT} ${WRKDIR}/.PLIST.network; \
+ ${ECHO_MSG}; \
+ if [ -s ${WRKDIR}/.PLIST.startup ] ; then \
+ ${ECHO_MSG} " This port has installed the following startup scripts which may cause"; \
+ ${ECHO_MSG} " these network services to be started at boot time."; \
+ ${SED} s,^,${PREFIX}/, < ${WRKDIR}/.PLIST.startup; \
+ ${ECHO_MSG}; \
+ fi; \
+ fi; \
+ if [ -s ${WRKDIR}/.PLIST.writable ] ; then \
+ ${ECHO_MSG} " This port has installed the following world-writable files/directories."; \
+ ${CAT} ${WRKDIR}/.PLIST.writable; \
+ ${ECHO_MSG}; \
+ fi; \
+ ${ECHO_MSG} " If there are vulnerabilities in these programs there may be a security"; \
+ ${ECHO_MSG} " risk to the system. FreeBSD makes no guarantee about the security of"; \
+ ${ECHO_MSG} " ports included in the Ports Collection. Please type 'make deinstall'"; \
+ ${ECHO_MSG} " to deinstall the port if this is a concern."; \
+ www_site=$$(cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} www-site); \
+ if [ ! -z "$${www_site}" ]; then \
+ ${ECHO_MSG}; \
+ ${ECHO_MSG} " For more information, and contact details about the security"; \
+ ${ECHO_MSG} " status of this software, see the following webpage: "; \
+ ${ECHO_MSG} "$${www_site}"; \
+ fi; \
+ fi
+.endif # !defined(OLD_SECURITY_CHECK)
+.endif
+
+################################################################
+# Skeleton targets start here
+#
+# You shouldn't have to change these. Either add the pre-* or
+# post-* targets/scripts or redefine the do-* targets. These
+# targets don't do anything other than checking for cookies and
+# call the necessary targets/scripts.
+################################################################
+
+# Please note that the order of the following targets is important, and
+# should not be modified.
+
+_SANITY_SEQ= pre-everything check-makefile check-categories \
+ check-makevars check-depends check-deprecated \
+ check-vulnerable buildanyway-message options-message
+_FETCH_DEP= check-sanity
+_FETCH_SEQ= fetch-depends pre-fetch pre-fetch-script \
+ do-fetch post-fetch post-fetch-script
+_EXTRACT_DEP= fetch
+_EXTRACT_SEQ= extract-message checksum extract-depends pre-extract \
+ pre-extract-script do-extract \
+ post-extract post-extract-script
+_PATCH_DEP= extract
+_PATCH_SEQ= patch-message patch-depends pre-patch pre-patch-script \
+ do-patch post-patch post-patch-script
+_CONFIGURE_DEP= patch
+_CONFIGURE_SEQ= build-depends lib-depends misc-depends configure-message \
+ pre-configure pre-configure-script patch-autotools \
+ run-autotools do-configure post-configure post-configure-script
+_BUILD_DEP= configure
+_BUILD_SEQ= build-message pre-build pre-build-script do-build \
+ post-build post-build-script
+_INSTALL_DEP= build
+_INSTALL_SEQ= install-message check-conflicts \
+ run-depends lib-depends apply-slist pre-install \
+ pre-install-script generate-plist check-already-installed
+_INSTALL_SUSEQ= check-umask install-mtree pre-su-install \
+ pre-su-install-script do-install install-desktop-entries \
+ post-install post-install-script add-plist-info \
+ add-plist-docs add-plist-post install-rc-script compress-man \
+ run-ldconfig fake-pkg security-check
+_PACKAGE_DEP= install
+_PACKAGE_SEQ= package-message pre-package pre-package-script \
+ do-package post-package-script
+
+.if !target(check-sanity)
+check-sanity: ${_SANITY_SEQ}
+.endif
+
+# XXX MCL might need to move in loop below?
+.if !target(fetch)
+fetch: ${_FETCH_DEP} ${_FETCH_SEQ}
+.endif
+
+# Main logic. The loop generates 6 main targets and using cookies
+# ensures that those already completed are skipped.
+
+.for target in extract patch configure build install package
+
+.if !target(${target}) && defined(_OPTIONS_OK)
+${target}: ${${target:U}_COOKIE}
+.elif !target(${target})
+${target}: config
+ @cd ${.CURDIR} && ${MAKE} CONFIG_DONE=1 ${__softMAKEFLAGS} ${${target:U}_COOKIE}
+.elif target(${target}) && defined(IGNORE)
+.endif
+
+.if !exists(${${target:U}_COOKIE})
+
+.if ${UID} != 0 && defined(_${target:U}_SUSEQ) && !defined(INSTALL_AS_USER)
+.if defined(USE_SUBMAKE)
+${${target:U}_COOKIE}: ${_${target:U}_DEP}
+ @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} ${_${target:U}_SEQ}
+.else
+${${target:U}_COOKIE}: ${_${target:U}_DEP} ${_${target:U}_SEQ}
+.endif
+ @${ECHO_MSG} "===> Switching to root credentials for '${target}' target"
+ @cd ${.CURDIR} && \
+ ${SU_CMD} "${MAKE} ${__softMAKEFLAGS} ${_${target:U}_SUSEQ}"
+ @${ECHO_MSG} "===> Returning to user credentials"
+ @${TOUCH} ${TOUCH_FLAGS} ${.TARGET}
+.elif defined(USE_SUBMAKE)
+${${target:U}_COOKIE}: ${_${target:U}_DEP}
+ @cd ${.CURDIR} && \
+ ${MAKE} ${__softMAKEFLAGS} ${_${target:U}_SEQ} ${_${target:U}_SUSEQ}
+ @${TOUCH} ${TOUCH_FLAGS} ${.TARGET}
+.else
+${${target:U}_COOKIE}: ${_${target:U}_DEP} ${_${target:U}_SEQ} ${_${target:U}_SUSEQ}
+ @${TOUCH} ${TOUCH_FLAGS} ${.TARGET}
+.endif
+
+.else
+${${target:U}_COOKIE}::
+ @if [ -e ${.TARGET} ]; then \
+ ${DO_NADA}; \
+ else \
+ cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} ${.TARGET}; \
+ fi
+.endif
+
+.endfor
+
+# Enforce order for -jN builds
+
+.ORDER: ${_SANITY_SEQ}
+.ORDER: ${_FETCH_DEP} ${_FETCH_SEQ}
+.ORDER: ${_EXTRACT_DEP} ${_EXTRACT_SEQ}
+.ORDER: ${_PATCH_DEP} ${_PATCH_SEQ}
+.ORDER: ${_CONFIGURE_DEP} ${_CONFIGURE_SEQ}
+.ORDER: ${_BUILD_DEP} ${_BUILD_SEQ}
+.ORDER: ${_INSTALL_DEP} ${_INSTALL_SEQ}
+.ORDER: ${_PACKAGE_DEP} ${_PACKAGE_SEQ}
+
+extract-message:
+ @${ECHO_MSG} "===> Extracting for ${PKGNAME}"
+patch-message:
+ @${ECHO_MSG} "===> Patching for ${PKGNAME}"
+configure-message:
+ @${ECHO_MSG} "===> Configuring for ${PKGNAME}"
+build-message:
+ @${ECHO_MSG} "===> Building for ${PKGNAME}"
+install-message:
+ @${ECHO_MSG} "===> Installing for ${PKGNAME}"
+package-message:
+ @${ECHO_MSG} "===> Building package for ${PKGNAME}"
+
+# Empty pre-* and post-* targets
+
+.for stage in pre post
+.for name in check-sanity fetch extract patch configure build install package
+
+.if !target(${stage}-${name})
+${stage}-${name}:
+ @${DO_NADA}
+.endif
+
+.if !target(${stage}-${name}-script)
+${stage}-${name}-script:
+ @if [ -f ${SCRIPTDIR}/${.TARGET:S/-script$//} ]; then \
+ cd ${.CURDIR} && ${SETENV} ${SCRIPTS_ENV} ${SH} \
+ ${SCRIPTDIR}/${.TARGET:S/-script$//}; \
+ fi
+.endif
+
+.endfor
+.endfor
+
+# Special cases for su
+.if !target(pre-su-install)
+pre-su-install:
+ @${DO_NADA}
+.endif
+
+.if !target(pre-su-install-script)
+pre-su-install-script:
+ @${DO_NADA}
+.endif
+
+
+.if !target(pretty-print-www-site)
+pretty-print-www-site:
+ @www_site=$$(cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} www-site); \
+ if [ -n "$${www_site}" ]; then \
+ ${ECHO_CMD} -n " and/or visit the "; \
+ ${ECHO_CMD} -n "<a href=\"$${www_site}\">web site</a>"; \
+ ${ECHO_CMD} " for futher informations"; \
+ fi
+.endif
+
+################################################################
+# Some more targets supplied for users' convenience
+################################################################
+
+# Checkpatch
+#
+# Special target to verify patches
+
+.if !target(checkpatch)
+checkpatch:
+ @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} PATCH_CHECK_ONLY=yes ${_PATCH_DEP} ${_PATCH_SEQ}
+.endif
+
+# Reinstall
+#
+# Special target to re-run install
+
+.if !target(reinstall)
+reinstall:
+ @${RM} -f ${INSTALL_COOKIE} ${PACKAGE_COOKIE}
+ @cd ${.CURDIR} && DEPENDS_TARGET="${DEPENDS_TARGET}" ${MAKE} install
+.endif
+
+# Deinstall
+#
+# Special target to remove installation
+
+.if !target(deinstall)
+deinstall:
+.if ${UID} != 0 && !defined(INSTALL_AS_USER)
+ @${ECHO_MSG} "===> Switching to root credentials for '${.TARGET}' target"
+ @cd ${.CURDIR} && \
+ ${SU_CMD} "${MAKE} ${__softMAKEFLAGS} ${.TARGET}"
+ @${ECHO_MSG} "===> Returning to user credentials"
+.else
+ @${ECHO_MSG} "===> Deinstalling for ${PKGORIGIN}"
+ @found_names=`${PKG_INFO} -q -O ${PKGORIGIN}`; \
+ for p in $${found_names}; do \
+ check_name=`${ECHO_CMD} $${p} | ${SED} -e 's/-[^-]*$$//'`; \
+ if [ "$${check_name}" = "${PKGBASE}" ]; then \
+ prfx=`${PKG_INFO} -q -p $${p} 2> /dev/null | ${SED} -ne '1s|^@cwd ||p'`; \
+ if [ "x${PREFIX}" = "x$${prfx}" ]; then \
+ ${ECHO_MSG} "===> Deinstalling $${p}"; \
+ ${PKG_DELETE} -f $${p}; \
+ else \
+ ${ECHO_MSG} "===> $${p} has a different PREFIX: $${prfx}, skipping"; \
+ fi; \
+ fi; \
+ done; \
+ if [ -z "$${found_names}" ]; then \
+ ${ECHO_MSG} "===> ${PKGBASE} not installed, skipping"; \
+ fi
+ @${RM} -f ${INSTALL_COOKIE} ${PACKAGE_COOKIE}
+.endif
+.endif
+
+# Deinstall-all
+#
+# Special target to remove installation of all ports of the same origin
+
+.if !target(deinstall-all)
+deinstall-all:
+.if ${UID} != 0 && !defined(INSTALL_AS_USER)
+ @${ECHO_MSG} "===> Switching to root credentials for '${.TARGET}' target"
+ @cd ${.CURDIR} && \
+ ${SU_CMD} "${MAKE} ${__softMAKEFLAGS} ${.TARGET}"
+ @${ECHO_MSG} "===> Returning to user credentials"
+.else
+ @${ECHO_MSG} "===> Deinstalling for ${PKGORIGIN}"
+ @deinstall_names=`${PKG_INFO} -q -O ${PKGORIGIN}`; \
+ if [ -n "$${deinstall_names}" ]; then \
+ for d in $${deinstall_names}; do \
+ ${ECHO_MSG} "===> Deinstalling $${d}"; \
+ ${PKG_DELETE} -f $${d}; \
+ done; \
+ else \
+ ${ECHO_MSG} "===> ${PKGORIGIN} not installed, skipping"; \
+ fi
+ @${RM} -f ${INSTALL_COOKIE} ${PACKAGE_COOKIE}
+.endif
+.endif
+
+# Cleaning up
+
+.if !target(do-clean)
+do-clean:
+ @if [ -d ${WRKDIR} ]; then \
+ if [ -w ${WRKDIR} ]; then \
+ ${RM} -rf ${WRKDIR}; \
+ else \
+ ${ECHO_MSG} "===> ${WRKDIR} not writable, skipping"; \
+ fi; \
+ fi
+.endif
+
+.if !target(clean)
+clean:
+.if !defined(NOCLEANDEPENDS)
+ @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} clean-depends
+.endif
+ @${ECHO_MSG} "===> Cleaning for ${PKGNAME}"
+.if target(pre-clean)
+ @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} pre-clean
+.endif
+ @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} do-clean
+.if target(post-clean)
+ @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} post-clean
+.endif
+.endif
+
+.if !target(pre-distclean)
+pre-distclean:
+ @${DO_NADA}
+.endif
+
+.if !target(distclean)
+distclean: pre-distclean clean
+ @cd ${.CURDIR} && ${MAKE} delete-distfiles RESTRICTED_FILES="${_DISTFILES} ${_PATCHFILES}"
+.endif
+
+.if !target(delete-distfiles)
+delete-distfiles:
+ @${ECHO_MSG} "===> Deleting distfiles for ${PKGNAME}"
+ @(if [ "X${RESTRICTED_FILES}" != "X" -a -d ${_DISTDIR} ]; then \
+ cd ${_DISTDIR}; \
+ for file in ${RESTRICTED_FILES}; do \
+ ${RM} -f $${file}; \
+ dir=$${file%/*}; \
+ if [ "$${dir}" != "$${file}" ]; then \
+ ${RMDIR} -p $${dir} >/dev/null 2>&1 || :; \
+ fi; \
+ done; \
+ fi)
+.if defined(DIST_SUBDIR)
+ -@${RMDIR} ${_DISTDIR} >/dev/null 2>&1 || ${TRUE}
+.endif
+.endif
+
+.if !target(delete-distfiles-list)
+delete-distfiles-list:
+ @${ECHO_CMD} "# ${PKGNAME}"
+ @if [ "X${RESTRICTED_FILES}" != "X" ]; then \
+ for file in ${RESTRICTED_FILES}; do \
+ ${ECHO_CMD} "[ -f ${_DISTDIR}/$$file ] && (${ECHO_CMD} deleting ${_DISTDIR}/$$file; ${RM} -f ${_DISTDIR}/$$file)"; \
+ dir=$${file%/*}; \
+ if [ "$${dir}" != "$${file}" ]; then \
+ ${ECHO_CMD} "(cd ${_DISTDIR} && ${RMDIR} -p $${dir} 2>/dev/null)"; \
+ fi; \
+ done; \
+ fi
+.if defined(DIST_SUBDIR)
+ @${ECHO_CMD} "${RMDIR} ${_DISTDIR} 2>/dev/null || ${TRUE}"
+.endif
+.endif
+
+# Prints out a list of files to fetch (useful to do a batch fetch)
+
+.if !target(fetch-list)
+fetch-list:
+ @${MKDIR} ${_DISTDIR}
+ @(cd ${_DISTDIR}; \
+ ${_MASTER_SITES_ENV} ; \
+ for _file in ${DISTFILES}; do \
+ file=`${ECHO_CMD} $$_file | ${SED} -E -e 's/:[^:]+$$//'` ; \
+ select=`${ECHO_CMD} $${_file#$${file}} | ${SED} -e 's/^://' -e 's/,/ /g'` ; \
+ if [ ! -f $$file -a ! -f `${BASENAME} $$file` ]; then \
+ if [ ! -z "$$select" ] ; then \
+ __MASTER_SITES_TMP= ; \
+ for group in $$select; do \
+ if [ ! -z \$${_MASTER_SITES_$${group}} ] ; then \
+ eval ___MASTER_SITES_TMP=\$${_MASTER_SITES_$${group}} ; \
+ __MASTER_SITES_TMP="$${__MASTER_SITES_TMP} $${___MASTER_SITES_TMP}" ; \
+ fi \
+ done; \
+ ___MASTER_SITES_TMP= ; \
+ SORTED_MASTER_SITES_CMD_TMP="${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} $${__MASTER_SITES_TMP} | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP}" ; \
+ else \
+ SORTED_MASTER_SITES_CMD_TMP="${SORTED_MASTER_SITES_DEFAULT_CMD}" ; \
+ fi ; \
+ for site in `eval $$SORTED_MASTER_SITES_CMD_TMP ${_RANDOMIZE_SITES}`; do \
+ DIR=${DIST_SUBDIR}; \
+ CKSIZE=`${GREP} "^SIZE ($${DIR:+$$DIR/}$$file)" ${MD5_FILE} | ${AWK} '{print $$4}'`; \
+ case $${file} in \
+ */*) args="-o $${file} $${site}$${file}";; \
+ *) args=$${site}$${file};; \
+ esac; \
+ ${ECHO_CMD} -n ${SETENV} ${FETCH_ENV} ${FETCH_CMD} ${FETCH_BEFORE_ARGS} $${args} "${FETCH_AFTER_ARGS}" '|| ' ; \
+ done; \
+ ${ECHO_CMD} "${ECHO_CMD} $${file} not fetched" ; \
+ fi \
+ done)
+.if defined(PATCHFILES)
+ @(cd ${_DISTDIR}; \
+ ${_PATCH_SITES_ENV} ; \
+ for _file in ${PATCHFILES}; do \
+ file=`${ECHO_CMD} $$_file | ${SED} -E -e 's/:[^:]+$$//'` ; \
+ select=`${ECHO_CMD} $${_file#$${file}} | ${SED} -e 's/^://' -e 's/,/ /g'` ; \
+ if [ ! -f $$file -a ! -f `${BASENAME} $$file` ]; then \
+ if [ ! -z "$$select" ] ; then \
+ __PATCH_SITES_TMP= ; \
+ for group in $$select; do \
+ if [ ! -z \$${_PATCH_SITES_$${group}} ] ; then \
+ eval ___PATCH_SITES_TMP=\$${_PATCH_SITES_$${group}} ; \
+ __PATCH_SITES_TMP="$${__PATCH_SITES_TMP} $${___PATCH_SITES_TMP}" ; \
+ fi \
+ done; \
+ ___PATCH_SITES_TMP= ; \
+ SORTED_PATCH_SITES_CMD_TMP="${ECHO_CMD} ${_MASTER_SITE_OVERRIDE} `${ECHO_CMD} $${__PATCH_SITES_TMP} | ${AWK} '${MASTER_SORT_AWK:S|\\|\\\\|g}'` ${_MASTER_SITE_BACKUP}" ; \
+ else \
+ SORTED_PATCH_SITES_CMD_TMP="${SORTED_PATCH_SITES_DEFAULT_CMD}" ; \
+ fi ; \
+ for site in `eval $$SORTED_PATCH_SITES_CMD_TMP ${_RANDOMIZE_SITES}`; do \
+ DIR=${DIST_SUBDIR}; \
+ CKSIZE=`${GREP} "^SIZE ($${DIR:+$$DIR/}$$file)" ${MD5_FILE} | ${AWK} '{print $$4}'`; \
+ case $${file} in \
+ */*) args="-o $${file} $${site}$${file}";; \
+ *) args=$${site}$${file};; \
+ esac; \
+ ${ECHO_CMD} -n ${SETENV} ${FETCH_ENV} ${FETCH_CMD} ${FETCH_BEFORE_ARGS} $${args} "${FETCH_AFTER_ARGS}" '|| ' ; \
+ done; \
+ ${ECHO_CMD} "${ECHO_CMD} $${file} not fetched" ; \
+ fi \
+ done)
+.endif
+.endif
+
+# Generates patches.
+
+update-patches:
+ @toedit=`PATCH_WRKSRC=${PATCH_WRKSRC} \
+ PATCHDIR=${PATCHDIR} \
+ PATCH_LIST=${PATCHDIR}/patch-* \
+ DIFF_ARGS=${DIFF_ARGS} \
+ DISTORIG=${DISTORIG} \
+ ${SH} ${PORTSDIR}/Tools/scripts/update-patches`; \
+ case $$toedit in "");; \
+ *) ${ECHO_CMD} -n 'edit patches: '; read i; \
+ cd ${PATCHDIR} && $${VISUAL:-$${EDIT:-/usr/bin/vi}} $$toedit;; esac
+
+# Checksumming utilities
+
+check-checksum-algorithms:
+ @ \
+ ${checksum_init} \
+ \
+ for alg in ${CHECKSUM_ALGORITHMS:U}; do \
+ eval alg_executable=\$$$$alg; \
+ if [ -z "$$alg_executable" ]; then \
+ ${ECHO_CMD} "Checksum algorithm $$alg: Couldn't find the executable."; \
+ ${ECHO_CMD} "Set $$alg=/path/to/$$alg in /etc/make.conf and try again."; \
+ exit 1; \
+ fi; \
+ done; \
+
+checksum_init=\
+ SHA256=${SHA256}; \
+ MD5=${MD5};
+
+.if !target(makesum)
+makesum: check-checksum-algorithms
+ @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} fetch NO_CHECKSUM=yes \
+ DISABLE_SIZE=yes
+ @if [ -f ${MD5_FILE} ]; then ${CAT} /dev/null > ${MD5_FILE}; fi
+ @( \
+ cd ${DISTDIR}; \
+ \
+ ${checksum_init} \
+ \
+ for file in ${_CKSUMFILES}; do \
+ for alg in ${CHECKSUM_ALGORITHMS:U}; do \
+ eval alg_executable=\$$$$alg; \
+ \
+ if [ $$alg_executable != "NO" ]; then \
+ $$alg_executable $$file >> ${MD5_FILE}; \
+ fi; \
+ done; \
+ if [ -z "${NO_SIZE}" ]; then \
+ ${ECHO_CMD} "SIZE ($$file) = "`${LS} -ALln $$file | ${AWK} '{print $$5}'` >> ${MD5_FILE}; \
+ fi; \
+ done \
+ )
+ @for file in ${_IGNOREFILES}; do \
+ for alg in ${CHECKSUM_ALGORITHMS:U}; do \
+ ${ECHO_CMD} "$$alg ($$file) = IGNORE" >> ${MD5_FILE}; \
+ done; \
+ done
+.endif
+
+.if !target(checksum)
+checksum: fetch check-checksum-algorithms
+ @ \
+ \
+ ${checksum_init} \
+ \
+ if [ -f ${MD5_FILE} ]; then \
+ ( cd ${DISTDIR}; OK=""; \
+ for file in ${_CKSUMFILES}; do \
+ pattern="`${ECHO_CMD} $$file | ${SED} -e 's/\./\\\\./g'`"; \
+ \
+ ignored="true"; \
+ for alg in ${CHECKSUM_ALGORITHMS:U}; do \
+ ignore="false"; \
+ eval alg_executable=\$$$$alg; \
+ \
+ if [ $$alg_executable != "NO" ]; then \
+ MKSUM=`$$alg_executable < $$file`; \
+ CKSUM=`${GREP} "^$$alg ($$pattern)" ${MD5_FILE} | ${AWK} '{print $$4}'`; \
+ else \
+ ignore="true"; \
+ fi; \
+ \
+ if [ $$ignore = "false" -a -z "$$CKSUM" ]; then \
+ ${ECHO_MSG} "=> No $$alg checksum recorded for $$file."; \
+ ignore="true"; \
+ fi; \
+ \
+ if [ "$$CKSUM" = "IGNORE" ]; then \
+ ${ECHO_MSG} "=> $$alg Checksum for $$file is set to IGNORE in distinfo file even though"; \
+ ${ECHO_MSG} " the file is not in the "'$$'"{IGNOREFILES} list."; \
+ ignore="true"; \
+ OK=${FALSE}; \
+ fi; \
+ \
+ if [ $$ignore = "false" ]; then \
+ match="false"; \
+ for chksum in $$CKSUM; do \
+ if [ "$$chksum" = "$$MKSUM" ]; then \
+ match="true"; \
+ break; \
+ fi; \
+ done; \
+ if [ $$match = "true" ]; then \
+ ${ECHO_MSG} "=> $$alg Checksum OK for $$file."; \
+ ignored="false"; \
+ else \
+ ${ECHO_MSG} "=> $$alg Checksum mismatch for $$file."; \
+ refetchlist="$$refetchlist$$file "; \
+ OK="$${OK:-retry}"; \
+ ignored="false"; \
+ fi; \
+ fi; \
+ done; \
+ \
+ if [ $$ignored = "true" ]; then \
+ ${ECHO_MSG} "=> No suitable checksum found for $$file."; \
+ OK="${FALSE}"; \
+ fi; \
+ \
+ done; \
+ \
+ for file in ${_IGNOREFILES}; do \
+ pattern="`${ECHO_CMD} $$file | ${SED} -e 's/\./\\\\./g'`"; \
+ \
+ ignored="true"; \
+ for alg in ${CHECKSUM_ALGORITHMS:U}; do \
+ ignore="false"; \
+ eval alg_executable=\$$$$alg; \
+ \
+ if [ $$alg_executable != "NO" ]; then \
+ CKSUM=`${GREP} "^$$alg ($$pattern)" ${MD5_FILE} | ${AWK} '{print $$4}'`; \
+ else \
+ ignore="true"; \
+ fi; \
+ \
+ if [ $$ignore = "false" ]; then \
+ if [ -z "$$CKSUM" ]; then \
+ ${ECHO_MSG} "=> No $$alg checksum for $$file recorded (expected IGNORE)"; \
+ OK="false"; \
+ elif [ $$CKSUM != "IGNORE" ]; then \
+ ${ECHO_MSG} "=> $$alg Checksum for $$file is not set to IGNORE in distinfo file even though"; \
+ ${ECHO_MSG} " the file is in the "'$$'"{IGNOREFILES} list."; \
+ OK="false"; \
+ else \
+ ignored="false"; \
+ fi; \
+ fi; \
+ done; \
+ \
+ if [ $$ignored = "true" ]; then \
+ ${ECHO_MSG} "=> No suitable checksum found for $$file."; \
+ OK="${FALSE}"; \
+ fi; \
+ \
+ done; \
+ \
+ if [ "$${OK:=true}" = "retry" ] && [ ${FETCH_REGET} -gt 0 ]; then \
+ ${ECHO_MSG} "===> Refetch for ${FETCH_REGET} more times files: $$refetchlist"; \
+ if ( cd ${.CURDIR} && \
+ ${MAKE} ${.MAKEFLAGS} FORCE_FETCH="$$refetchlist" FETCH_REGET="`${EXPR} ${FETCH_REGET} - 1`" fetch); then \
+ if ( cd ${.CURDIR} && \
+ ${MAKE} ${.MAKEFLAGS} FETCH_REGET="`${EXPR} ${FETCH_REGET} - 1`" checksum ); then \
+ OK="true"; \
+ fi; \
+ fi; \
+ fi ; \
+ \
+ if [ "$$OK" != "true" -a ${FETCH_REGET} -eq 0 ]; then \
+ ${ECHO_MSG} "===> Giving up on fetching files: $$refetchlist"; \
+ ${ECHO_MSG} "Make sure the Makefile and distinfo file (${MD5_FILE})"; \
+ ${ECHO_MSG} "are up to date. If you are absolutely sure you want to override this"; \
+ ${ECHO_MSG} "check, type \"make NO_CHECKSUM=yes [other args]\"."; \
+ exit 1; \
+ fi; \
+ if [ "$$OK" != "true" ]; then \
+ exit 1; \
+ fi \
+ ); \
+ elif [ -n "${_CKSUMFILES:M*}" ]; then \
+ ${ECHO_MSG} "=> No checksum file (${MD5_FILE})."; \
+ fi
+.endif
+
+################################################################
+# The special package-building targets
+# You probably won't need to touch these
+################################################################
+
+# Nobody should want to override this unless PKGNAME is simply bogus.
+
+.if !target(package-name)
+package-name:
+ @${ECHO_CMD} ${PKGNAME}
+.endif
+
+# Build a package but don't check the package cookie
+
+.if !target(repackage)
+repackage: pre-repackage package
+
+pre-repackage:
+ @${RM} -f ${PACKAGE_COOKIE}
+.endif
+
+# Build a package but don't check the cookie for installation, also don't
+# install package cookie
+
+.if !target(package-noinstall)
+package-noinstall:
+ @${MKDIR} ${WRKDIR}
+ @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} pre-package \
+ pre-package-script do-package post-package-script
+ @${RM} -f ${TMPPLIST}
+ -@${RMDIR} ${WRKDIR}
+.endif
+
+################################################################
+# Dependency checking
+################################################################
+
+.if !target(depends)
+depends: extract-depends patch-depends lib-depends misc-depends fetch-depends build-depends run-depends
+
+.if defined(ALWAYS_BUILD_DEPENDS)
+_DEPEND_ALWAYS= 1
+.else
+_DEPEND_ALWAYS= 0
+.endif
+
+.for deptype in EXTRACT PATCH FETCH BUILD RUN
+${deptype:L}-depends:
+.if defined(${deptype}_DEPENDS)
+.if !defined(NO_DEPENDS)
+ @for i in `${ECHO_CMD} "${${deptype}_DEPENDS}"`; do \
+ prog=`${ECHO_CMD} $$i | ${SED} -e 's/:.*//'`; \
+ dir=`${ECHO_CMD} $$i | ${SED} -e 's/[^:]*://'`; \
+ if ${EXPR} "$$dir" : '.*:' > /dev/null; then \
+ target=`${ECHO_CMD} $$dir | ${SED} -e 's/.*://'`; \
+ dir=`${ECHO_CMD} $$dir | ${SED} -e 's/:.*//'`; \
+ else \
+ target="${DEPENDS_TARGET}"; \
+ depends_args="${DEPENDS_ARGS}"; \
+ fi; \
+ if ${EXPR} "$$prog" : \\/ >/dev/null; then \
+ if [ -e "$$prog" ]; then \
+ if [ "$$prog" = "${NONEXISTENT}" ]; then \
+ ${ECHO_MSG} "Error: ${NONEXISTENT} exists. Please remove it, and restart the build."; \
+ ${FALSE}; \
+ else \
+ ${ECHO_MSG} "===> ${PKGNAME} depends on file: $$prog - found"; \
+ if [ ${_DEPEND_ALWAYS} = 1 ]; then \
+ ${ECHO_MSG} " (but building it anyway)"; \
+ notfound=1; \
+ else \
+ notfound=0; \
+ fi; \
+ fi; \
+ else \
+ ${ECHO_MSG} "===> ${PKGNAME} depends on file: $$prog - not found"; \
+ notfound=1; \
+ fi; \
+ else \
+ case $${prog} in \
+ *\>*|*\<*|*=*) pkg=yes;; \
+ *) pkg="";; \
+ esac; \
+ if [ "$$pkg" != "" ]; then \
+ if ${PKG_INFO} "$$prog" > /dev/null 2>&1 ; then \
+ ${ECHO_MSG} "===> ${PKGNAME} depends on package: $$prog - found"; \
+ if [ ${_DEPEND_ALWAYS} = 1 ]; then \
+ ${ECHO_MSG} " (but building it anyway)"; \
+ notfound=1; \
+ else \
+ notfound=0; \
+ fi; \
+ else \
+ ${ECHO_MSG} "===> ${PKGNAME} depends on package: $$prog - not found"; \
+ notfound=1; \
+ fi; \
+ elif ${WHICH} "$$prog" > /dev/null 2>&1 ; then \
+ ${ECHO_MSG} "===> ${PKGNAME} depends on executable: $$prog - found"; \
+ if [ ${_DEPEND_ALWAYS} = 1 ]; then \
+ ${ECHO_MSG} " (but building it anyway)"; \
+ notfound=1; \
+ else \
+ notfound=0; \
+ fi; \
+ else \
+ ${ECHO_MSG} "===> ${PKGNAME} depends on executable: $$prog - not found"; \
+ notfound=1; \
+ fi; \
+ fi; \
+ if [ $$notfound != 0 ]; then \
+ ${ECHO_MSG} "===> Verifying $$target for $$prog in $$dir"; \
+ if [ ! -d "$$dir" ]; then \
+ ${ECHO_MSG} " => No directory for $$prog. Skipping.."; \
+ else \
+ if [ X${USE_PACKAGE_DEPENDS} != "X" ]; then \
+ subpkgfile=`(cd $$dir; ${MAKE} $$depends_args -V PKGFILE)`; \
+ if [ -r "$${subpkgfile}" -a "$$target" = "${DEPENDS_TARGET}" ]; then \
+ ${ECHO_MSG} "===> Installing existing package $${subpkgfile}"; \
+ ${PKG_ADD} $${subpkgfile}; \
+ else \
+ (cd $$dir; ${MAKE} -DINSTALLS_DEPENDS $$target $$depends_args) ; \
+ fi; \
+ else \
+ (cd $$dir; ${MAKE} -DINSTALLS_DEPENDS $$target $$depends_args) ; \
+ fi ; \
+ ${ECHO_MSG} "===> Returning to build of ${PKGNAME}"; \
+ fi; \
+ fi; \
+ done
+.endif
+.else
+ @${DO_NADA}
+.endif
+.endfor
+
+lib-depends:
+.if defined(LIB_DEPENDS) && !defined(NO_DEPENDS)
+ @for i in ${LIB_DEPENDS}; do \
+ lib=$${i%%:*}; \
+ case $$lib in \
+ *.*.*) pattern="`${ECHO_CMD} $$lib | ${SED} -e 's/\./\\\\./g'`" ;;\
+ *.*) pattern="$${lib%%.*}\.$${lib#*.}" ;;\
+ *) pattern="$$lib" ;;\
+ esac; \
+ dir=$${i#*:}; \
+ target=$${i##*:}; \
+ if ${TEST} $$dir = $$target; then \
+ target="${DEPENDS_TARGET}"; \
+ depends_args="${DEPENDS_ARGS}"; \
+ else \
+ dir=$${dir%%:*}; \
+ fi; \
+ ${ECHO_MSG} -n "===> ${PKGNAME} depends on shared library: $$lib"; \
+ if ${LDCONFIG} -r | ${GREP} -vwF -e "${PKGCOMPATDIR}" | ${GREP} -qwE -e "-l$$pattern"; then \
+ ${ECHO_MSG} " - found"; \
+ if [ ${_DEPEND_ALWAYS} = 1 ]; then \
+ ${ECHO_MSG} " (but building it anyway)"; \
+ notfound=1; \
+ else \
+ notfound=0; \
+ fi; \
+ else \
+ ${ECHO_MSG} " - not found"; \
+ notfound=1; \
+ fi; \
+ if [ $$notfound != 0 ]; then \
+ ${ECHO_MSG} "===> Verifying $$target for $$lib in $$dir"; \
+ if [ ! -d "$$dir" ]; then \
+ ${ECHO_MSG} " => No directory for $$lib. Skipping.."; \
+ else \
+ if [ X${USE_PACKAGE_DEPENDS} != "X" ]; then \
+ subpkgfile=`(cd $$dir; ${MAKE} $$depends_args -V PKGFILE)`; \
+ if [ -r "$${subpkgfile}" -a "$$target" = "${DEPENDS_TARGET}" ]; then \
+ ${ECHO_MSG} "===> Installing existing package $${subpkgfile}"; \
+ ${PKG_ADD} $${subpkgfile}; \
+ else \
+ (cd $$dir; ${MAKE} -DINSTALLS_DEPENDS $$target $$depends_args) ; \
+ fi; \
+ else \
+ (cd $$dir; ${MAKE} -DINSTALLS_DEPENDS $$target $$depends_args) ; \
+ fi ; \
+ ${ECHO_MSG} "===> Returning to build of ${PKGNAME}"; \
+ if ! ${LDCONFIG} -r | ${GREP} -vwF -e "${PKGCOMPATDIR}" | ${GREP} -qwE -e "-l$$pattern"; then \
+ ${ECHO_MSG} "Error: shared library \"$$lib\" does not exist"; \
+ ${FALSE}; \
+ fi; \
+ fi; \
+ fi; \
+ done
+.endif
+
+misc-depends:
+.if defined(DEPENDS)
+.if !defined(NO_DEPENDS)
+ @for dir in ${DEPENDS}; do \
+ if ${EXPR} "$$dir" : '.*:' > /dev/null; then \
+ target=`${ECHO_CMD} $$dir | ${SED} -e 's/.*://'`; \
+ dir=`${ECHO_CMD} $$dir | ${SED} -e 's/:.*//'`; \
+ else \
+ target="${DEPENDS_TARGET}"; \
+ depends_args="${DEPENDS_ARGS}"; \
+ fi; \
+ ${ECHO_MSG} "===> ${PKGNAME} depends on: $$dir"; \
+ ${ECHO_MSG} "===> Verifying $$target for $$dir"; \
+ if [ ! -d $$dir ]; then \
+ ${ECHO_MSG} " => No directory for $$dir. Skipping.."; \
+ else \
+ (cd $$dir; ${MAKE} $$target $$depends_args) ; \
+ fi \
+ done
+ @${ECHO_MSG} "===> Returning to build of ${PKGNAME}"
+.endif
.else
+ @${DO_NADA}
+.endif
+
+.endif
+
+# Dependency lists: both build and runtime, recursive. Print out directory names.
+
+all-depends-list:
+.if defined(EXTRACT_DEPENDS) || defined(PATCH_DEPENDS) || defined(FETCH_DEPENDS) || defined(BUILD_DEPENDS) || defined(LIB_DEPENDS) || defined(RUN_DEPENDS) || defined(DEPENDS)
+ @${ALL-DEPENDS-LIST}
+.endif
+
+ALL-DEPENDS-LIST= \
+ checked="${PARENT_CHECKED}"; \
+ for dir in $$(${ECHO_CMD} "${EXTRACT_DEPENDS} ${PATCH_DEPENDS} ${FETCH_DEPENDS} ${BUILD_DEPENDS} ${LIB_DEPENDS} ${RUN_DEPENDS}" | ${SED} -e 'y/ /\n/' | ${CUT} -f 2 -d ':') $$(${ECHO_CMD} ${DEPENDS} | ${SED} -e 'y/ /\n/' | ${CUT} -f 1 -d ':'); do \
+ if [ -d $$dir ]; then \
+ if (${ECHO_CMD} $$checked | ${GREP} -qwv "$$dir"); then \
+ child=$$(cd $$dir; ${MAKE} PARENT_CHECKED="$$checked" all-depends-list); \
+ for d in $$child; do ${ECHO_CMD} $$d; done; \
+ ${ECHO_CMD} $$dir; \
+ checked="$$dir $$child $$checked"; \
+ fi; \
+ else \
+ ${ECHO_MSG} "${PKGNAME}: \"$$dir\" non-existent -- dependency list incomplete" >&2; \
+ fi; \
+ done | ${SORT} -u
+
+.if !target(clean-depends)
+clean-depends:
+ @for dir in $$(${ALL-DEPENDS-LIST}); do \
+ (cd $$dir; ${MAKE} NOCLEANDEPENDS=yes clean); \
+ done
+.endif
+
+.if !target(deinstall-depends)
+deinstall-depends:
+ @for dir in $$(${ALL-DEPENDS-LIST}); do \
+ (cd $$dir; ${MAKE} deinstall); \
+ done
+.endif
+
+.if !target(fetch-recursive)
+fetch-recursive:
+ @${ECHO_MSG} "===> Fetching all distfiles for ${PKGNAME} and dependencies"
+ @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \
+ (cd $$dir; ${MAKE} fetch); \
+ done
+.endif
+
+.if !target(fetch-recursive-list)
+fetch-recursive-list:
+ @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \
+ (cd $$dir; ${MAKE} fetch-list); \
+ done
+.endif
+
+.if !target(fetch-required)
+fetch-required: fetch
+ @${ECHO_MSG} "===> Fetching all required distfiles for ${PKGNAME} and dependencies"
+.for deptype in EXTRACT PATCH FETCH BUILD RUN
+.if defined(${deptype}_DEPENDS)
+.if !defined(NO_DEPENDS)
+ @for i in ${${deptype}_DEPENDS}; do \
+ prog=`${ECHO_CMD} $$i | ${CUT} -f 1 -d ':'`; \
+ dir=`${ECHO_CMD} $$i | ${CUT} -f 2-999 -d ':'`; \
+ if ${EXPR} "$$dir" : '.*:' > /dev/null; then \
+ dir=`${ECHO_CMD} $$dir | ${CUT} -f 1 -d ':'`; \
+ if ${EXPR} "$$prog" : \\/ >/dev/null; then \
+ if [ ! -e "$$prog" ]; then \
+ (cd $$dir; ${MAKE} fetch); \
+ fi; \
+ fi; \
+ else \
+ (cd $$dir; \
+ tmp=`${MAKE} -V PKGNAME`; \
+ if [ ! -d ${PKG_DBDIR}/$${tmp} ]; then \
+ ${MAKE} fetch; \
+ fi ); \
+ fi; \
+ done
+.endif
+.endif
+.endfor
+.endif
+
+.if !target(fetch-required-list)
+fetch-required-list: fetch-list
+.for deptype in EXTRACT PATCH FETCH BUILD RUN
+.if defined(${deptype}_DEPENDS)
+.if !defined(NO_DEPENDS)
+ @for i in ${${deptype}_DEPENDS}; do \
+ prog=`${ECHO_CMD} $$i | ${CUT} -f 1 -d ':'`; \
+ dir=`${ECHO_CMD} $$i | ${CUT} -f 2-999 -d ':'`; \
+ if ${EXPR} "$$dir" : '.*:' > /dev/null; then \
+ dir=`${ECHO_CMD} $$dir | ${CUT} -f 1 -d ':'`; \
+ if ${EXPR} "$$prog" : \\/ >/dev/null; then \
+ if [ ! -e "$$prog" ]; then \
+ (cd $$dir; ${MAKE} fetch-list); \
+ fi; \
+ fi; \
+ else \
+ (cd $$dir; \
+ tmp=`${MAKE} -V PKGNAME`; \
+ if [ ! -d ${PKG_DBDIR}/$${tmp} ]; then \
+ ${MAKE} fetch-list; \
+ fi ); \
+ fi; \
+ done
+.endif
+.endif
+.endfor
+.endif
+
+.if !target(checksum-recursive)
+checksum-recursive:
+ @${ECHO_MSG} "===> Fetching and checking checksums for ${PKGNAME} and dependencies"
+ @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \
+ (cd $$dir; ${MAKE} checksum); \
+ done
+.endif
+
+# Dependency lists: build and runtime. Print out directory names.
+
+build-depends-list:
+.if defined(EXTRACT_DEPENDS) || defined(PATCH_DEPENDS) || defined(FETCH_DEPENDS) || defined(BUILD_DEPENDS) || defined(LIB_DEPENDS) || defined(DEPENDS)
+ @${BUILD-DEPENDS-LIST}
+.endif
+
+BUILD-DEPENDS-LIST= \
+ for dir in $$(${ECHO_CMD} "${EXTRACT_DEPENDS} ${PATCH_DEPENDS} ${FETCH_DEPENDS} ${BUILD_DEPENDS} ${LIB_DEPENDS}" | ${TR} '\040' '\012' | ${SED} -e 's/^[^:]*://' -e 's/:.*//' | ${SORT} -u) $$(${ECHO_CMD} ${DEPENDS} | ${TR} '\040' '\012' | ${SED} -e 's/:.*//' | ${SORT} -u); do \
+ if [ -d $$dir ]; then \
+ ${ECHO_CMD} $$dir; \
+ else \
+ ${ECHO_MSG} "${PKGNAME}: \"$$dir\" non-existent -- dependency list incomplete" >&2; \
+ fi; \
+ done | ${SORT} -u
+
+run-depends-list:
+.if defined(LIB_DEPENDS) || defined(RUN_DEPENDS) || defined(DEPENDS)
+ @${RUN-DEPENDS-LIST}
+.endif
+
+RUN-DEPENDS-LIST= \
+ for dir in $$(${ECHO_CMD} "${LIB_DEPENDS} ${RUN_DEPENDS}" | ${SED} -e 'y/ /\n/' | ${CUT} -f 2 -d ':' | ${SORT} -u) $$(${ECHO_CMD} ${DEPENDS} | ${SED} -e 'y/ /\n/' | ${CUT} -f 1 -d ':' | ${SORT} -u); do \
+ if [ -d $$dir ]; then \
+ ${ECHO_CMD} $$dir; \
+ else \
+ ${ECHO_MSG} "${PKGNAME}: \"$$dir\" non-existent -- dependency list incomplete" >&2; \
+ fi; \
+ done | ${SORT} -u
-.include "${PORTSDIR}/Mk/bsd.port.mk"
+# Package (recursive runtime) dependency list. Print out both directory names
+# and package names.
+package-depends-list:
+.if defined(CHILD_DEPENDS) || defined(LIB_DEPENDS) || defined(RUN_DEPENDS) || defined(DEPENDS)
+ @${PACKAGE-DEPENDS-LIST}
.endif
+
+PACKAGE-DEPENDS-LIST?= \
+ if [ "${CHILD_DEPENDS}" ]; then \
+ installed=$$(${PKG_INFO} -qO ${PKGORIGIN} 2>/dev/null || \
+ ${TRUE}); \
+ if [ "$$installed" ]; then \
+ break; \
+ fi; \
+ if [ -z "$$installed" ]; then \
+ installed="${PKGNAME}"; \
+ fi; \
+ for pkgname in $$installed; do \
+ ${ECHO_CMD} "$$pkgname ${.CURDIR} ${PKGORIGIN}"; \
+ done; \
+ fi; \
+ checked="${PARENT_CHECKED}"; \
+ for dir in $$(${ECHO_CMD} "${LIB_DEPENDS} ${RUN_DEPENDS}" | ${SED} -e 'y/ /\n/' | ${CUT} -f 2 -d ':') $$(${ECHO_CMD} ${DEPENDS} | ${SED} -e 'y/ /\n/' | ${CUT} -f 1 -d ':'); do \
+ dir=$$(${REALPATH} $$dir); \
+ if [ -d $$dir ]; then \
+ if (${ECHO_CMD} $$checked | ${GREP} -qwv "$$dir"); then \
+ childout=$$(cd $$dir; ${MAKE} CHILD_DEPENDS=yes PARENT_CHECKED="$$checked" package-depends-list); \
+ set -- $$childout; \
+ childdir=""; \
+ while [ $$\# != 0 ]; do \
+ childdir="$$childdir $$2"; \
+ ${ECHO_CMD} "$$1 $$2 $$3"; \
+ shift 3; \
+ done; \
+ checked="$$dir $$childdir $$checked"; \
+ fi; \
+ else \
+ ${ECHO_MSG} "${PKGNAME}: \"$$dir\" non-existent -- dependency list incomplete" >&2; \
+ fi; \
+ done
+
+# Print out package names.
+
+package-depends:
+ @${PACKAGE-DEPENDS-LIST} | ${AWK} '{print $$1":"$$3}'
+
+# Build packages for port and dependencies
+
+package-recursive: package
+ @for dir in $$(${ALL-DEPENDS-LIST}); do \
+ (cd $$dir; ${MAKE} package-noinstall); \
+ done
+
+################################################################
+# Everything after here are internal targets and really
+# shouldn't be touched by anybody but the release engineers.
+################################################################
+
+# This target generates an index entry suitable for aggregation into
+# a large index. Format is:
+#
+# distribution-name|port-path|installation-prefix|comment| \
+# description-file|maintainer|categories|extract-depends| \
+# patch-depends|fetch-depends|build-depends|run-depends|www site
+
+.if !target(describe)
+describe:
+ @${ECHO_CMD} -n "${PKGNAME}|${.CURDIR}|${PREFIX}|"
+.if defined(COMMENT)
+ @${ECHO_CMD} -n ${COMMENT:Q}
+.else
+ @${ECHO_CMD} -n '** No Description'
+.endif
+ @perl -e ' \
+ if ( -f q{${DESCR}} ) { \
+ print q{|${DESCR}}; \
+ } else { \
+ print q{|/dev/null}; \
+ } \
+ print q{|${MAINTAINER}|${CATEGORIES}|}; \
+ @edirs = map((split /:/)[1], split(q{ }, q{${EXTRACT_DEPENDS}})); \
+ @pdirs = map((split /:/)[1], split(q{ }, q{${PATCH_DEPENDS}})); \
+ @fdirs = map((split /:/)[1], split(q{ }, q{${FETCH_DEPENDS}})); \
+ @bdirs = map((split /:/)[1], split(q{ }, q{${BUILD_DEPENDS}})); \
+ @rdirs = map((split /:/)[1], split(q{ }, q{${RUN_DEPENDS}})); \
+ @ddirs = map((split /:/)[0], split(q{ }, q{${DEPENDS}})); \
+ @ldirs = map((split /:/)[1], split(q{ }, q{${LIB_DEPENDS}})); \
+ for my $$i (\@edirs, \@pdirs, \@fdirs, \@bdirs, \@rdirs, \@ddirs, \@ldirs) { \
+ my @dirs = @$$i; \
+ @$$i = (); \
+ for (@dirs) { \
+ if (-d $$_) { \
+ push @$$i, $$_; \
+ } else { \
+ print STDERR qq{${PKGNAME}: \"$$_\" non-existent -- dependency list incomplete\n}; \
+ exit(1); \
+ } \
+ } \
+ } \
+ for (@edirs, @ddirs) { \
+ $$xe{$$_} = 1; \
+ } \
+ print join(q{ }, sort keys %xe), q{|}; \
+ for (@pdirs, @ddirs) { \
+ $$xp{$$_} = 1; \
+ } \
+ print join(q{ }, sort keys %xp), q{|}; \
+ for (@fdirs, @ddirs) { \
+ $$xf{$$_} = 1; \
+ } \
+ print join(q{ }, sort keys %xf), q{|}; \
+ for (@bdirs, @ddirs, @ldirs) { \
+ $$xb{$$_} = 1; \
+ } \
+ print join(q{ }, sort keys %xb), q{|}; \
+ for (@rdirs, @ddirs, @ldirs) { \
+ $$xr{$$_} = 1; \
+ } \
+ print join(q{ }, sort keys %xr), q{|}; \
+ if (open(DESCR, q{${DESCR}})) { \
+ while (<DESCR>) { \
+ if (/^WWW:\s+(\S+)/) { \
+ print $$1; \
+ last; \
+ } \
+ } \
+ } \
+ print qq{\n};'
+.endif
+
+www-site:
+.if exists(${DESCR})
+ @${GREP} '^WWW:[ ]' ${DESCR} | ${AWK} '{print $$2}' | ${HEAD} -1
+.else
+ @${ECHO_CMD}
+.endif
+
+.if !target(readmes)
+readmes: readme
+.endif
+
+.if !target(readme)
+readme:
+ @${RM} -f ${.CURDIR}/README.html
+ @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} ${.CURDIR}/README.html
+.endif
+
+${.CURDIR}/README.html:
+ @${ECHO_MSG} "===> Creating README.html for ${PKGNAME}"
+ @__softMAKEFLAGS='${__softMAKEFLAGS:S/'/'\''/g}'; \
+ ${SED} -e 's|%%PORT%%|'$$(${ECHO_CMD} ${.CURDIR} | \
+ ${SED} -e 's|.*/\([^/]*/[^/]*\)$$|\1|')'|g' \
+ -e 's|%%PKG%%|${PKGNAME}|g' \
+ -e 's|%%COMMENT%%|'"$$(${ECHO_CMD} ${COMMENT:Q})"'|' \
+ -e '/%%COMMENT%%/d' \
+ -e 's|%%DESCR%%|'"$$(${ECHO_CMD} ${DESCR} | \
+ ${SED} -e 's|${.CURDIR}/||')"'|' \
+ -e 's|%%EMAIL%%|'"$$(${ECHO_CMD} "${MAINTAINER}" | \
+ ${SED} -e 's/([^)]*)//;s/.*<//;s/>.*//')"'|g' \
+ -e 's|%%MAINTAINER%%|${MAINTAINER}|g' \
+ -e 's|%%WEBSITE%%|'"$$(cd ${.CURDIR} && eval ${MAKE} \
+ $${__softMAKEFLAGS} pretty-print-www-site)"'|' \
+ -e 's|%%BUILD_DEPENDS%%|'"$$(cd ${.CURDIR} && eval ${MAKE} \
+ $${__softMAKEFLAGS} pretty-print-build-depends-list)"'|' \
+ -e 's|%%RUN_DEPENDS%%|'"$$(cd ${.CURDIR} && eval ${MAKE} \
+ $${__softMAKEFLAGS} pretty-print-run-depends-list)"'|' \
+ -e 's|%%TOP%%|'"$$(${ECHO_CMD} ${CATEGORIES} | \
+ ${SED} -e 's| .*||' -e 's|[^/]*|..|g')"'/..|' \
+ ${TEMPLATES}/README.port >> $@
+
+# The following two targets require an up-to-date INDEX in ${PORTSDIR}
+
+.if !target(pretty-print-build-depends-list)
+pretty-print-build-depends-list:
+.if defined(EXTRACT_DEPENDS) || defined(PATCH_DEPENDS) || \
+ defined(FETCH_DEPENDS) || defined(BUILD_DEPENDS) || \
+ defined(LIB_DEPENDS) || defined(DEPENDS)
+ @${ECHO_CMD} -n 'This port requires package(s) "'
+ @${ECHO_CMD} -n `${GREP} '^${PKGNAME}|' ${PORTSDIR}/${INDEXFILE} | ${AWK} -F\| '{print $$8;}'`
+ @${ECHO_CMD} '" to build.'
+.endif
+.endif
+
+.if !target(pretty-print-run-depends-list)
+pretty-print-run-depends-list:
+.if defined(RUN_DEPENDS) || defined(LIB_DEPENDS) || defined(DEPENDS)
+ @${ECHO_CMD} -n 'This port requires package(s) "'
+ @${ECHO_CMD} -n `${GREP} '^${PKGNAME}|' ${PORTSDIR}/${INDEXFILE} | ${AWK} -F\| '{print $$9;}'`
+ @${ECHO_CMD} '" to run.'
+.endif
+.endif
+
+_SUB_LIST_TEMP= ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/}
+.if !target(apply-slist)
+apply-slist:
+.if defined(SUB_FILES)
+.for file in ${SUB_FILES}
+.if !exists(${FILESDIR}/${file}.in)
+ @${ECHO_CMD} "** Missing ${FILESDIR}/${file}.in for ${PKGNAME}."; exit 1
+.else
+ @${SED} ${_SUB_LIST_TEMP} -e '/^@comment /d' ${FILESDIR}/${file}.in > ${WRKDIR}/${file}
+.endif
+.endfor
+.for i in pkg-message pkg-install pkg-deinstall pkg-req
+.if ${SUB_FILES:M${i}*}!=""
+${i:S/-//:U}= ${WRKDIR}/${SUB_FILES:M${i}*}
+.endif
+.endfor
+.endif
+.endif
+
+# Generate packing list. Also tests to make sure all required package
+# files exist.
+
+.if !target(generate-plist)
+generate-plist:
+ @${ECHO_MSG} "===> Generating temporary packing list"
+ @${MKDIR} `${DIRNAME} ${TMPPLIST}`
+ @if [ ! -f ${DESCR} ]; then ${ECHO_CMD} "** Missing pkg-descr for ${PKGNAME}."; exit 1; fi
+ @>${TMPPLIST}
+ @for file in ${PLIST_FILES}; do \
+ ${ECHO_CMD} $${file} | ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} >> ${TMPPLIST}; \
+ done
+ @for man in ${__MANPAGES}; do \
+ ${ECHO_CMD} $${man} >> ${TMPPLIST}; \
+ done
+.for _PREFIX in ${PREFIX}
+.if ${_TMLINKS:M${_PREFIX}*}x != x
+ @for i in ${_TMLINKS:M${_PREFIX}*:S|^${_PREFIX}/||}; do \
+ ${ECHO_CMD} "$$i" >> ${TMPPLIST}; \
+ done
+.endif
+.if ${_TMLINKS:N${_PREFIX}*}x != x
+ @${ECHO_CMD} @cwd / >> ${TMPPLIST}
+ @for i in ${_TMLINKS:N${_PREFIX}*:S|^/||}; do \
+ ${ECHO_CMD} "$$i" >> ${TMPPLIST}; \
+ done
+ @${ECHO_CMD} '@cwd ${PREFIX}' >> ${TMPPLIST}
+.endif
+ @for i in $$(${ECHO_CMD} ${__MANPAGES} ${_TMLINKS:M${_PREFIX}*:S|^${_PREFIX}/||} ' ' | ${SED} -E -e 's|man([1-9ln])/([^/ ]+) |cat\1/\2 |g'); do \
+ ${ECHO_CMD} "@unexec rm -f %D/$${i%.gz} %D/$${i%.gz}.gz" >> ${TMPPLIST}; \
+ done
+.endfor
+ @if [ -f ${PLIST} ]; then \
+ ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} ${PLIST} >> ${TMPPLIST}; \
+ fi
+.for dir in ${PLIST_DIRS}
+ @${ECHO_CMD} ${dir} | ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} | ${SED} -e 's,^,@dirrm ,' >> ${TMPPLIST}
+.endfor
+.if defined(INSTALLS_SHLIB) && !defined(INSTALL_AS_USER)
+ @${ECHO_CMD} "@exec ${LDCONFIG} -m ${LDCONFIG_PLIST}" >> ${TMPPLIST}
+ @${ECHO_CMD} "@unexec ${LDCONFIG} -R" >> ${TMPPLIST}
+.elif defined(INSTALLS_SHLIB)
+ @${ECHO_CMD} "@exec ${LDCONFIG} -m ${LDCONFIG_PLIST} || ${TRUE}" >> ${TMPPLIST}
+ @${ECHO_CMD} "@unexec ${LDCONFIG} -R || ${TRUE}" >> ${TMPPLIST}
+.endif
+.if !defined(NO_FILTER_SHLIBS)
+.if (${PORTOBJFORMAT} == "aout")
+ @${SED} -e 's,\(/lib.*\.so\.[0-9]*\)$$,\1.0,' ${TMPPLIST} > ${TMPPLIST}.tmp
+.else
+ @${SED} -e 's,\(/lib.*\.so\.[0-9]*\)\.[0-9]*$$,\1,' ${TMPPLIST} > ${TMPPLIST}.tmp
+.endif
+ @${MV} -f ${TMPPLIST}.tmp ${TMPPLIST}
+.endif
+.endif
+
+${TMPPLIST}:
+ @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} generate-plist
+
+.if !target(add-plist-docs)
+add-plist-docs:
+.if defined(PORTDOCS) && !defined(NOPORTDOCS)
+ @if ${EGREP} -qe '^@cw?d' ${TMPPLIST} && \
+ [ "`${SED} -En -e '/^@cw?d[ ]*/s,,,p' ${TMPPLIST} | ${TAIL} -n 1`" != "${PREFIX}" ]; then \
+ ${ECHO_CMD} "@cwd ${PREFIX}" >> ${TMPPLIST}; \
+ fi
+.for x in ${PORTDOCS}
+ @if ${ECHO_CMD} "${x}"| ${AWK} '$$1 ~ /(\*|\||\[|\]|\?|\{|\}|\$$)/ { exit 1};'; then \
+ if [ ! -e ${DOCSDIR}/${x} ]; then \
+ ${ECHO_CMD} ${DOCSDIR}/${x} | \
+ ${SED} -e 's,^${PREFIX}/,,' >> ${TMPPLIST}; \
+ fi;fi
+.endfor
+ @${FIND} -P ${PORTDOCS:S/^/${DOCSDIR}\//} ! -type d 2>/dev/null | \
+ ${SED} -ne 's,^${PREFIX}/,,p' >> ${TMPPLIST}
+ @${FIND} -P -d ${PORTDOCS:S/^/${DOCSDIR}\//} -type d 2>/dev/null | \
+ ${SED} -ne 's,^${PREFIX}/,@dirrm ,p' >> ${TMPPLIST}
+ @${ECHO_CMD} "@dirrm ${DOCSDIR:S,^${PREFIX}/,,}" >> ${TMPPLIST}
+.else
+ @${DO_NADA}
+.endif
+.endif
+
+.if !target(add-plist-info)
+add-plist-info:
+# Process GNU INFO files at package install/deinstall time
+.if defined(INFO)
+.for i in ${INFO}
+ install-info --quiet ${PREFIX}/${INFO_PATH}/$i.info ${PREFIX}/${INFO_PATH}/dir
+ @${ECHO_CMD} "@unexec install-info --delete %D/${INFO_PATH}/$i.info %D/${INFO_PATH}/dir" \
+ >> ${TMPPLIST}
+ @${LS} ${PREFIX}/${INFO_PATH}/$i.info* | ${SED} -e s:${PREFIX}/::g >> ${TMPPLIST}
+ @${ECHO_CMD} "@exec install-info %D/${INFO_PATH}/$i.info %D/${INFO_PATH}/dir" \
+ >> ${TMPPLIST}
+.endfor
+.if (${PREFIX} != "/usr")
+ @${ECHO_CMD} "@unexec if [ -f %D/${INFO_PATH}/dir ]; then if sed -e '1,/Menu:/d' %D/${INFO_PATH}/dir | grep -q '^[*] '; then true; else rm %D/${INFO_PATH}/dir; fi; fi" >> ${TMPPLIST}
+.if (${PREFIX} != ${LOCALBASE} && ${PREFIX} != ${X11BASE} && ${PREFIX} != ${LINUXBASE})
+ @${ECHO_CMD} "@unexec rmdir %D/info 2> /dev/null || true" >> ${TMPPLIST}
+.endif
+.endif
+.endif
+.endif
+
+# If we're installing into a non-standard PREFIX, we need to remove that directory at
+# deinstall-time
+.if !target(add-plist-post)
+add-plist-post:
+.if (${PREFIX} != ${LOCALBASE} && ${PREFIX} != ${X11BASE} && ${PREFIX} != ${LINUXBASE} && ${PREFIX} != "/usr")
+ @${ECHO_CMD} "@unexec rmdir %D 2> /dev/null || true" >> ${TMPPLIST}
+.else
+ @${DO_NADA}
+.endif
+.endif
+
+.if !target(install-rc-script)
+install-rc-script:
+.if defined(USE_RCORDER) || defined(USE_RC_SUBR) && ${USE_RC_SUBR:U} != "YES"
+.if defined(USE_RCORDER)
+ @${ECHO_CMD} "===> Installing early rcNG startup script(s)"
+ @${ECHO_CMD} "@cwd /" >> ${TMPPLIST}
+ @for i in ${USE_RCORDER}; do \
+ ${INSTALL_SCRIPT} ${WRKDIR}/$${i} /etc/rc.d/$${i%.sh}; \
+ ${ECHO_CMD} "etc/rc.d/$${i%.sh}" >> ${TMPPLIST}; \
+ done
+ @${ECHO_CMD} "@cwd ${PREFIX}" >> ${TMPPLIST}
+.endif
+.if defined(USE_RC_SUBR) && ${USE_RC_SUBR:U} != "YES"
+ @${ECHO_CMD} "===> Installing rcNG startup script(s)"
+ @${ECHO_CMD} "@cwd ${PREFIX}" >> ${TMPPLIST}
+ @for i in ${USE_RC_SUBR}; do \
+ ${INSTALL_SCRIPT} ${WRKDIR}/$${i} ${PREFIX}/etc/rc.d/$${i%.sh}.sh; \
+ ${ECHO_CMD} "etc/rc.d/$${i%.sh}.sh" >> ${TMPPLIST}; \
+ done
+.endif
+.else
+ @${DO_NADA}
+.endif
+.endif
+
+# Compress (or uncompress) and symlink manpages.
+.if !target(compress-man)
+compress-man:
+.if defined(_MANPAGES) || defined(_MLINKS)
+.if ${MANCOMPRESSED} == yes && defined(NOMANCOMPRESS)
+ @${ECHO_MSG} "===> Uncompressing manual pages for ${PKGNAME}"
+ @_manpages='${_MANPAGES:S/'/'\''/g}' && [ "$${_manpages}" != "" ] && ( eval ${GUNZIP_CMD} $${_manpages} ) || ${TRUE}
+.elif ${MANCOMPRESSED} == no && !defined(NOMANCOMPRESS)
+ @${ECHO_MSG} "===> Compressing manual pages for ${PKGNAME}"
+ @_manpages='${_MANPAGES:S/'/'\''/g}' && [ "$${_manpages}" != "" ] && ( eval ${GZIP_CMD} $${_manpages} ) || ${TRUE}
+.endif
+.if defined(_MLINKS)
+ @set ${_MLINKS}; \
+ while :; do \
+ [ $$# -eq 0 ] && break || ${TRUE}; \
+ ${RM} -f $${2%.gz}; ${RM} -f $$2.gz; \
+ ${LN} -fs `${ECHO_CMD} $$1 $$2 | ${AWK} '{ \
+ z=split($$1, a, /\//); x=split($$2, b, /\//); \
+ while (a[i] == b[i]) i++; \
+ for (q=i; q<x; q++) printf "../"; \
+ for (; i<z; i++) printf a[i] "/"; printf a[z]; }'` $$2; \
+ shift; shift; \
+ done
+.endif
+.else
+ @${DO_NADA}
+.endif
+.endif
+
+# Fake installation of package so that user can pkg_delete it later.
+# Also, make sure that an installed port is recognized correctly in
+# accordance to the @pkgdep directive in the packing lists
+
+.if !target(fake-pkg)
+fake-pkg:
+.if !defined(NO_PKG_REGISTER)
+ @if [ ! -d ${PKG_DBDIR} ]; then ${RM} -f ${PKG_DBDIR}; ${MKDIR} ${PKG_DBDIR}; fi
+ @${RM} -f /tmp/${PKGNAME}-required-by
+.if defined(FORCE_PKG_REGISTER)
+ @if [ -e ${PKG_DBDIR}/${PKGNAME}/+REQUIRED_BY ]; then \
+ ${CP} ${PKG_DBDIR}/${PKGNAME}/+REQUIRED_BY /tmp/${PKGNAME}-required-by; \
+ fi
+ @${RM} -rf ${PKG_DBDIR}/${PKGNAME}
+.endif
+ @if [ ! -d ${PKG_DBDIR}/${PKGNAME} ]; then \
+ ${ECHO_MSG} "===> Registering installation for ${PKGNAME}"; \
+ ${MKDIR} ${PKG_DBDIR}/${PKGNAME}; \
+ ${PKG_CMD} ${PKG_ARGS} -O ${PKGFILE} > ${PKG_DBDIR}/${PKGNAME}/+CONTENTS; \
+ ${CP} ${DESCR} ${PKG_DBDIR}/${PKGNAME}/+DESC; \
+ ${ECHO_CMD} ${COMMENT:Q} > ${PKG_DBDIR}/${PKGNAME}/+COMMENT; \
+ if [ -f ${PKGINSTALL} ]; then \
+ ${CP} ${PKGINSTALL} ${PKG_DBDIR}/${PKGNAME}/+INSTALL; \
+ fi; \
+ if [ -f ${PKGDEINSTALL} ]; then \
+ ${CP} ${PKGDEINSTALL} ${PKG_DBDIR}/${PKGNAME}/+DEINSTALL; \
+ fi; \
+ if [ -f ${PKGREQ} ]; then \
+ ${CP} ${PKGREQ} ${PKG_DBDIR}/${PKGNAME}/+REQUIRE; \
+ fi; \
+ if [ -f ${PKGMESSAGE} ]; then \
+ ${CP} ${PKGMESSAGE} ${PKG_DBDIR}/${PKGNAME}/+DISPLAY; \
+ fi; \
+ for dep in `${PKG_INFO} -qf ${PKGNAME} | ${GREP} -w ^@pkgdep | ${AWK} '{print $$2}' | ${SORT} -u`; do \
+ if [ -d ${PKG_DBDIR}/$$dep -a -z `${ECHO_CMD} $$dep | ${GREP} -E ${PKG_IGNORE_DEPENDS}` ]; then \
+ if ! ${GREP} ^${PKGNAME}$$ ${PKG_DBDIR}/$$dep/+REQUIRED_BY \
+ >/dev/null 2>&1; then \
+ ${ECHO_CMD} ${PKGNAME} >> ${PKG_DBDIR}/$$dep/+REQUIRED_BY; \
+ fi; \
+ fi; \
+ done; \
+ fi
+.if !defined(NO_MTREE)
+ @if [ -f ${MTREE_FILE} ]; then \
+ ${CP} ${MTREE_FILE} ${PKG_DBDIR}/${PKGNAME}/+MTREE_DIRS; \
+ fi
+.endif
+ @if [ -e /tmp/${PKGNAME}-required-by ]; then \
+ ${CAT} /tmp/${PKGNAME}-required-by >> ${PKG_DBDIR}/${PKGNAME}/+REQUIRED_BY; \
+ ${RM} -f /tmp/${PKGNAME}-required-by; \
+ fi
+.else
+ @${DO_NADA}
+.endif
+.endif
+
+# Depend is generally meaningless for arbitrary ports, but if someone wants
+# one they can override this. This is just to catch people who've gotten into
+# the habit of typing `make depend all install' as a matter of course.
+#
+.if !target(depend)
+depend:
+.endif
+
+# Same goes for tags
+.if !target(tags)
+tags:
+.endif
+
+.if !defined(NOPRECIOUSSOFTMAKEVARS)
+.for softvar in CKSUMFILES _MLINKS
+.if defined(${softvar})
+__softMAKEFLAGS+= '${softvar}+=${${softvar}:S/'/'\''/g}'
+.endif
+.endfor
+.endif
+
+.if !defined(NOPRECIOUSMAKEVARS)
+# These won't change, so we can pass them through the environment
+.MAKEFLAGS: \
+ ARCH="${ARCH:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}" \
+ OPSYS="${OPSYS:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}" \
+ OSREL="${OSREL:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}" \
+ OSVERSION="${OSVERSION:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}" \
+ PORTOBJFORMAT="${PORTOBJFORMAT:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}" \
+ SYSTEMVERSION="${SYSTEMVERSION:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}"
+.endif
+
+.if !target(config)
+config:
+.if !defined(OPTIONS)
+ @${ECHO_MSG} "===> No options to configure"
+.else
+.if ${OPTIONSFILE} != ${_OPTIONSFILE}
+ @${ECHO_MSG} "===> Using wrong configuration file ${_OPTIONSFILE}"
+ @exit 1
+.endif
+.if ${UID} != 0 && !defined(INSTALL_AS_USER)
+ @${ECHO_MSG} "===> Switching to root credentials to create `${DIRNAME} ${_OPTIONSFILE}`"
+ @(${SU_CMD} "${SH} -c \"${MKDIR} `${DIRNAME} ${_OPTIONSFILE}` 2> /dev/null\"") || \
+ (${ECHO_MSG} "===> Cannot create `${DIRNAME} ${_OPTIONSFILE}`, check permissions"; exit 1)
+ @${ECHO_MSG} "===> Returning to user credentials"
+.else
+ @(${MKDIR} `${DIRNAME} ${_OPTIONSFILE}` 2> /dev/null) || \
+ (${ECHO_MSG} "===> Cannot create `${DIRNAME} ${_OPTIONSFILE}`, check permissions"; exit 1)
+.endif
+ -@if [ -e ${_OPTIONSFILE} ]; then \
+ . ${_OPTIONSFILE}; \
+ fi; \
+ set ${OPTIONS} XXX; \
+ while [ $$# -gt 3 ]; do \
+ OPTIONSLIST="$${OPTIONSLIST} $$1"; \
+ defaultval=$$3; \
+ withvar=WITH_$$1; \
+ withoutvar=WITHOUT_$$1; \
+ withval=$$(eval ${ECHO_CMD} $$\{$${withvar}\}); \
+ withoutval=$$(eval ${ECHO_CMD} $$\{$${withoutvar}\}); \
+ if [ ! -z "$${withval}" ]; then \
+ val=on; \
+ elif [ ! -z "$${withoutval}" ]; then \
+ val=off; \
+ else \
+ val=$$3; \
+ fi; \
+ DEFOPTIONS="$${DEFOPTIONS} $$1 \"$$2\" $${val}"; \
+ shift 3; \
+ done; \
+ TMPOPTIONSFILE=$$(mktemp -t portoptions); \
+ trap "${RM} -f $${TMPOPTIONSFILE}; exit 1" 1 2 3 5 10 13 15; \
+ ${SH} -c "${DIALOG} --checklist \"Options for ${PKGNAME:C/-([^-]+)$/ \1/}\" 21 70 15 $${DEFOPTIONS} 2> $${TMPOPTIONSFILE}"; \
+ status=$$?; \
+ if [ $${status} -ne 0 ] ; then \
+ ${RM} -f $${TMPOPTIONSFILE}; \
+ ${ECHO_MSG} "===> Options unchanged"; \
+ exit 0; \
+ fi; \
+ if [ ! -e ${TMPOPTIONSFILE} ]; then \
+ ${ECHO_MSG} "===> No user-specified options to save for ${PKGNAME}"; \
+ exit 0; \
+ fi; \
+ SELOPTIONS=$$(${CAT} $${TMPOPTIONSFILE}); \
+ ${RM} -f $${TMPOPTIONSFILE}; \
+ TMPOPTIONSFILE=$$(mktemp -t portoptions); \
+ trap "${RM} -f $${TMPOPTIONSFILE}; exit 1" 1 2 3 5 10 13 15; \
+ ${ECHO_CMD} "# This file is auto-generated by 'make config'." > $${TMPOPTIONSFILE}; \
+ ${ECHO_CMD} "# No user-servicable parts inside!" >> $${TMPOPTIONSFILE}; \
+ ${ECHO_CMD} "# Options for ${PKGNAME}" >> $${TMPOPTIONSFILE}; \
+ ${ECHO_CMD} "_OPTIONS_READ=${PKGNAME}" >> $${TMPOPTIONSFILE}; \
+ for i in $${OPTIONSLIST}; do \
+ ${ECHO_CMD} $${SELOPTIONS} | ${GREP} -qw $${i}; \
+ if [ $$? -eq 0 ]; then \
+ ${ECHO_CMD} WITH_$${i}=true >> $${TMPOPTIONSFILE}; \
+ else \
+ ${ECHO_CMD} WITHOUT_$${i}=true >> $${TMPOPTIONSFILE}; \
+ fi; \
+ done; \
+ if [ `${ID} -u` != 0 -a "x${INSTALL_AS_USER}" = "x" ]; then \
+ ${ECHO_MSG} "===> Switching to root credentials to write ${_OPTIONSFILE}"; \
+ ${SU_CMD} "${CAT} $${TMPOPTIONSFILE} > ${_OPTIONSFILE}"; \
+ ${ECHO_MSG} "===> Returning to user credentials"; \
+ else \
+ ${CAT} $${TMPOPTIONSFILE} > ${_OPTIONSFILE}; \
+ fi; \
+ ${RM} -f $${TMPOPTIONSFILE}
+.endif
+.endif
+
+.if !target(config-recursive)
+config-recursive:
+ @${ECHO_MSG} "===> Setting user-specified options for ${PKGNAME} and dependencies";
+ @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \
+ (cd $$dir; ${MAKE} config-conditional); \
+ done
+.endif
+
+.if !target(config-conditional)
+config-conditional:
+.if defined(OPTIONS) && !exists(${_OPTIONSFILE})
+ cd ${.CURDIR} && ${MAKE} config;
+.endif
+.endif
+
+.if !target(showconfig)
+showconfig:
+.if defined(OPTIONS) && exists(${_OPTIONSFILE})
+ @${ECHO_MSG} "===> The following configuration options are set for ${PKGNAME}:"
+ -@if [ -e ${_OPTIONSFILE} ]; then \
+ . ${_OPTIONSFILE}; \
+ fi; \
+ set ${OPTIONS} XXX; \
+ while [ $$# -gt 3 ]; do \
+ defaultval=$$3; \
+ withvar=WITH_$$1; \
+ withoutvar=WITHOUT_$$1; \
+ withval=$$(eval ${ECHO_CMD} $$\{$${withvar}\}); \
+ withoutval=$$(eval ${ECHO_CMD} $$\{$${withoutvar}\}); \
+ if [ ! -z "$${withval}" ]; then \
+ val=on; \
+ elif [ ! -z "$${withoutval}" ]; then \
+ val=off; \
+ else \
+ val="$$3 (default)"; \
+ fi; \
+ ${ECHO_MSG} " $$1=$${val} \"$$2\""; \
+ shift 3; \
+ done
+.else
+ @${ECHO_MSG} "===> No configuration options are set for this port"
+.if defined(OPTIONS)
+ @${ECHO_MSG} " Use 'make config' to set default values"
+.endif
+.endif
+.endif
+
+.if !target(rmconfig)
+rmconfig:
+.if defined(OPTIONS) && exists(${_OPTIONSFILE})
+ -@${ECHO_MSG} "===> Removing user-configured options for ${PKGNAME}"; \
+ if [ `${ID} -u` != 0 -a "x${INSTALL_AS_USER}" = "x" ]; then \
+ ${ECHO_MSG} "===> Switching to root credentials to remove ${_OPTIONSFILE} and `${DIRNAME} ${_OPTIONSFILE}`"; \
+ ${SU_CMD} "${RM} -f ${_OPTIONSFILE} ; \
+ ${RMDIR} `${DIRNAME} ${_OPTIONSFILE}`"; \
+ ${ECHO_MSG} "===> Returning to user credentials"; \
+ else \
+ ${RM} -f ${_OPTIONSFILE}; \
+ ${RMDIR} `${DIRNAME} ${_OPTIONSFILE}`; \
+ fi
+.else
+ @${ECHO_MSG} "===> No user-specified options configured for ${PKGNAME}"
+.endif
+.endif
+
+.if !target(rmconfig-recursive)
+rmconfig-recursive:
+ @${ECHO_MSG} "===> Removing user-specified options for ${PKGNAME} and dependencies";
+ @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \
+ (cd $$dir; ${MAKE} rmconfig); \
+ done
+.endif
+
+.if !target(install-desktop-entries)
+install-desktop-entries:
+.if defined(DESKTOP_ENTRIES)
+ @(${MKDIR} "${DESKTOPDIR}" 2> /dev/null) || \
+ (${ECHO_MSG} "===> Cannot create ${DESKTOPDIR}, check permissions"; exit 1)
+ @set ${DESKTOP_ENTRIES} XXX; \
+ if [ -z "${_DESKTOPDIR_REL}" ]; then \
+ ${ECHO_CMD} "@cwd ${DESKTOPDIR}" >> ${TMPPLIST}; \
+ fi; \
+ while [ $$# -gt 6 ]; do \
+ filename="$$4.desktop"; \
+ pathname="${DESKTOPDIR}/$$filename"; \
+ ${ECHO_CMD} "${_DESKTOPDIR_REL}$$filename" >> ${TMPPLIST}; \
+ ${ECHO_CMD} "[Desktop Entry]" > $$pathname; \
+ ${ECHO_CMD} "Type=Application" >> $$pathname; \
+ ${ECHO_CMD} "Version=0.9.4" >> $$pathname; \
+ ${ECHO_CMD} "Encoding=UTF-8" >> $$pathname; \
+ ${ECHO_CMD} "Name=$$1" >> $$pathname; \
+ if [ -n "$$2" ]; then \
+ ${ECHO_CMD} "Comment=$$2" >> $$pathname; \
+ fi; \
+ if [ -n "$$3" ]; then \
+ ${ECHO_CMD} "Icon=$$3" >> $$pathname; \
+ fi; \
+ ${ECHO_CMD} "Exec=$$4" >> $$pathname; \
+ ${ECHO_CMD} "Categories=$$5" >> $$pathname; \
+ ${ECHO_CMD} "StartupNotify=$$6" >> $$pathname; \
+ shift 6; \
+ done; \
+ ${ECHO_CMD} "@unexec rmdir ${DESKTOPDIR} 2>/dev/null || true" >> ${TMPPLIST}; \
+ if [ -z "${_DESKTOPDIR_REL}" ]; then \
+ ${ECHO_CMD} "@cwd ${PREFIX}" >> ${TMPPLIST}; \
+ fi
+.else
+ @${DO_NADA}
+.endif
+.endif
+
+.endif
+# End of post-makefile section.
diff --git a/ports-mgmt/portmk/Mk/bsd.port.post.mk b/ports-mgmt/portmk/Mk/bsd.port.post.mk
deleted file mode 100644
index 508902dc1586..000000000000
--- a/ports-mgmt/portmk/Mk/bsd.port.post.mk
+++ /dev/null
@@ -1,3579 +0,0 @@
-#-*- mode: makefile; tab-width: 4; -*-
-# ex:ts=4
-#
-# $FreeBSD$
-#
-
-.if defined(_POSTMKINCLUDED)
-check-makefile::
- @${ECHO_CMD} "${PKGNAME}: Makefile error: you cannot include bsd.port[.post].mk twice"
- @${FALSE}
-.endif
-
-_POSTMKINCLUDED= yes
-
-OPTIONS_DBDIR?= /var/db/options
-OPTIONS_FILE?= ${OPTIONS_DBDIR}/${UNIQUENAME}
-
-.if defined(_OPTIONSNG_READ) && exists(${OPTIONS_FILE})
-.if ${_OPTIONSNG_READ} == default
-_ONG_REEXEC= yes
-check-makefile::
- @${ECHO_MSG} "===> Configuration error, \`make rmconfig' to remove custom options."
- @${FALSE}
-.else
-.undef _ONG_REEXEC
-.endif
-_ONG_MAKEFLAGS= -f '${OPTIONS_FILE}' -f Makefile
-.else
-.undef _ONG_REEXEC
-_ONG_MAKEFLAGS= -f Makefile
-.endif
-
-WRKDIR?= ${WRKDIRPREFIX}${.CURDIR}/work
-.if defined(NO_WRKSUBDIR)
-WRKSRC?= ${WRKDIR}
-.else
-WRKSRC?= ${WRKDIR}/${DISTNAME}
-.endif
-
-PATCH_WRKSRC?= ${WRKSRC}
-CONFIGURE_WRKSRC?= ${WRKSRC}
-BUILD_WRKSRC?= ${WRKSRC}
-INSTALL_WRKSRC?=${WRKSRC}
-
-WRKINST?= ${WRKDIR}/.inst
-
-.if defined(DESTDIR)
-check-makefile::
- @${ECHO_CMD} "${PKGNAME}: DESTDIR is not a user settable variable"
- @${FALSE}
-.endif
-
-.if defined(CLEANROOM_INSTALL)
-DESTDIR= ${WRKINST}
-.endif
-
-PLIST_SUB+= OSREL=${OSREL} PREFIX=%D LOCALBASE=${LOCALBASE} X11BASE=${X11BASE}
-SUB_LIST+= PREFIX=${PREFIX} LOCALBASE=${LOCALBASE} X11BASE=${X11BASE} \
- DATADIR=${DATADIR} DOCSDIR=${DOCSDIR} EXAMPLESDIR=${EXAMPLESDIR}
-
-
-.if defined(WITHOUT_CPU_CFLAGS)
-.if defined(_CPUCFLAGS)
-.if !empty(_CPUCFLAGS)
-CFLAGS:= ${CFLAGS:C/${_CPUCFLAGS}//}
-.endif
-.endif
-.endif
-
-.if defined(NOPORTDOCS)
-PLIST_SUB+= PORTDOCS="@comment "
-.else
-PLIST_SUB+= PORTDOCS=""
-.endif
-
-CONFIGURE_SHELL?= ${SH}
-MAKE_SHELL?= ${SH}
-
-CONFIGURE_ENV+= SHELL=${SH} CONFIG_SHELL=${SH} PORTOBJFORMAT=${PORTOBJFORMAT}
-SCRIPTS_ENV+= PORTOBJFORMAT=${PORTOBJFORMAT}
-MAKE_ENV+= SHELL=${SH} PORTOBJFORMAT=${PORTOBJFORMAT}
-PLIST_SUB+= PORTOBJFORMAT=${PORTOBJFORMAT}
-
-.if defined(MANCOMPRESSED)
-.if ${MANCOMPRESSED} != yes && ${MANCOMPRESSED} != no && \
- ${MANCOMPRESSED} != maybe
-check-makevars::
- @${ECHO_CMD} "${PKGNAME}: Makefile error: value of MANCOMPRESSED (is \"${MANCOMPRESSED}\") can only be \"yes\", \"no\" or \"maybe\"".
- @${FALSE}
-.endif
-.endif
-
-.if defined(USE_IMAKE) && !defined(NO_INSTALL_MANPAGES)
-MANCOMPRESSED?= yes
-.else
-MANCOMPRESSED?= no
-.endif
-
-.if defined(PATCHFILES)
-.if ${PATCHFILES:M*.bz2}x != x && defined(BZIP2DEPENDS)
-PATCH_DEPENDS+= bzip2:${PORTSDIR}/archivers/bzip2
-.endif
-.if ${PATCHFILES:M*.zip}x != x && defined(ZIPDEPENDS)
-PATCH_DEPENDS+= unzip:${PORTSDIR}/archivers/unzip
-.endif
-.endif
-
-.if defined(USE_BZIP2) && defined(BZIP2DEPENDS)
-EXTRACT_DEPENDS+= bzip2:${PORTSDIR}/archivers/bzip2
-.endif
-.if defined(USE_ZIP) && defined(ZIPDEPENDS)
-EXTRACT_DEPENDS+= unzip:${PORTSDIR}/archivers/unzip
-.endif
-.if defined(USE_GMAKE)
-BUILD_DEPENDS+= gmake:${PORTSDIR}/devel/gmake
-CONFIGURE_ENV+= MAKE=${GMAKE}
-.endif
-
-.if defined(USE_GCC)
-.if ${OSVERSION} < 400012
-GCCVERSION= 020702
-.endif
-.if ${OSVERSION} >= 400012 && ${OSVERSION} < 500035
-GCCVERSION= 029500
-.endif
-.if ${OSVERSION} >= 500035 && ${OSVERSION} < 500039
-GCCVERSION= 030100
-.endif
-.if ${OSVERSION} >= 500039 && ${OSVERSION} < 501103
-GCCVERSION= 030200
-.endif
-.if ${OSVERSION} >= 501103 && ${OSVERSION} < 502126
-GCCVERSION= 030301
-.endif
-.if ${OSVERSION} >= 502126
-GCCVERSION= 030402
-.endif
-.endif
-
-.if defined(USE_GCC)
-.if ${USE_GCC} == 2.95 && ( ${OSVERSION} < 400012 || ${OSVERSION} > 500034 )
-CC= gcc295
-CXX= g++295
-BUILD_DEPENDS+= gcc295:${PORTSDIR}/lang/gcc295
-GCCVERSION= 029500
-.endif
-.if ${USE_GCC} == 3.1 && ( ${OSVERSION} < 500035 || ${OSVERSION} > 500038 )
-CC= gcc31
-CXX= g++31
-F77= g77-31
-BUILD_DEPENDS+= gcc31:${PORTSDIR}/lang/gcc31
-GCCVERSION= 030100
-.endif
-.if ${USE_GCC} == 3.2 && ( ${OSVERSION} < 500039 || ${OSVERSION} > 501102 )
-CC= gcc32
-CXX= g++32
-F77= g77-32
-BUILD_DEPENDS+= gcc32:${PORTSDIR}/lang/gcc32
-GCCVERSION= 030200
-.endif
-.if ${USE_GCC} == 3.3 && ( ${OSVERSION} < 501103 || ${OSVERSION} > 502125 )
-CC= gcc33
-CXX= g++33
-F77= g77-33
-BUILD_DEPENDS+= gcc33:${PORTSDIR}/lang/gcc33
-GCCVERSION= 030301
-.endif
-.if ${USE_GCC} == 3.4 && ${OSVERSION} < 502126
-CC= gcc34
-CXX= g++34
-F77= g77-34
-BUILD_DEPENDS+= gcc34:${PORTSDIR}/lang/gcc34
-GCCVERSION= 030402
-.endif
-MAKE_ENV+= CC="${CC}" CXX="${CXX}"
-.endif
-
-.if defined(USE_OPENLDAP_VER)
-USE_OPENLDAP?= yes
-WANT_OPENLDAP_VER= ${USE_OPENLDAP_VER}
-.endif
-
-.if defined(USE_OPENLDAP)
-.if defined(WANT_OPENLDAP_SASL)
-_OPENLDAP_FLAVOUR= -sasl
-.else
-_OPENLDAP_FLAVOUR=
-.endif
-.if ${WANT_OPENLDAP_VER} == 23
-LIB_DEPENDS+= ldap-2.3.0:${PORTSDIR}/net/openldap23${_OPENLDAP_FLAVOUR}-client
-.elif ${WANT_OPENLDAP_VER} == 22
-LIB_DEPENDS+= ldap-2.2.7:${PORTSDIR}/net/openldap22${_OPENLDAP_FLAVOUR}-client
-.elif ${WANT_OPENLDAP_VER} == 21
-LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap21${_OPENLDAP_FLAVOUR}-client
-.else
-BROKEN= "unknown OpenLDAP version: ${WANT_OPENLDAP_VER}"
-.endif
-.endif
-
-.if defined(USE_GETOPT_LONG)
-.if ${OSVERSION} < 500041
-LIB_DEPENDS+= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt
-CPPFLAGS+= -I${LOCALBASE}/include
-LDFLAGS+= -L${LOCALBASE}/lib -lgnugetopt
-CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
-.endif
-.endif
-
-.if defined(USE_RC_SUBR)
-.if ${OSVERSION} < 500037
-RUN_DEPENDS+= ${LOCALBASE}/etc/rc.subr:${PORTSDIR}/sysutils/rc_subr
-RC_SUBR= ${LOCALBASE}/etc/rc.subr
-.else
-RC_SUBR= /etc/rc.subr
-.endif
-.endif
-
-.if defined(USE_ICONV)
-LIB_DEPENDS+= iconv.3:${PORTSDIR}/converters/libiconv
-.endif
-
-.if defined(USE_GETTEXT)
-. if ${USE_GETTEXT:L} == yes
-LIB_DEPENDS+= intl:${PORTSDIR}/devel/gettext
-. else
-LIB_DEPENDS+= intl.${USE_GETTEXT}:${PORTSDIR}/devel/gettext
-. endif
-.endif
-
-.if defined(USE_LINUX)
-. if exists(${PORTSDIR}/emulators/linux_base-${USE_LINUX})
-RUN_DEPENDS+= ${LINUXBASE}/bin/sh:${PORTSDIR}/emulators/linux_base-${USE_LINUX}
-. else
-. if ${USE_LINUX} == 7
-RUN_DEPENDS+= ${LINUXBASE}/etc/redhat-release:${PORTSDIR}/emulators/linux_base
-. else
-RUN_DEPENDS+= ${LINUXBASE}/etc/redhat-release:${PORTSDIR}/emulators/linux_base-8
-. endif
-. endif
-.endif
-
-.if defined(USE_MOTIF)
-USE_XPM= yes
-.if defined(WANT_LESSTIF)
-LIB_DEPENDS+= Xm:${PORTSDIR}/x11-toolkits/lesstif
-NO_OPENMOTIF= yes
-.endif
-.if !defined(NO_OPENMOTIF)
-LIB_DEPENDS+= Xm.3:${PORTSDIR}/x11-toolkits/open-motif
-.endif
-.endif
-
-.if defined(USE_FREETYPE)
-LIB_DEPENDS+= ttf.4:${PORTSDIR}/print/freetype
-.endif
-
-.if defined(X_WINDOW_SYSTEM) && ${X_WINDOW_SYSTEM:L} == xorg
-X_IMAKE_PORT= ${PORTSDIR}/devel/imake-6
-X_LIBRARIES_PORT= ${PORTSDIR}/x11/xorg-libraries
-X_CLIENTS_PORT= ${PORTSDIR}/x11/xorg-clients
-X_SERVER_PORT= ${PORTSDIR}/x11-servers/xorg-server
-X_FONTSERVER_PORT= ${PORTSDIR}/x11-servers/xorg-fontserver
-X_PRINTSERVER_PORT= ${PORTSDIR}/x11-servers/xorg-printserver
-X_VFBSERVER_PORT= ${PORTSDIR}/x11-servers/xorg-vfbserver
-X_NESTSERVER_PORT= ${PORTSDIR}/x11-servers/xorg-nestserver
-X_FONTS_ENCODINGS_PORT= ${PORTSDIR}/x11-fonts/xorg-fonts-encodings
-X_FONTS_MISC_PORT= ${PORTSDIR}/x11-fonts/xorg-fonts-miscbitmaps
-X_FONTS_100DPI_PORT= ${PORTSDIR}/x11-fonts/xorg-fonts-100dpi
-X_FONTS_75DPI_PORT= ${PORTSDIR}/x11-fonts/xorg-fonts-75dpi
-X_FONTS_CYRILLIC_PORT= ${PORTSDIR}/x11-fonts/xorg-fonts-cyrillic
-X_FONTS_TTF_PORT= ${PORTSDIR}/x11-fonts/xorg-fonts-truetype
-X_FONTS_TYPE1_PORT= ${PORTSDIR}/x11-fonts/xorg-fonts-type1
-X_MANUALS_PORT= ${PORTSDIR}/x11/xorg-manpages
-.elif defined(X_WINDOW_SYSTEM) && ${X_WINDOW_SYSTEM:L} == xfree86-4
-X_IMAKE_PORT= ${PORTSDIR}/devel/imake-4
-X_LIBRARIES_PORT= ${PORTSDIR}/x11/XFree86-4-libraries
-X_CLIENTS_PORT= ${PORTSDIR}/x11/XFree86-4-clients
-X_SERVER_PORT= ${PORTSDIR}/x11-servers/XFree86-4-Server
-X_FONTSERVER_PORT= ${PORTSDIR}/x11-servers/XFree86-4-FontServer
-X_PRINTSERVER_PORT= ${PORTSDIR}/x11-servers/XFree86-4-PrintServer
-X_VFBSERVER_PORT= ${PORTSDIR}/x11-servers/XFree86-4-VirtualFramebufferServer
-X_NESTSERVER_PORT= ${PORTSDIR}/x11-servers/XFree86-4-NestServer
-X_FONTS_ENCODINGS_PORT= ${PORTSDIR}/x11-fonts/XFree86-4-fontEncodings
-X_FONTS_MISC_PORT= ${PORTSDIR}/x11-fonts/XFree86-4-fontDefaultBitmaps
-X_FONTS_100DPI_PORT= ${PORTSDIR}/x11-fonts/XFree86-4-font100dpi
-X_FONTS_75DPI_PORT= ${PORTSDIR}/x11-fonts/XFree86-4-font75dpi
-X_FONTS_CYRILLIC_PORT= ${PORTSDIR}/x11-fonts/XFree86-4-fontCyrillic
-X_FONTS_TTF_PORT= ${PORTSDIR}/x11-fonts/XFree86-4-fontScalable
-X_FONTS_TYPE1_PORT= ${PORTSDIR}/x11-fonts/XFree86-4-fontScalable
-X_MANUALS_PORT= ${PORTSDIR}/x11/XFree86-4-manuals
-.elif defined(X_WINDOW_SYSTEM) && ${X_WINDOW_SYSTEM:L} == xfree86-3
-X_IMAKE_PORT= ${PORTSDIR}/x11/XFree86
-X_LIBRARIES_PORT= ${PORTSDIR}/x11/XFree86
-X_CLIENTS_PORT= ${PORTSDIR}/x11/XFree86
-X_SERVER_PORT= ${PORTSDIR}/x11/XFree86
-X_FONTSERVER_PORT= ${PORTSDIR}/x11/XFree86
-X_PRINTSERVER_PORT= ${PORTSDIR}/x11/XFree86
-X_VFBSERVER_PORT= ${PORTSDIR}/x11/XFree86
-X_NESTSERVER_PORT= ${PORTSDIR}/x11/XFree86
-X_FONTS_ENCODINGS_PORT= ${PORTSDIR}/x11/XFree86
-X_FONTS_MISC_PORT= ${PORTSDIR}/x11/XFree86
-X_FONTS_100DPI_PORT= ${PORTSDIR}/x11/XFree86
-X_FONTS_75DPI_PORT= ${PORTSDIR}/x11/XFree86
-X_FONTS_CYRILLIC_PORT= ${PORTSDIR}/x11/XFree86
-X_FONTS_TTF_PORT= ${PORTSDIR}/x11/XFree86
-X_FONTS_TYPE1_PORT= ${PORTSDIR}/x11/XFree86
-X_MANUALS_PORT= ${PORTSDIR}/x11/XFree86
-.else
-.error Bad X_WINDOW_SYSTEM setting
-.endif
-
-.if defined(USE_IMAKE)
-BUILD_DEPENDS+= imake:${X_IMAKE_PORT}
-.endif
-
-.if ${X_WINDOW_SYSTEM:L} == xfree86-3
-
-.if defined(USE_XPM)
-LIB_DEPENDS+= Xpm.4:${PORTSDIR}/graphics/xpm
-.endif
-.if defined(USE_GL)
-LIB_DEPENDS+= GL.14:${PORTSDIR}/graphics/mesagl
-.endif
-
-XAWVER= 6
-PKG_IGNORE_DEPENDS?= '^XFree86-3\.'
-
-.else
-
-.if defined(USE_XPM) || defined(USE_GL)
-USE_XLIB= yes
-.endif
-
-.if ${X_WINDOW_SYSTEM:L} == xorg
-XAWVER= 8
-.else
-XAWVER= 7
-.endif
-PKG_IGNORE_DEPENDS?= 'this_port_does_not_exist'
-
-.endif
-
-PLIST_SUB+= XAWVER=${XAWVER}
-
-.if defined(USE_MESA)
-LIB_DEPENDS+= glut.3:${PORTSDIR}/graphics/libglut
-.endif
-
-.if defined(USE_BISON)
-.if ${OSVERSION} >= 400014
-BUILD_DEPENDS+= bison:${PORTSDIR}/devel/bison
-.endif
-.endif
-
-PLIST_SUB+= PERL_VERSION=${PERL_VERSION} \
- PERL_VER=${PERL_VER} \
- PERL_ARCH=${PERL_ARCH} \
- SITE_PERL=${SITE_PERL_REL}
-
-.if defined(PERL_MODBUILD)
-PERL_CONFIGURE= yes
-CONFIGURE_SCRIPT?= Build.PL
-.if ${PORTNAME} != Module-Build
-BUILD_DEPENDS+= ${SITE_PERL}/Module/Build.pm:${PORTSDIR}/devel/p5-Module-Build
-.endif
-ALL_TARGET?=
-PL_BUILD?= Build
-CONFIGURE_ARGS+= \
- install_path=lib="${PREFIX}/${SITE_PERL_REL}" \
- install_path=arch="${PREFIX}/${SITE_PERL_REL}/${PERL_ARCH}" \
- install_path=script="${PREFIX}/bin" \
- install_path=bin="${PREFIX}/bin" \
- install_path=libdoc="${MAN3PREFIX}/man/man3" \
- install_path=bindoc="${MAN1PREFIX}/man/man1"
-.endif
-
-.if defined(PERL_CONFIGURE)
-USE_PERL5= yes
-USE_REINPLACE=yes
-.endif
-
-.if ${PERL_LEVEL} >= 500600
-.if defined(USE_PERL5) || defined(USE_PERL5_BUILD)
-EXTRACT_DEPENDS+=${PERL5}:${PORTSDIR}/lang/${PERL_PORT}
-PATCH_DEPENDS+= ${PERL5}:${PORTSDIR}/lang/${PERL_PORT}
-BUILD_DEPENDS+= ${PERL5}:${PORTSDIR}/lang/${PERL_PORT}
-.endif
-.if defined(USE_PERL5) || defined(USE_PERL5_RUN)
-RUN_DEPENDS+= ${PERL5}:${PORTSDIR}/lang/${PERL_PORT}
-.endif
-.endif
-
-.if defined(USE_MYSQL)
-DEFAULT_MYSQL_VER?= 40
-# MySQL client version currently supported.
-MYSQL323_LIBVER= 10
-MYSQL40_LIBVER= 12
-MYSQL41_LIBVER= 14
-MYSQL50_LIBVER= 14
-
-# Setting/finding MySQL version we want.
-.if exists(${LOCALBASE}/bin/mysql)
-_MYSQL_VER!= ${LOCALBASE}/bin/mysql --version | ${SED} -e 's/.*Distrib \([0-9]\)\.\([0-9]*\).*/\1\2/'
-.endif
-
-.if defined(WANT_MYSQL_VER)
-.if defined(WITH_MYSQL_VER) && ${WITH_MYSQL_VER} != ${WANT_MYSQL_VER}
-BROKEN= The port wants mysql${WANT_MYSQL_VER}-client and you try to install mysql${WITH_MYSQL_VER}-client.
-.endif
-MYSQL_VER= ${WANT_MYSQL_VER}
-.elif defined(WITH_MYSQL_VER)
-MYSQL_VER= ${WITH_MYSQL_VER}
-.else
-.if defined(_MYSQL_VER)
-MYSQL_VER= ${_MYSQL_VER}
-.else
-MYSQL_VER= ${DEFAULT_MYSQL_VER}
-.endif
-.endif # WANT_MYSQL_VER
-
-.if defined(_MYSQL_VER)
-.if ${_MYSQL_VER} != ${MYSQL_VER}
-BROKEN= MySQL versions mismatch: mysql${_MYSQL_VER}-client is installed and wanted version is mysql${MYSQL_VER}-client
-.endif
-.endif
-
-# And now we are checking if we can use it
-.if exists(${PORTSDIR}/databases/mysql${MYSQL_VER}-client)
-.if defined(BROKEN_WITH_MYSQL)
-. for VER in ${BROKEN_WITH_MYSQL}
-. if (${MYSQL_VER} == ${VER})
-IGNORE= Doesn't work with MySQL version : ${MYSQL_VER} (Doesn't support MySQL ${BROKEN_WITH_MYSQL})
-. endif
-. endfor
-.endif # BROKEN_WITH_MYSQL
-LIB_DEPENDS+= mysqlclient.${MYSQL${MYSQL_VER}_LIBVER}:${PORTSDIR}/databases/mysql${MYSQL_VER}-client
-.else
-BROKEN= "unknown MySQL version: ${MYSQL_VER}"
-.endif # Check for correct libs
-.endif # USE_MYSQL
-
-.if defined(USE_PGSQL)
-DEFAULT_PGSQL_VER?= 74
-
-# Setting/finding PostgreSQL version we want.
-.if defined(WANT_PGSQL_VER)
-PGSQL_VER= ${WANT_PGSQL_VER}
-.elif exists(${LOCALBASE}/bin/pg_config)
-PGSQL_VER!= ${LOCALBASE}/bin/pg_config --version | ${SED} -n 's/PostgreSQL[^0-9]*\([0-9][0-9]*\)\.\([0-9][0-9]*\)\..*/\1\2/p'
-.else
-PGSQL_VER= ${DEFAULT_PGSQL_VER}
-.endif # WANT_PGSQL_VER
-
-# And now we are checking if we can use it
-.if exists(${PORTSDIR}/databases/postgresql${PGSQL_VER}-client)
-.if defined(BROKEN_WITH_PGSQL)
-. for VER in ${BROKEN_WITH_PGSQL}
-. if (${PGSQL_VER} == ${VER})
-BROKEN= "Doesn't work with PostgreSQL version : ${PGSQL_VER} (Doesn't support PostgresSQL ${BROKEN_WITH_PGSQL})"
-. endif
-. endfor
-.endif # BROKEN_WITH_PGSQL
-LIB_DEPENDS+= pq:${PORTSDIR}/databases/postgresql${PGSQL_VER}-client
-.else
-BROKEN= "unknown PostgreSQL version: ${PGSQL_VER}"
-.endif # Check for correct version
-CPPFLAGS+= -I${LOCALBASE}/include
-LDFLAGS+= -L${LOCALBASE}/lib
-CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
-.endif # USE_PGSQL
-
-.if defined(USE_XLIB)
-LIB_DEPENDS+= X11.6:${X_LIBRARIES_PORT}
-# Add explicit X options to avoid problems with false positives in configure
-.if defined(GNU_CONFIGURE)
-CONFIGURE_ARGS+=--x-libraries=${X11BASE}/lib --x-includes=${X11BASE}/include
-.endif
-.endif
-
-# XXX: (not yet): .if defined(USE_AUTOTOOLS)
-.include "${PORTSDIR}/Mk/bsd.autotools.mk"
-# XXX: (not yet): .endif
-
-.if defined(WANT_GNOME) || defined(USE_GNOME) || defined(USE_GTK)
-.include "${PORTSDIR}/Mk/bsd.gnome.mk"
-.endif
-
-.if defined(USE_SDL) || defined(WANT_SDL)
-.include "${PORTSDIR}/Mk/bsd.sdl.mk"
-.endif
-
-.if defined(USE_PYTHON)
-.include "${PORTSDIR}/Mk/bsd.python.mk"
-.endif
-
-.if exists(${PORTSDIR}/../Makefile.inc)
-.include "${PORTSDIR}/../Makefile.inc"
-USE_SUBMAKE= yes
-.endif
-
-.if defined(USE_XLIB)
-LIB_DEPENDS+= X11.6:${X_LIBRARIES_PORT}
-# Add explicit X options to avoid problems with false positives in configure
-.if defined(GNU_CONFIGURE)
-CONFIGURE_ARGS+=--x-libraries=${X11BASE}/lib --x-includes=${X11BASE}/include
-.endif
-.endif
-
-# Set the default for the installation of Postscript(TM)-
-# compatible functionality.
-.if !defined(WITHOUT_X11)
-.if defined(WITH_GHOSTSCRIPT_AFPL)
-.if ${WITH_GHOSTSCRIPT_AFPL:L} == yes
-GHOSTSCRIPT_PORT?= print/ghostscript-afpl
-.else
-GHOSTSCRIPT_PORT?= print/ghostscript-gnu
-.endif
-.else
-GHOSTSCRIPT_PORT?= print/ghostscript-gnu
-.endif
-.else
-.if defined(WITH_GHOSTSCRIPT_AFPL)
-.if ${WITH_GHOSTSCRIPT_AFPL:L} == yes
-GHOSTSCRIPT_PORT?= print/ghostscript-afpl-nox11
-.else
-GHOSTSCRIPT_PORT?= print/ghostscript-gnu-nox11
-.endif
-.else
-GHOSTSCRIPT_PORT?= print/ghostscript-gnu-nox11
-.endif
-.endif
-
-# Set up the ghostscript dependencies.
-.if defined(USE_GHOSTSCRIPT) || defined(USE_GHOSTSCRIPT_BUILD)
-BUILD_DEPENDS+= gs:${PORTSDIR}/${GHOSTSCRIPT_PORT}
-.endif
-.if defined(USE_GHOSTSCRIPT) || defined(USE_GHOSTSCRIPT_RUN)
-RUN_DEPENDS+= gs:${PORTSDIR}/${GHOSTSCRIPT_PORT}
-.endif
-
-# Special macro for doing in-place file editing using regexps
-.if defined(USE_REINPLACE)
-REINPLACE_ARGS?= -i.bak
-.if ${OSVERSION} < 460101 || ( ${OSVERSION} >= 500000 && ${OSVERSION} < 500036 )
-PATCH_DEPENDS+= ${LOCALBASE}/bin/sed_inplace:${PORTSDIR}/textproc/sed_inplace
-REINPLACE_CMD?= ${LOCALBASE}/bin/sed_inplace ${REINPLACE_ARGS}
-.else
-REINPLACE_CMD?= ${SED} ${REINPLACE_ARGS}
-.endif
-.endif
-
-# Names of cookies used to skip already completed stages
-.for target in extract patch configure build install package
-${target:U}_COOKIE?=${WRKDIR}/.${target}_done.${PKGNAME}.${PREFIX:S/\//_/g}
-.endfor
-
-# How to do nothing. Override if you, for some strange reason, would rather
-# do something.
-DO_NADA?= ${TRUE}
-
-# Use this as the first operand to always build dependency.
-NONEXISTENT?= /nonexistent
-
-# Miscellaneous overridable commands:
-GMAKE?= gmake
-XMKMF?= xmkmf -a
-.if exists(/sbin/md5)
-MD5?= /sbin/md5
-.elif exists(/bin/md5)
-MD5?= /bin/md5
-.elif exists(/usr/bin/md5)
-MD5?= /usr/bin/md5
-.else
-MD5?= md5
-.endif
-MD5_FILE?= ${MASTERDIR}/distinfo
-
-MAKE_FLAGS?= -f
-MAKEFILE?= Makefile
-MAKE_ENV+= PREFIX=${PREFIX} LOCALBASE=${LOCALBASE} X11BASE=${X11BASE} DESTDIR=${DESTDIR} MOTIFLIB="${MOTIFLIB}" LIBDIR="${LIBDIR}" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" MANPREFIX="${MANPREFIX}"
-
-.if ${OSVERSION} < 500016
-PTHREAD_CFLAGS?= -D_THREAD_SAFE
-PTHREAD_LIBS?= -pthread
-.elif ${OSVERSION} < 502102
-PTHREAD_CFLAGS?= -D_THREAD_SAFE
-PTHREAD_LIBS?= -lc_r
-.else
-PTHREAD_CFLAGS?=
-PTHREAD_LIBS?= -pthread
-.endif
-
-.if defined(FETCH_USE_CURL) && exists(${LOCALBASE}/bin/curl)
-FETCH_CMD?= ${LOCALBASE}/bin/curl --create-dirs -L --max-redirs 1 -C -
-.elif defined(FETCH_USE_WGET) && exists(${LOCALBASE}/bin/wget)
-FETCH_CMD?= ${LOCALBASE}/bin/wget -c -t 1
-.else
-FETCH_CMD?= /usr/bin/fetch -ARr
-.endif
-
-TOUCH?= /usr/bin/touch
-TOUCH_FLAGS?= -f
-
-DISTORIG?= .bak.orig
-PATCH?= /usr/bin/patch
-PATCH_STRIP?= -p0
-PATCH_DIST_STRIP?= -p0
-.if defined(PATCH_DEBUG)
-PATCH_DEBUG_TMP= yes
-PATCH_ARGS?= -d ${PATCH_WRKSRC} -E ${PATCH_STRIP}
-PATCH_DIST_ARGS?= --suffix ${DISTORIG} -d ${PATCH_WRKSRC} -E ${PATCH_DIST_STRIP}
-.else
-PATCH_DEBUG_TMP= no
-PATCH_ARGS?= -d ${PATCH_WRKSRC} --forward --quiet -E ${PATCH_STRIP}
-PATCH_DIST_ARGS?= --suffix ${DISTORIG} -d ${PATCH_WRKSRC} --forward --quiet -E ${PATCH_DIST_STRIP}
-.endif
-.if defined(BATCH)
-PATCH_ARGS+= --batch
-PATCH_DIST_ARGS+= --batch
-.endif
-
-# Prevent breakage with VERSION_CONTROL=numbered
-PATCH_ARGS+= -V simple
-
-.if defined(PATCH_CHECK_ONLY)
-PATCH_ARGS+= -C
-PATCH_DIST_ARGS+= -C
-.endif
-
-.if ${PATCH} == /usr/bin/patch
-PATCH_ARGS+= --suffix .orig
-PATCH_DIST_ARGS+= --suffix .orig
-.endif
-
-.if exists(/bin/tar)
-TAR?= /bin/tar
-.else
-TAR?= /usr/bin/tar
-.endif
-
-# EXTRACT_SUFX is defined in .pre.mk section
-.if defined(USE_ZIP)
-EXTRACT_CMD?= ${UNZIP_CMD}
-EXTRACT_BEFORE_ARGS?= -qo
-EXTRACT_AFTER_ARGS?= -d ${WRKDIR}
-.else
-EXTRACT_BEFORE_ARGS?= -dc
-EXTRACT_AFTER_ARGS?= | ${TAR} -xf -
-.if defined(USE_BZIP2)
-EXTRACT_CMD?= ${BZIP2_CMD}
-.else
-EXTRACT_CMD?= ${GZIP_CMD}
-.endif
-.endif
-
-# Figure out where the local mtree file is
-.if !defined(MTREE_FILE) && !defined(NO_MTREE)
-.if ${PREFIX} == ${X11BASE} || defined(USE_X_PREFIX)
-# User may have specified non-standard PREFIX for installing a port that
-# uses X
-.if ${X_WINDOW_SYSTEM:L} == xfree86-3
-MTREE_FILE= /etc/mtree/BSD.x11.dist
-.else
-MTREE_FILE= /etc/mtree/BSD.x11-4.dist
-.endif
-.elif ${PREFIX} == /usr
-MTREE_FILE= /etc/mtree/BSD.usr.dist
-.else
-MTREE_FILE= /etc/mtree/BSD.local.dist
-.endif
-.endif
-MTREE_CMD?= /usr/sbin/mtree
-MTREE_ARGS?= -U ${MTREE_FOLLOWS_SYMLINKS} -f ${MTREE_FILE} -d -e -p
-
-# Determine whether or not we can use rootly owner/group functions.
-.if !defined(UID)
-UID!= ${ID} -u
-.endif
-.if ${UID} == 0
-_BINOWNGRP= -o ${BINOWN} -g ${BINGRP}
-_SHROWNGRP= -o ${SHAREOWN} -g ${SHAREGRP}
-_MANOWNGRP= -o ${MANOWN} -g ${MANGRP}
-.else
-_BINOWNGRP=
-_SHROWNGRP=
-_MANOWNGRP=
-.endif
-
-# A few aliases for *-install targets
-INSTALL_PROGRAM= \
- ${INSTALL} ${COPY} ${STRIP} ${_BINOWNGRP} -m ${BINMODE}
-INSTALL_SCRIPT= \
- ${INSTALL} ${COPY} ${_BINOWNGRP} -m ${BINMODE}
-INSTALL_DATA= \
- ${INSTALL} ${COPY} ${_SHROWNGRP} -m ${SHAREMODE}
-INSTALL_MAN= \
- ${INSTALL} ${COPY} ${_MANOWNGRP} -m ${MANMODE}
-
-INSTALL_MACROS= BSD_INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
- BSD_INSTALL_SCRIPT="${INSTALL_SCRIPT}" \
- BSD_INSTALL_DATA="${INSTALL_DATA}" \
- BSD_INSTALL_MAN="${INSTALL_MAN}"
-MAKE_ENV+= ${INSTALL_MACROS}
-SCRIPTS_ENV+= ${INSTALL_MACROS}
-
-# The user can override the NO_PACKAGE by specifying this from
-# the make command line
-.if defined(FORCE_PACKAGE)
-.undef NO_PACKAGE
-.endif
-
-COMMENTFILE?= ${PKGDIR}/pkg-comment
-DESCR?= ${PKGDIR}/pkg-descr
-PLIST?= ${PKGDIR}/pkg-plist
-PKGINSTALL?= ${PKGDIR}/pkg-install
-PKGDEINSTALL?= ${PKGDIR}/pkg-deinstall
-PKGREQ?= ${PKGDIR}/pkg-req
-PKGMESSAGE?= ${PKGDIR}/pkg-message
-
-TMPPLIST?= ${WRKDIR}/.PLIST.mktmp
-
-.if ${OSVERSION} >= 400000
-.for _CATEGORY in ${CATEGORIES}
-PKGCATEGORY?= ${_CATEGORY}
-.endfor
-_PORTDIRNAME= ${.CURDIR:T}
-PORTDIRNAME?= ${_PORTDIRNAME}
-PKGORIGIN?= ${PKGCATEGORY}/${PORTDIRNAME}
-.endif
-
-.if exists(${LOCALBASE}/sbin/pkg_info)
-PKG_CMD?= ${LOCALBASE}/sbin/pkg_create
-PKG_ADD?= ${LOCALBASE}/sbin/pkg_add
-PKG_DELETE?= ${LOCALBASE}/sbin/pkg_delete
-PKG_INFO?= ${LOCALBASE}/sbin/pkg_info
-PKG_VERSION?= ${LOCALBASE}/sbin/pkg_version
-.elif ${OSVERSION} < 460102 && ${PKGORIGIN} != "sysutils/pkg_install"
-BUILD_DEPENDS+= ${LOCALBASE}/sbin/pkg_info:${PORTSDIR}/sysutils/pkg_install
-PKG_CMD?= ${LOCALBASE}/sbin/pkg_create
-PKG_ADD?= ${LOCALBASE}/sbin/pkg_add
-PKG_DELETE?= ${LOCALBASE}/sbin/pkg_delete
-PKG_INFO?= ${LOCALBASE}/sbin/pkg_info
-PKG_VERSION?= ${LOCALBASE}/sbin/pkg_version
-.else
-PKG_CMD?= /usr/sbin/pkg_create
-PKG_ADD?= /usr/sbin/pkg_add
-PKG_DELETE?= /usr/sbin/pkg_delete
-PKG_INFO?= /usr/sbin/pkg_info
-PKG_VERSION?= /usr/sbin/pkg_version
-.endif
-
-# Does the pkg_create tool support conflict checking?
-# XXX Slow?
-.if !defined(PKGINSTALLVER)
-PKGINSTALLVER!= ${PKG_INFO} -P 2>/dev/null | ${SED} -e 's/.*: //'
-.endif
-.if ${PKGINSTALLVER} < 20030417
-DISABLE_CONFLICTS= YES
-.endif
-.if !defined(PKG_ARGS)
-PKG_ARGS= -v -c -${COMMENT:Q} -d ${DESCR} -f ${TMPPLIST} -p ${PREFIX} -P "`cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} package-depends | ${GREP} -v -E ${PKG_IGNORE_DEPENDS} | ${SORT} -u`" ${EXTRA_PKG_ARGS} $${_LATE_PKG_ARGS}
-.if !defined(NO_MTREE)
-PKG_ARGS+= -m ${MTREE_FILE}
-.endif
-.if defined(PKGORIGIN)
-PKG_ARGS+= -o ${PKGORIGIN}
-.endif
-.if defined(CONFLICTS) && !defined(DISABLE_CONFLICTS)
-PKG_ARGS+= -C "${CONFLICTS}"
-.endif
-.if defined(DESTDIR)
-PKG_ARGS+= -S "${DESTDIR}"
-.endif
-.endif
-.if defined(PKG_NOCOMPRESS)
-PKG_SUFX?= .tar
-.else
-.if ${OSVERSION} >= 500039
-PKG_SUFX?= .tbz
-.else
-PKG_SUFX?= .tgz
-.endif
-.endif
-# where pkg_add records its dirty deeds.
-PKG_DBDIR?= /var/db/pkg
-_PKG_DBDIR?= ${DESTDIR}${PKG_DBDIR}
-
-MOTIFLIB?= -L${X11BASE}/lib -lXm -lXp
-
-ALL_TARGET?= all
-INSTALL_TARGET?= install
-
-# This is a mid-term solution patch while pkg-comment files are
-# phased out.
-# The final simpler patch will come afterwards
-.if !defined(COMMENT)
-check-makevars::
- @${ECHO_CMD} 'Makefile error: there is no COMMENT variable defined'
- @${ECHO_CMD} 'for this port. Please, rectify this.'
- @${FALSE}
-.else
-.if exists(${COMMENTFILE})
-check-makevars::
- @${ECHO_CMD} 'Makefile error: There is a COMMENTFILE in this port.'
- @${ECHO_CMD} 'COMMENTFILEs have been deprecated in'
- @${ECHO_CMD} 'favor of COMMENT variables.'
- @${ECHO_CMD} 'Please, rectify this.'
- @${FALSE}
-.endif
-.endif
-
-# Popular master sites
-.include "${PORTSDIR}/Mk/bsd.sites.mk"
-
-# The primary backup site.
-MASTER_SITE_BACKUP?= \
- ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/${DIST_SUBDIR}/
-MASTER_SITE_BACKUP:= ${MASTER_SITE_BACKUP:S^\${DIST_SUBDIR}/^^}
-
-# If the user has MASTER_SITE_FREEBSD set, go to the FreeBSD repository
-# for everything, but don't search it twice by appending it to the end.
-.if defined(MASTER_SITE_FREEBSD)
-_MASTER_SITE_OVERRIDE:= ${MASTER_SITE_BACKUP}
-_MASTER_SITE_BACKUP:= # empty
-.else
-_MASTER_SITE_OVERRIDE= ${MASTER_SITE_OVERRIDE}
-_MASTER_SITE_BACKUP= ${MASTER_SITE_BACKUP}
-.endif
-
-# Search CDROM first if mounted
-.for MOUNTPT in ${CD_MOUNTPTS}
-.if exists(${MOUNTPT}/ports/distfiles)
-_MASTER_SITE_OVERRIDE:= file:${MOUNTPT}/ports/distfiles/${DIST_SUBDIR}/ ${_MASTER_SITE_OVERRIDE}
-.endif
-.endfor
-
-DISTFILES?= ${DISTNAME}${EXTRACT_SUFX}
-
-.if !defined(DISTFILES_KEEP_QUOTING)
-_DISTFILES= ${DISTFILES:C/:[^:]+$//:C/\\\\(.)/\1/g}
-_PATCHFILES= ${PATCHFILES:C/:[^:]+$//:C/\\\\(.)/\1/g}
-.else
-_DISTFILES= ${DISTFILES:C/:[^:]+$//}
-_PATCHFILES= ${PATCHFILES:C/:[^:]+$//}
-.endif
-
-#
-# Sort the master site list according to the patterns in MASTER_SORT
-#
-MASTER_SORT?=
-MASTER_SORT_REGEX?=
-MASTER_SORT_REGEX+= ${MASTER_SORT:S|.|\\.|g:S|^|://[^/]*|:S|$|/|}
-
-MASTER_SORT_AWK= BEGIN { RS = " "; ORS = " "; IGNORECASE = 1 ; gl = "${MASTER_SORT_REGEX:S|\\|\\\\|g}"; }
-.for srt in ${MASTER_SORT_REGEX}
-MASTER_SORT_AWK+= /${srt:S|/|\\/|g}/ { good["${srt:S|\\|\\\\|g}"] = good["${srt:S|\\|\\\\|g}"] " " $$0 ; next; }
-.endfor
-MASTER_SORT_AWK+= { rest = rest " " $$0; } END { n=split(gl, gla); for(i=1;i<=n;i++) { print good[gla[i]]; } print rest; }
-
-.if defined(MASTER_SORT_FPING) && exists(${PERL5}) && exists(${LOCALBASE}/sbin/fping)
-MASTER_SORT_CMD?= ${PERL5} -w ${PORTSDIR}/devel/portmk/scripts/ranksites-fping.pl
-.elif defined(MASTER_SORT_GEOIP) && defined(CC_HOME) && exists(${PERL5}) && exists(${SITE_PERL}/${PERL_ARCH}/Geo/IP.pm)
-MASTER_SORT_CMD?= ${PERL5} -w ${PORTSDIR}/devel/portmk/scripts/ranksites-geoip.pl
-MASTER_SORT_ENV+= CC_HOME=${CC_HOME}
-.endif
-
-# This is what is actually going to be extracted, and is overridable
-# by user.
-EXTRACT_ONLY?= ${_DISTFILES}
-
-# Documentation
-.EXEC: maintainer
-.if !target(maintainer)
-maintainer:
- @${ECHO_CMD} "${MAINTAINER}"
-.endif
-
-.EXEC: check-makefile
-.if !target(check-makefile)
-check-makefile::
- @${DO_NADA}
-.endif
-
-.EXEC: check-categories
-.if !defined(CATEGORIES)
-check-categories:
- @${ECHO_CMD} "${PKGNAME}: Makefile error: CATEGORIES is mandatory."
- @${FALSE}
-.else
-
-VALID_CATEGORIES+= accessibility afterstep arabic archivers astro audio \
- benchmarks biology cad chinese comms converters databases \
- deskutils devel dns editors elisp emulators finance french ftp \
- games german gnome graphics haskell hebrew hungarian \
- ipv6 irc japanese java kde korean lang linux lisp \
- mail math mbone misc multimedia net net-mgmt news \
- offix palm parallel pear perl5 picobsd plan9 polish portuguese print \
- python ruby russian \
- scheme science security shells sysutils \
- tcl80 tcl81 tcl82 tcl83 tcl84 textproc \
- tk80 tk82 tk83 tk84 tkstep80 \
- ukrainian vietnamese windowmaker www \
- x11 x11-clocks x11-fm x11-fonts x11-servers x11-themes x11-toolkits \
- x11-wm xfce zope
-
-check-categories:
-.for cat in ${CATEGORIES}
- @if ${ECHO_CMD} ${VALID_CATEGORIES} | ${GREP} -wq ${cat}; then \
- ${TRUE}; \
- else \
- ${ECHO_CMD} "${PKGNAME}: Makefile error: category ${cat} not in list of valid categories."; \
- ${FALSE}; \
- fi
-.endfor
-.endif
-
-.EXEC: check-makevars
-.if !target(check-makevars)
-check-makevars::
- @${DO_NADA}
-.endif
-
-.EXEC: check-depends
-.if !target(check-depends)
-check-depends:
- @${DO_NADA}
-.endif
-
-PKGREPOSITORYSUBDIR?= All
-PKGREPOSITORY?= ${PACKAGES}/${PKGREPOSITORYSUBDIR}
-.if exists(${PACKAGES})
-PKGFILE?= ${PKGREPOSITORY}/${PKGNAME}${PKG_SUFX}
-.else
-PKGFILE?= ${.CURDIR}/${PKGNAME}${PKG_SUFX}
-.endif
-
-# The "latest version" link -- ${PKGNAME} minus everthing after the last '-'
-PKGLATESTREPOSITORY?= ${PACKAGES}/Latest
-PKGBASE?= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}
-LATEST_LINK?= ${PKGBASE}
-PKGLATESTFILE= ${PKGLATESTREPOSITORY}/${LATEST_LINK}${PKG_SUFX}
-
-.if defined(PERL_CONFIGURE)
-CONFIGURE_ARGS+= CC="${CC}" CCFLAGS="${CFLAGS}" PREFIX="${PREFIX}" \
- INSTALLPRIVLIB="${PREFIX}/lib" INSTALLARCHLIB="${PREFIX}/lib"
-CONFIGURE_SCRIPT?= Makefile.PL
-MAN3PREFIX?= ${PREFIX}/lib/perl5/${PERL_VERSION}
-.undef HAS_CONFIGURE
-.endif
-
-CONFIGURE_SCRIPT?= configure
-CONFIGURE_TARGET?= ${MACHINE_ARCH}-portbld-freebsd${OSREL}
-CONFIGURE_LOG?= config.log
-
-# A default message to print if do-configure fails.
-CONFIGURE_FAIL_MESSAGE?= "Please report the problem to ${MAINTAINER} [maintainer] and attach the \"${CONFIGURE_WRKSRC}/${CONFIGURE_LOG}\" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an \`ls ${PKG_DBDIR}\`)."
-
-.if defined(GNU_CONFIGURE)
-# Maximum command line length
-.if !defined(CONFIGURE_MAX_CMD_LEN)
-.if exists(/sbin/sysctl)
-CONFIGURE_MAX_CMD_LEN!= /sbin/sysctl -n kern.argmax
-.else
-CONFIGURE_MAX_CMD_LEN!= /usr/sbin/sysctl -n kern.argmax
-.endif
-.endif
-CONFIGURE_ARGS+= --prefix=${PREFIX} ${CONFIGURE_TARGET}
-CONFIGURE_ENV+= lt_cv_sys_max_cmd_len=${CONFIGURE_MAX_CMD_LEN}
-HAS_CONFIGURE= yes
-.endif
-
-# Passed to most of script invocations
-SCRIPTS_ENV+= CURDIR=${MASTERDIR} DISTDIR=${DISTDIR} \
- WRKDIR=${WRKDIR} WRKSRC=${WRKSRC} PATCHDIR=${PATCHDIR} \
- SCRIPTDIR=${SCRIPTDIR} FILESDIR=${FILESDIR} \
- PORTSDIR=${PORTSDIR} DEPENDS="${DEPENDS}" \
- PREFIX=${PREFIX} LOCALBASE=${LOCALBASE} X11BASE=${X11BASE} \
- DESTDIR=${DESTDIR}
-
-.if defined(BATCH)
-SCRIPTS_ENV+= BATCH=yes
-.endif
-
-.if ${PREFIX} == /usr
-MANPREFIX?= /usr/share
-.else
-MANPREFIX?= ${PREFIX}
-.endif
-
-.for sect in 1 2 3 4 5 6 7 8 9
-MAN${sect}PREFIX?= ${MANPREFIX}
-.endfor
-MANLPREFIX?= ${MANPREFIX}
-MANNPREFIX?= ${MANPREFIX}
-
-MANLANG?= "" # english only by default
-
-.if !defined(NOMANCOMPRESS)
-MANEXT= .gz
-.endif
-
-.if (defined(MLINKS) || defined(_MLINKS_PREPEND)) && !defined(_MLINKS)
-__pmlinks!= ${ECHO_CMD} '${MLINKS:S/ / /}' | ${AWK} \
- '{ if (NF % 2 != 0) { print "broken"; exit; } \
- for (i=1; i<=NF; i++) { \
- if ($$i ~ /^-$$/ && i != 1 && i % 2 != 0) \
- { $$i = $$(i-2); printf " " $$i " "; } \
- else if ($$i ~ /^[^ ]+\.[1-9ln][^. ]*$$/ || $$i ~ /^\//) \
- printf " " $$i " "; \
- else \
- { print "broken"; exit; } \
- } \
- }' | ${SED} -e 's \([^/ ][^ ]*\.\(.\)[^. ]*\) $${MAN\2PREFIX}/$$$$$$$${__lang}/man\2/\1${MANEXT}g' -e 's/ //g' -e 's/MANlPREFIX/MANLPREFIX/g' -e 's/MANnPREFIX/MANNPREFIX/g'
-.if ${__pmlinks:Mbroken} == broken
-check-makevars::
- @${ECHO_CMD} "${PKGNAME}: Makefile error: unable to parse MLINKS."
- @${FALSE}
-.endif
-_MLINKS= ${_MLINKS_PREPEND}
-# XXX 20040119 This next line should read:
-# .for lang in ${MANLANG:S%^%man/%:S%^man/""$%man%}
-# but there is currently a bug in make(1) that prevents the double-quote
-# substitution from working correctly. Once that problem is addressed,
-# and has had a enough time to mature, this hack should be removed.
-.for lang in ${MANLANG:S%^%man/%:S%^man/""$%man%:S%^man/"$%man%}
-.for ___pmlinks in ${__pmlinks}
-.for __lang in ${lang}
-_MLINKS+= ${___pmlinks:S// /g}
-.endfor
-.endfor
-.endfor
-.endif
-_COUNT=0
-.for ___tpmlinks in ${_MLINKS}
-.if ${_COUNT} == 1
-_TMLINKS+= ${___tpmlinks}
-_COUNT=0
-.else
-_COUNT=1
-.endif
-.endfor
-
-# XXX 20040119 This next line should read:
-# .for manlang in ${MANLANG:S%^%man/%:S%^man/""$%man%}
-# but there is currently a bug in make(1) that prevents the double-quote
-# substitution from working correctly. Once that problem is addressed,
-# and has had a enough time to mature, this hack should be removed.
-.for manlang in ${MANLANG:S%^%man/%:S%^man/""$%man%:S%^man/"$%man%}
-
-.for sect in 1 2 3 4 5 6 7 8 9 L N
-.if defined(MAN${sect})
-_MANPAGES+= ${MAN${sect}:S%^%${MAN${sect}PREFIX}/${manlang}/man${sect:L}/%}
-.endif
-.endfor
-
-.endfor
-
-.if !defined(_TMLINKS)
-_TMLINKS=
-.endif
-
-.if defined(_MANPAGES)
-
-.if defined(NOMANCOMPRESS)
-__MANPAGES:= ${_MANPAGES:S%^${PREFIX}/%%}
-.else
-__MANPAGES:= ${_MANPAGES:S%^${PREFIX}/%%:S%$%.gz%}
-.endif
-
-.if ${MANCOMPRESSED:L} == yes
-_MANPAGES:= ${_MANPAGES:S%$%.gz%}
-.endif
-
-.endif
-
-.if ${PREFIX} == /usr
-INFO_PATH?= share/info
-.else
-INFO_PATH?= info
-.endif
-
-DOCSDIR?= ${PREFIX}/share/doc/${PORTNAME}
-EXAMPLESDIR?= ${PREFIX}/share/examples/${PORTNAME}
-DATADIR?= ${PREFIX}/share/${PORTNAME}
-
-PLIST_SUB+= DOCSDIR="${DOCSDIR:S,^${PREFIX}/,,}" \
- EXAMPLESDIR="${EXAMPLESDIR:S,^${PREFIX}/,,}" \
- DATADIR="${DATADIR:S,^${PREFIX}/,,}"
-
-# Put this as far down as possible so it will catch all PLIST_SUB definitions.
-
-.if defined(INSTALLS_SHLIB)
-LDCONFIG_DIRS?= %%PREFIX%%/lib
-LDCONFIG_PLIST!= ${ECHO_CMD} ${LDCONFIG_DIRS} | ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/}
-LDCONFIG_RUNLIST!= ${ECHO_CMD} ${LDCONFIG_PLIST} | ${SED} -e "s!%D!${PREFIX}!g"
-.endif
-
-.MAIN: all
-
-################################################################
-# Many ways to disable a port.
-#
-# If we're in BATCH mode and the port is interactive, or we're
-# in interactive mode and the port is non-interactive, skip all
-# the important targets. The reason we have two modes is that
-# one might want to leave a build in BATCH mode running
-# overnight, then come back in the morning and do _only_ the
-# interactive ones that required your intervention.
-#
-# Ignore ports that can't be resold if building for a CDROM.
-#
-# Don't build a port if it's restricted and we don't want to get
-# into that.
-#
-# Don't build a port on an ELF machine if it's broken for ELF.
-#
-# Don't build a port if it's broken, unless we're running a parallel
-# build (in case it's fixed).
-#
-# Don't build a port if it's forbidden for whatever reason.
-#
-# Don't build a port if the system is too old.
-################################################################
-
-.if ${OSVERSION} < 420000
-# You need an upgrade kit or make world newer than this
-IGNORE= ": Your system is too old to use this bsd.port.mk. You need a fresh make world or an upgrade kit. Please go to http://www.FreeBSD.org/ports/ or a mirror site and follow the instructions"
-.endif
-
-.if defined(ONLY_FOR_ARCHS)
-.for __ARCH in ${ONLY_FOR_ARCHS}
-.if ${MACHINE_ARCH:M${__ARCH}} != ""
-__ARCH_OK?= 1
-.endif
-.endfor
-.else
-__ARCH_OK?= 1
-.endif
-
-.if defined(NOT_FOR_ARCHS)
-.for __NARCH in ${NOT_FOR_ARCHS}
-.if ${MACHINE_ARCH:M${__NARCH}} != ""
-.undef __ARCH_OK
-.endif
-.endfor
-.endif
-
-.if !defined(__ARCH_OK)
-.if defined(ONLY_FOR_ARCHS)
-IGNORE= "is only for ${ONLY_FOR_ARCHS},"
-.else # defined(NOT_FOR_ARCHS)
-IGNORE= "does not run on ${NOT_FOR_ARCHS},"
-.endif
-IGNORE+= "and you are running ${ARCH}"
-.endif
-
-.if !defined(NO_IGNORE)
-.if (defined(IS_INTERACTIVE) && defined(BATCH))
-IGNORE= "is an interactive port"
-.elif (!defined(IS_INTERACTIVE) && defined(INTERACTIVE))
-IGNORE= "is not an interactive port"
-.elif (defined(NO_CDROM) && defined(FOR_CDROM))
-IGNORE= "may not be placed on a CDROM: ${NO_CDROM}"
-.elif (defined(RESTRICTED) && defined(NO_RESTRICTED))
-IGNORE= "is restricted: ${RESTRICTED}"
-.elif defined(BROKEN)
-.if !defined(TRYBROKEN)
-IGNORE= "is marked as broken: ${BROKEN}"
-.endif
-.elif defined(FORBIDDEN)
-IGNORE= "is forbidden: ${FORBIDDEN}"
-.endif
-
-.if (defined(MANUAL_PACKAGE_BUILD) && defined(PACKAGE_BUILDING) && !defined(PARALLEL_PACKAGE_BUILD))
-IGNORE= "has to be built manually: ${MANUAL_PACKAGE_BUILD}"
-clean:
- @${IGNORECMD}
-.endif
-
-.if defined(IGNORE)
-.if defined(IGNORE_SILENT)
-IGNORECMD= ${DO_NADA}
-.else
-IGNORECMD= ${ECHO_MSG} "===> ${PKGNAME} ${IGNORE}."
-.endif
-
-.for target in check-sanity fetch checksum extract patch configure all build install reinstall package
-${target}:
- @${IGNORECMD}
-.if defined(INSTALLS_DEPENDS)
- @${FALSE}
-.endif
-.endfor
-
-.endif
-
-.endif
-
-.if defined(IGNORE) || defined(NO_PACKAGE)
-ignorelist: package-name
-.else
-ignorelist:
- @${DO_NADA}
-.endif
-
-################################################################
-# Clean directories for ftp or CDROM.
-################################################################
-
-.if defined(RESTRICTED)
-clean-restricted: delete-distfiles delete-package
-clean-restricted-list: delete-distfiles-list delete-package-list
-RESTRICTED_FILES?= ${_DISTFILES} ${_PATCHFILES}
-.else
-clean-restricted:
-clean-restricted-list:
-.endif
-
-.if defined(NO_CDROM)
-clean-for-cdrom: delete-distfiles delete-package
-clean-for-cdrom-list: delete-distfiles-list delete-package-list
-RESTRICTED_FILES?= ${_DISTFILES} ${_PATCHFILES}
-.else
-clean-for-cdrom:
-clean-for-cdrom-list:
-.endif
-
-.if defined(ALL_HOOK)
-all:
- @cd ${.CURDIR} && ${SETENV} CURDIR=${.CURDIR} DISTNAME=${DISTNAME} \
- DISTDIR=${DISTDIR} WRKDIR=${WRKDIR} WRKSRC=${WRKSRC} \
- PATCHDIR=${PATCHDIR} SCRIPTDIR=${SCRIPTDIR} \
- FILESDIR=${FILESDIR} PORTSDIR=${PORTSDIR} PREFIX=${PREFIX} \
- DESTDIR=${DESTDIR} \
- DEPENDS="${DEPENDS}" BUILD_DEPENDS="${BUILD_DEPENDS}" \
- RUN_DEPENDS="${RUN_DEPENDS}" X11BASE=${X11BASE} \
- CONFLICTS="${CONFLICTS}" \
- ${ALL_HOOK}
-.endif
-
-.if !target(all)
-all: build
-.endif
-
-.if !defined(DEPENDS_TARGET)
-.if make(reinstall)
-DEPENDS_TARGET= reinstall
-.else
-DEPENDS_TARGET= install
-.endif
-.if defined(DEPENDS_CLEAN)
-DEPENDS_TARGET+= clean
-DEPENDS_ARGS+= NOCLEANDEPENDS=yes
-.endif
-.else
-DEPENDS_ARGS+= FORCE_PKG_REGISTER=yes
-.endif
-.if defined(DEPENDS)
-# pretty much guarantees overwrite of existing installation
-.MAKEFLAGS: FORCE_PKG_REGISTER=yes
-.endif
-
-################################################################
-#
-# Do preliminary work to detect if we need to run the config
-# target or not.
-#
-################################################################
-.if (defined(_OPTIONSNG_READ) || !defined(OPTIONS) || defined(CONFIG_DONE) || \
- defined(PACKAGE_BUILDING) || defined(BATCH) || \
- exists(${_OPTIONSFILE}) || exists(${_OPTIONSFILE}.local))
-_OPTIONS_OK=yes
-.endif
-
-################################################################
-# The following are used to create easy dummy targets for
-# disabling some bit of default target behavior you don't want.
-# They still check to see if the target exists, and if so don't
-# do anything, since you might want to set this globally for a
-# group of ports in a Makefile.inc, but still be able to
-# override from an individual Makefile.
-################################################################
-
-# Disable checksum
-.if defined(NO_CHECKSUM) && !target(checksum) && defined(_OPTIONS_OK)
-checksum: fetch
- @${DO_NADA}
-.endif
-
-# Disable build
-.if defined(NO_BUILD) && !target(build) && defined(_OPTIONS_OK)
-build: configure
- @${TOUCH} ${TOUCH_FLAGS} ${BUILD_COOKIE}
-.endif
-
-# Disable install
-.if defined(NO_INSTALL) && !target(install) && defined(_OPTIONS_OK)
-install: build
- @${TOUCH} ${TOUCH_FLAGS} ${INSTALL_COOKIE}
-.endif
-
-# Disable package
-.if defined(NO_PACKAGE) && !target(package) && defined(_OPTIONS_OK)
-package:
-.if defined(IGNORE_SILENT)
- @${DO_NADA}
-.else
- @${ECHO_MSG} "===> ${PKGNAME} may not be packaged: ${NO_PACKAGE}."
-.endif
-.endif
-
-# Disable describe
-.if defined(NO_DESCRIBE) && !target(describe)
-describe:
- @${DO_NADA}
-.endif
-
-################################################################
-# More standard targets start here.
-#
-# These are the body of the build/install framework. If you are
-# not happy with the default actions, and you can't solve it by
-# adding pre-* or post-* targets/scripts, override these.
-################################################################
-
-# Pre-everything
-
-# XXX MCL suggests deprecating this in favor of something
-# less likely to be abused by overloading
-pre-everything::
- @${DO_NADA}
-
-buildanyway-message:
-.if defined(TRYBROKEN)
- @${ECHO_MSG} "Trying build of ${PKGNAME} even though it is marked BROKEN."
-.else
- @${DO_NADA}
-.endif
-
-options-message:
-.if defined(GNOME_OPTION_MSG) && (!defined(PACKAGE_BUILDING) || !defined(BATCH))
- @for m in ${GNOME_OPTION_MSG}; do \
- ${ECHO_MSG} $$m; \
- done
-.else
- @${DO_NADA}
-.endif
-.if defined(_OPTIONSNG_READ)
-.if ${_OPTIONSNG_READ} == default
- @${ECHO_MSG} "===> Building with default configuration, \`make config' to customize."
-.else
- @${ECHO_MSG} "===> Building with saved configuration for ${_OPTIONSNG_READ}, \`make config' to change."
-.endif
-.elif defined(_OPTIONS_READ)
- @${ECHO_MSG} "===> Found saved configuration for ${_OPTIONS_READ}"
-.if ${OPTIONSFILE} != ${_OPTIONSFILE}
- @${ECHO_MSG} "===> *** CAUTION *** Using wrong configuration file ${_OPTIONSFILE}"
-.endif
-.endif
-
-
-# Warn user about deprecated packages. Advisory only.
-
-.if !target(check-deprecated)
-check-deprecated:
-.if defined(DEPRECATED)
- @${ECHO_MSG} "===> NOTICE:"
- @${ECHO_MSG}
- @${ECHO_MSG} "This port is deprecated; you may wish to reconsider installing it:"
- @${ECHO_MSG}
- @${ECHO_MSG} "${DEPRECATED}."
- @${ECHO_MSG}
-.if defined(EXPIRATION_DATE)
- @${ECHO_MSG} "It is scheduled to be removed on or after ${EXPIRATION_DATE}."
- @${ECHO_MSG}
-.endif
-.endif
-.endif
-
-# Check if the port is listed in the vulnerability database
-
-.if ${PKGINSTALLVER} < 20040623 || ${OSVERSION} < 420001 || ${OSVERSION} >= 500000 && ${OSVERSION} < 500014
-DISABLE_VULNERABILITIES= yes
-.endif
-
-AUDITFILE?= /var/db/portaudit/auditfile.tbz
-AUDITURL?= http://www.FreeBSD.org/ports
-AUDITEXPIRY?= 14
-_EXTRACT_AUDITFILE= ${TAR} -jxOf "${AUDITFILE}" auditfile
-
-.EXEC: update-auditfile
-update-auditfile:
-.if !defined(DISABLE_VULNERABILITIES) && !defined(PACKAGE_BUILDING)
- @audit_expired=${TRUE}; \
- if [ -f "${AUDITFILE}" ]; then \
- audit_created=`${_EXTRACT_AUDITFILE} | \
- ${SED} -nEe "1s/^#CREATED: *([0-9]{4})-?([0-9]{2})-?([0-9]{2}).*$$/\1\2\3/p"`; \
- audit_expiry=`${DATE} -u -v-${AUDITEXPIRY}d "+%Y%m%d"`; \
- if [ "$$audit_created" -lt "$$audit_expiry" ]; then \
- ${ECHO_MSG} ">> Vulnerability database out of date."; \
- else \
- audit_expired=${FALSE}; \
- fi; \
- fi; \
- if $$audit_expired; then \
- if [ ! -w "${AUDITFILE:H}" -a `${ID} -u` != 0 ]; then \
- if [ -z "${INSTALL_AS_USER}" ]; then \
- ${ECHO_MSG} "===> Switching to root credentials to fetch the vulnerability database."; \
- ${SU_CMD} "cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${.TARGET}"; \
- ${ECHO_MSG} "===> Returning to user credentials"; \
- else \
- ${ECHO_MSG} "===> Can't fetch the vulnerability database."; \
- fi; \
- else \
- ${ECHO_MSG} ">> Fetching vulnerability database from ${AUDITURL}."; \
- if [ -f "${AUDITFILE}" ]; then \
- ${MV} -f "${AUDITFILE}" "${AUDITFILE}.old"; \
- else \
- ${MKDIR} "${AUDITFILE:H}"; \
- fi; \
- if ${SETENV} ${FETCH_ENV} ${FETCH_CMD} -o "${AUDITFILE}" "${AUDITURL}/${AUDITFILE:T}"; then \
- ${CHMOD} a+r "${AUDITFILE}"; \
- if [ -f "${AUDITFILE}.old" ]; then \
- ${RM} -f "${AUDITFILE}.old"; \
- fi; \
- else \
- if [ -f "${AUDITFILE}.old" ]; then \
- ${ECHO_MSG} ">> Failed, using old database."; \
- ${MV} -f "${AUDITFILE}.old" "${AUDITFILE}"; \
- fi; \
- fi; \
- fi; \
- fi
-.else
- @${DO_NADA}
-.endif
-
-.EXEC: check-vulnerable
-check-vulnerable: update-auditfile
-.if !defined(DISABLE_VULNERABILITIES) && !defined(PACKAGE_BUILDING)
- @if [ -r "${AUDITFILE}" ]; then \
- if vlist=`${_EXTRACT_AUDITFILE} | ${GREP} -v '^#' | ${PKG_VERSION} -T '${PKGNAME}' -`; then \
- ${ECHO_MSG} "===> ${PKGNAME} has known vulnerabilities:"; \
- ${ECHO_MSG} "$$vlist" | ${AWK} -F\| '{ \
- print ">> " $$3 "."; \
- split($$2, ref, / /); \
- for(r in ref) \
- print " Reference: <" ref[r] ">" \
- }'; \
- ${ECHO_MSG} ">> Please update your ports tree and try again."; \
- exit 1; \
- fi; \
- else \
- ${ECHO_MSG} "===> Vulnerability check disabled, database not found."; \
- fi
-.else
- @${ECHO_MSG} "===> Vulnerability check disabled."
-.endif
-
-
-# Next generation options handling
-
-.if exists(${PERL5})
-OPTIONS_CMD?= ${PERL} -w ${PORTSDIR}/devel/portmk/scripts/options.pl
-.else
-OPTIONS_CMD?= eval ${ECHO_CMD} ">> ${PKGNAME}: ${PERL5} requried, please install ${PERL_PORT}."; exit 1
-.endif
-
-OPTIONS_SH?= ${PORTSDIR}/devel/portmk/scripts/options.sh
-
-_OPTIONS_ENV= \
- CURDIR='${.CURDIR}' \
- OBJDIR='${.OBJDIR}' \
- MASTERDIR='${MASTERDIR}' \
- PKGNAME='${PKGNAME}' \
- PKGNAMESUFFIX='${PKGNAMESUFFIX}' \
- OPTIONS_MASTER='${OPTIONS_MASTER}' \
- OPTIONS_OVERRIDE='${OPTIONS_OVERRIDE}' \
- OPTIONS_FILE='${OPTIONS_FILE}' \
- OPTIONS_CMD='${OPTIONS_CMD}'
-
-.EXEC: config
-.EXEC: showconfig
-.EXEC: rmconfig
-.EXEC: menuconfig
-
-.if defined(_OPTIONSNG_READ)
-
-.if !target(config)
-config:
- @${_OPTIONS_ENV}; \
- set -- -e; \
- . '${OPTIONS_SH}'
-.endif
-
-.if !target(menuconfig)
-menuconfig:
- @${ECHO_MSG} "===> ${PKGNAME}: menuconfig is a reserved target."
- @${FALSE}
- @${_OPTIONS_ENV}; \
- set -- -g; \
- . '${OPTIONS_SH}'
-.endif
-
-.if !target(rmconfig)
-rmconfig:
- @${ECHO_MSG} "===> ${PKGNAME}: Reverting to default configuration."
- @${_OPTIONS_ENV}; \
- set -- -d; \
- . '${OPTIONS_SH}'
-.endif
-
-.if !target(showconfig)
-showconfig:
- @${ECHO_MSG} "===> ${PKGNAME}: menuconfig is a reserved target."
- @${FALSE}
- @${_OPTIONS_ENV}; \
- set -- -l; \
- . '${OPTIONS_SH}'
-.endif
-
-.elif !defined(OPTIONS)
-
-.if !target(config)
-config:
- @${ECHO_MSG} "===> ${PKGNAME} has no configurable options."
-.endif
-
-.if !target(menuconfig)
-menuconfig:
- @${ECHO_MSG} "===> ${PKGNAME} has no configurable options."
-.endif
-
-.if !target(rmconfig)
-rmconfig:
- @${ECHO_MSG} "===> ${PKGNAME} has no configurable options."
-.endif
-
-.if !target(showconfig)
-showconfig:
- @${ECHO_MSG} "===> ${PKGNAME} has no configurable options."
-.endif
-
-.else
-
-menuconfig: config
- @${DO_NADA}
-
-.endif
-
-.EXEC: makeconfig
-.if !target(makeconfig)
-makeconfig:
- @${_OPTIONS_ENV}; \
- set -- -c; \
- . '${OPTIONS_SH}'
-.endif
-
-.EXEC: config-recursive
-.if !target(config-recursive)
-config-recursive:
- @${ECHO_MSG} "===> ${PKGNAME}: config-recursive is a reserved target."
- @${FALSE}
-.endif
-
-# New style distfile handling
-
-DISTFILES_SH?= ${PORTSDIR}/devel/portmk/scripts/distfiles.sh
-
-DISTINFO_ALGORITHMS?= MD5
-VALID_ALGORITHMS= MD5 SHA1 RMD160
-
-MK_FILE?= ${MASTERDIR}/Makefile
-
-.if !defined(DISTFILES_KEEP_QUOTING)
-_FETCHDISTFILES_ENV= \
- DISTFILES=${DISTFILES:C/\\\\(.)/\1/g:Q}; \
- PATCHFILES=${PATCHFILES:C/\\\\(.)/\1/g:Q}
-.else
-_FETCHDISTFILES_ENV= \
- DISTFILES=${DISTFILES:Q}; \
- PATCHFILES=${PATCHFILES:Q}
-.endif
-.for env in \
- MASTER_SITES MASTER_SITE_SUBDIR PATCH_SITES PATCH_SITE_SUBDIR \
- _MASTER_SITE_BACKUP _MASTER_SITE_OVERRIDE \
- DISABLE_SIZE DISTDIR DISTINFO_ALGORITHMS DISTINFO_LABEL \
- DIST_SUBDIR ECHO_MSG FETCH_AFTER_ARGS FETCH_BEFORE_ARGS \
- FETCH_CMD FETCH_SYMLINK_DISTFILES IGNOREFILES LOCALBASE \
- MASTER_SORT_AWK MASTER_SORT_CMD MASTER_SORT_ENV MD5_FILE \
- MK_FILE NO_CHECKSUM NO_SIZE OSVERSION PERL5 VALID_ALGORITHMS
-_FETCHDISTFILES_ENV+= ; ${env}='${${env}}'
-.endfor
-.if ${OSVERSION} >= 460000 # XXX This does not work with older make(1)s
-.for env in ${VALID_ALGORITHMS} SIZE
-_FETCHDISTFILES_ENV+= ; DISTINFO_${env}='${DISTINFO${DISTINFO_LABEL:C/^./_&/}_${env}}'
-.endfor
-.endif
-
-.EXEC: do-fetch
-.if !target(do-fetch)
-do-fetch:
- @${_FETCHDISTFILES_ENV}; \
- set -- -f; \
- . '${DISTFILES_SH}'
-.endif
-
-.EXEC: checksum
-.if !target(checksum)
-checksum: fetch
- @${DO_NADA}
-.endif
-
-.EXEC: makesum
-.if !target(makesum)
-makesum:
-.if !defined(FETCH_ALL)
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} FETCH_ALL=yes ${__softMAKEFLAGS} ${.TARGET}
-.else
- @${_FETCHDISTFILES_ENV}; \
- set -- -m; \
- . '${DISTFILES_SH}'
-.endif
-.endif
-
-.EXEC: master-sites-all
-.if !target(master-sites-all)
-master-sites-all:
- @${_FETCHDISTFILES_ENV}; \
- set -- -t ''; \
- . '${DISTFILES_SH}'
-.endif
-
-.EXEC: master-sites
-.if !target(master-sites)
-master-sites:
- @${_FETCHDISTFILES_ENV}; \
- set -- -t 'DEFAULT'; \
- . '${DISTFILES_SH}'
-.endif
-
-.EXEC: patch-sites-all
-.if !target(patch-sites-all)
-patch-sites-all:
- @${_FETCHDISTFILES_ENV}; \
- set -- -T ''; \
- . '${DISTFILES_SH}'
-.endif
-
-.EXEC: patch-sites
-.if !target(patch-sites)
-patch-sites:
- @${_FETCHDISTFILES_ENV}; \
- set -- -T 'DEFAULT'; \
- . '${DISTFILES_SH}'
-.endif
-
-.EXEC: migratesum
-.if !target(migratesum)
-migratesum:
- @${_FETCHDISTFILES_ENV}; \
- set -- -M; \
- . '${DISTFILES_SH}'
-.endif
-
-.EXEC: migratesum2
-.if !target(migratesum2)
-migratesum2:
- @${_FETCHDISTFILES_ENV}; \
- set -- -N; \
- . '${DISTFILES_SH}'
-.endif
-
-.EXEC: checkdistsites
-.if !target(checkdistsites)
-checkdistsites:
-.if !defined(FETCH_ALL)
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} FETCH_ALL=yes ${__softMAKEFLAGS} ${.TARGET}
-.else
- @${_FETCHDISTFILES_ENV}; \
- set -- -F; \
- . '${DISTFILES_SH}'
-.endif
-.endif
-
-.EXEC: checkdistfiles-recursive
-.if !target(checkdistfiles-recursive)
-checkdistfiles-recursive:
-.if defined(_ONG_REEXEC)
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${.TARGET}
-.else
- @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \
- (cd $$dir; ${MAKE} ${__softMAKEFLAGS} checkdistfiles); \
- done
-.endif
-.endif
-
-# Prints out the total size of files missing in ${DISTDIR}
-
-_MISSING_SIZE_SUMMARY= \
- ${AWK} ' \
- BEGIN {t=0; f=0; u=0} \
- {if ($$1 > 0) {t+=$$1; f+=1} else {u+=1}} \
- END { \
- if (t >= 10^9) \
- s=sprintf("%.2f GBytes", t/10^9); \
- else if (t >= 10^6) \
- s=sprintf("%.2f MBytes", t/10^6); \
- else if (t >= 10^3) \
- s=sprintf("%.2f KBytes", t/10^3); \
- else \
- s=t " Bytes"; \
- msg=ENVIRON["MISSING_MSG"] \
- f " file(s) with a total size of " s; \
- if (u) msg=msg " and " u " file(s) with unknown size."; \
- print msg \
- } \
- '
-
-.EXEC: missing-size
-.if !target(missing-size)
-missing-size:
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} print-missing-files \
- | ${SETENV} MISSING_MSG="To install ${PKGNAME}, you have to fetch " ${_MISSING_SIZE_SUMMARY}
-.endif
-
-.EXEC: missing-recursive-size
-.if !target(missing-recursive-size)
-missing-recursive-size:
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} print-missing-recursive-files \
- | ${SETENV} MISSING_MSG="To install ${PKGNAME} and its dependencies, you have to fetch " ${_MISSING_SIZE_SUMMARY}
-.endif
-
-.EXEC: print-missing-recursive-files
-.if !target(print-missing-recursive-files)
-print-missing-recursive-files:
-.if defined(_ONG_REEXEC)
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${.TARGET}
-.else
- @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \
- (cd $$dir; ${MAKE} print-missing-files); \
- done | ${SORT} -u +1;
-.endif
-.endif
-
-.EXEC: print-missing-files
-.if !target(print-missing-files)
-print-missing-files:
- @${_FETCHDISTFILES_ENV}; \
- set -- -S; \
- . '${DISTFILES_SH}'
-.endif
-
-.EXEC: fetch-list
-.if !target(fetch-list)
-fetch-list:
- @${_FETCHDISTFILES_ENV}; \
- set -- -L; \
- . '${DISTFILES_SH}'
-.endif
-
-# Extract
-
-.EXEC: do-extract
-.if !target(do-extract)
-do-extract:
- @${RM} -rf ${WRKDIR}
- @${MKDIR} ${WRKDIR}
-.for file in ${EXTRACT_ONLY}
- @cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} "${_DISTDIR}/${file}" ${EXTRACT_AFTER_ARGS}
-.endfor
-.if !defined(EXTRACT_PRESERVE_OWNERSHIP)
- @if [ `${ID} -u` = 0 ]; then \
- ${CHMOD} -R ug-s ${WRKDIR}; \
- ${CHOWN} -R 0:0 ${WRKDIR}; \
- fi
-.endif
-.endif
-
-# Patch
-
-.if !target(do-patch)
-do-patch:
-.if defined(PATCHFILES)
- @${ECHO_MSG} "===> Applying distribution patches for ${PKGNAME}"
- @(cd ${_DISTDIR}; \
- for i in ${_PATCHFILES}; do \
- if [ ${PATCH_DEBUG_TMP} = yes ]; then \
- ${ECHO_MSG} "===> Applying distribution patch $$i" ; \
- fi; \
- case $$i in \
- *.Z|*.gz) \
- ${GZCAT} "$$i" | ${PATCH} ${PATCH_DIST_ARGS}; \
- ;; \
- *.bz2) \
- ${BZCAT} "$$i" | ${PATCH} ${PATCH_DIST_ARGS}; \
- ;; \
- *) \
- ${PATCH} ${PATCH_DIST_ARGS} < "$$i"; \
- ;; \
- esac; \
- done)
-.endif
-.if defined(EXTRA_PATCHES)
- @for i in ${EXTRA_PATCHES}; do \
- ${ECHO_MSG} "===> Applying extra patch $$i"; \
- ${PATCH} ${PATCH_ARGS} < "$$i"; \
- done
-.endif
- @if [ -d ${PATCHDIR} ]; then \
- if [ "`${ECHO_CMD} ${PATCHDIR}/patch-*`" != "${PATCHDIR}/patch-*" ]; then \
- ${ECHO_MSG} "===> Applying ${OPSYS} patches for ${PKGNAME}" ; \
- PATCHES_APPLIED="" ; \
- for i in ${PATCHDIR}/patch-*; do \
- case $$i in \
- *.orig|*.rej|*~|*,v) \
- ${ECHO_MSG} "===> Ignoring patchfile $$i" ; \
- ;; \
- *) \
- if [ ${PATCH_DEBUG_TMP} = yes ]; then \
- ${ECHO_MSG} "===> Applying ${OPSYS} patch $$i" ; \
- fi; \
- if ${PATCH} ${PATCH_ARGS} < "$$i" ; then \
- PATCHES_APPLIED="$$PATCHES_APPLIED $$i" ; \
- else \
- ${ECHO_MSG} `${ECHO_CMD} ">> Patch $$i failed to apply cleanly." | ${SED} "s|${PATCHDIR}/||"` ; \
- if [ x"$$PATCHES_APPLIED" != x"" ]; then \
- ${ECHO_MSG} `${ECHO_CMD} ">> Patch(es) $$PATCHES_APPLIED applied cleanly." | ${SED} "s|${PATCHDIR}/||g"` ; \
- fi; \
- ${FALSE} ; \
- fi; \
- ;; \
- esac; \
- done; \
- fi; \
- fi
-.endif
-
-# Configure
-
-.if !target(do-configure)
-do-configure:
- @if [ -f ${SCRIPTDIR}/configure ]; then \
- cd ${.CURDIR} && ${SETENV} ${SCRIPTS_ENV} ${SH} \
- ${SCRIPTDIR}/configure; \
- fi
-.if defined(GNU_CONFIGURE)
- @CONFIG_GUESS_DIRS=$$(${FIND} ${WRKDIR} -name config.guess -o -name config.sub \
- | ${XARGS} -n 1 ${DIRNAME}); \
- for _D in $${CONFIG_GUESS_DIRS}; do \
- ${CP} -f ${TEMPLATES}/config.guess $${_D}/config.guess; \
- ${CHMOD} a+rx $${_D}/config.guess; \
- ${CP} -f ${TEMPLATES}/config.sub $${_D}/config.sub; \
- ${CHMOD} a+rx $${_D}/config.sub; \
- done
-.endif
-.if defined(HAS_CONFIGURE)
- @(cd ${CONFIGURE_WRKSRC} && \
- if ! ${SETENV} CC="${CC}" CXX="${CXX}" \
- CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
- INSTALL="/usr/bin/install -c ${_BINOWNGRP}" \
- INSTALL_DATA="${INSTALL_DATA}" \
- INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
- INSTALL_SCRIPT="${INSTALL_SCRIPT}" \
- ${CONFIGURE_ENV} ./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}; then \
- ${ECHO_CMD} "===> Script \"${CONFIGURE_SCRIPT}\" failed unexpectedly."; \
- (${ECHO_CMD} ${CONFIGURE_FAIL_MESSAGE}) | ${FMT} 75 79 ; \
- ${FALSE}; \
- fi)
-.endif
-.if defined(PERL_CONFIGURE)
- @cd ${CONFIGURE_WRKSRC} && \
- ${SETENV} ${CONFIGURE_ENV} \
- ${PERL5} ./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}
-.if !defined(PERL_MODBUILD)
- @cd ${CONFIGURE_WRKSRC} && \
- ${PERL5} -pi -e 's/ doc_(perl|site|\$$\(INSTALLDIRS\))_install$$//' Makefile
-.if ${PERL_LEVEL} <= 500503
- @cd ${CONFIGURE_WRKSRC} && \
- ${PERL5} -pi -e 's/^(INSTALLSITELIB|INSTALLSITEARCH|SITELIBEXP|SITEARCHEXP|INSTALLMAN1DIR|INSTALLMAN3DIR) = \/usr\/local/$$1 = \$$(PREFIX)/' Makefile
-.endif
-.endif
-.endif
-.if defined(USE_IMAKE)
- @(cd ${CONFIGURE_WRKSRC}; ${SETENV} ${MAKE_ENV} ${XMKMF})
-.endif
-.endif
-
-# Build
-
-.EXEC: do-build
-.if !target(do-build)
-do-build:
-.if defined(USE_GMAKE)
- @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
-.else
-.if defined(PERL_MODBUILD)
- @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} ${PL_BUILD} ${MAKE_ARGS} ${ALL_TARGET})
-.else
- @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
-.endif
-.endif
-.endif
-
-# Check conflicts
-
-.EXEC: check-conflicts
-.if !target(check-conflicts)
-check-conflicts:
-.if defined(CONFLICTS) && !defined(DISABLE_CONFLICTS)
- @found=`${SETENV} PKG_DBDIR=${_PKG_DBDIR} ${PKG_INFO} -I ${CONFLICTS:C/.+/'&'/} 2>/dev/null | ${AWK} '{print $$1}'`; \
- conflicts_with=; \
- for entry in $${found}; do \
- prfx=`${SETENV} PKG_DBDIR=${_PKG_DBDIR} ${PKG_INFO} -q -p "$${entry}" 2> /dev/null | ${SED} -ne '1s/^@cwd //p'`; \
- orgn=`${SETENV} PKG_DBDIR=${_PKG_DBDIR} ${PKG_INFO} -q -o "$${entry}" 2> /dev/null`; \
- if [ "/${PREFIX}" = "/$${prfx}" -a "/${PKGORIGIN}" != "/$${orgn}" ]; then \
- conflicts_with="$${conflicts_with} $${entry}"; \
- fi; \
- done; \
- if [ -n "$${conflicts_with}" ]; then \
- ${ECHO_MSG}; \
- ${ECHO_MSG} "===> ${PKGNAME} conflicts with installed package(s): "; \
- for entry in $${conflicts_with}; do \
- ${ECHO_MSG} " $${entry}"; \
- done; \
- ${ECHO_MSG}; \
- ${ECHO_MSG} " They install files into the same place."; \
- ${ECHO_MSG} " Please remove them first with pkg_delete(1)."; \
- exit 1; \
- fi
-.endif # CONFLICTS
-.endif
-
-# Install
-
-.EXEC: do-install
-.if !target(do-install)
-do-install:
-.if defined(USE_GMAKE)
- @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET})
-.if defined(USE_IMAKE) && !defined(NO_INSTALL_MANPAGES)
- @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install.man)
-.endif
-.else # !defined(USE_GMAKE)
-.if defined(PERL_MODBUILD)
- @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} ${PL_BUILD} ${MAKE_ARGS} ${INSTALL_TARGET})
-.else
- @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET})
-.if defined(USE_IMAKE) && !defined(NO_INSTALL_MANPAGES)
- @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install.man)
-.endif
-.endif
-.endif
-.endif
-
-# Package
-
-.if defined(DESTDIR) && ${PKGINSTALLVER} < 20040426
-check-makefile::
- @${ECHO_CMD} "${PKGNAME}: Makefile error: please upgrade pkg_install to use DESTDIR"
- @${FALSE}
-.endif
-
-.EXEC: do-package
-.if !target(do-package)
-do-package: ${TMPPLIST}
- @if [ -d ${PACKAGES} ]; then \
- if [ ! -d ${PKGREPOSITORY} ]; then \
- if ! ${MKDIR} ${PKGREPOSITORY}; then \
- ${ECHO_MSG} "=> Can't create directory ${PKGREPOSITORY}."; \
- exit 1; \
- fi; \
- fi; \
- fi
- @__softMAKEFLAGS='${__softMAKEFLAGS:S/'/'\''/g}'; \
- _LATE_PKG_ARGS=""; \
- if [ -f ${PKGINSTALL} ]; then \
- _LATE_PKG_ARGS="$${_LATE_PKG_ARGS} -i ${PKGINSTALL}"; \
- fi; \
- if [ -f ${PKGDEINSTALL} ]; then \
- _LATE_PKG_ARGS="$${_LATE_PKG_ARGS} -k ${PKGDEINSTALL}"; \
- fi; \
- if [ -f ${PKGREQ} ]; then \
- _LATE_PKG_ARGS="$${_LATE_PKG_ARGS} -r ${PKGREQ}"; \
- fi; \
- if [ -f ${PKGMESSAGE} ]; then \
- _LATE_PKG_ARGS="$${_LATE_PKG_ARGS} -D ${PKGMESSAGE}"; \
- fi; \
- if ${PKG_CMD} ${PKG_ARGS} ${PKGFILE}; then \
- if [ -d ${PACKAGES} ]; then \
- cd ${.CURDIR} && eval ${MAKE} ${_ONG_MAKEFLAGS} $${__softMAKEFLAGS} package-links; \
- fi; \
- else \
- cd ${.CURDIR} && eval ${MAKE} ${_ONG_MAKEFLAGS} $${__softMAKEFLAGS} delete-package; \
- exit 1; \
- fi
-.endif
-
-# Some support rules for do-package
-
-.EXEC: package-links
-.if !target(package-links)
-package-links: delete-package-links
- @for cat in ${CATEGORIES}; do \
- if [ ! -d ${PACKAGES}/$$cat ]; then \
- if ! ${MKDIR} ${PACKAGES}/$$cat; then \
- ${ECHO_MSG} "=> Can't create directory ${PACKAGES}/$$cat."; \
- exit 1; \
- fi; \
- fi; \
- ${LN} -sf `${ECHO_CMD} $$cat | ${SED} -e 'sa[^/]*a..ag'`/${PKGREPOSITORYSUBDIR}/${PKGNAME}${PKG_SUFX} ${PACKAGES}/$$cat; \
- done
-.if !defined(NO_LATEST_LINK)
- @if [ ! -d ${PKGLATESTREPOSITORY} ]; then \
- if ! ${MKDIR} ${PKGLATESTREPOSITORY}; then \
- ${ECHO_MSG} "=> Can't create directory ${PKGLATESTREPOSITORY}."; \
- exit 1; \
- fi; \
- fi
- @${LN} -s ../${PKGREPOSITORYSUBDIR}/${PKGNAME}${PKG_SUFX} ${PKGLATESTFILE}
-.endif
-.endif
-
-.EXEC: delete-package-links
-.if !target(delete-package-links)
-delete-package-links:
- @for cat in ${CATEGORIES}; do \
- ${RM} -f ${PACKAGES}/$$cat/${PKGNAME}${PKG_SUFX}; \
- done
-.if !defined(NO_LATEST_LINK)
- @${RM} -f ${PKGLATESTFILE}
-.endif
-.endif
-
-.EXEC: delete-package
-.if !target(delete-package)
-delete-package: delete-package-links
- @${RM} -f ${PKGFILE}
-.endif
-
-.EXEC: delete-package-links-list
-.if !target(delete-package-links-list)
-delete-package-links-list:
- @for cat in ${CATEGORIES}; do \
- ${ECHO_CMD} ${RM} -f ${PACKAGES}/$$cat/${PKGNAME}${PKG_SUFX}; \
- done
-.if !defined(NO_LATEST_LINK)
- @${ECHO_CMD} ${RM} -f ${PKGLATESTFILE}
-.endif
-.endif
-
-.EXEC: delete-package-list
-.if !target(delete-package-list)
-delete-package-list: delete-package-links-list
- @${ECHO_CMD} "[ -f ${PKGFILE} ] && (${ECHO_CMD} deleting ${PKGFILE}; ${RM} -f ${PKGFILE})"
-.endif
-
-# Utility targets follow
-
-.EXEC: check-already-installed
-.if !target(check-already-installed)
-check-already-installed:
-.if !defined(NO_PKG_REGISTER) && !defined(FORCE_PKG_REGISTER)
- @${ECHO_MSG} "===> Checking if ${PKGORIGIN} already installed"
- @${MKDIR} ${_PKG_DBDIR}
- @already_installed=`${SETENV} PKG_DBDIR=${_PKG_DBDIR} ${PKG_INFO} -q -O ${PKGORIGIN}`; \
- if [ -n "$${already_installed}" ]; then \
- for p in $${already_installed}; do \
- prfx=`${SETENV} PKG_DBDIR=${_PKG_DBDIR} ${PKG_INFO} -q -p $${p} 2> /dev/null | ${SED} -ne '1s|^@cwd ||p'`; \
- if [ "x${PREFIX}" = "x$${prfx}" ]; then \
- found_package=$${p}; \
- break; \
- fi; \
- done; \
- fi; \
- if [ -n "$${found_package}" ]; then \
- if [ "${PKGNAME}" = "$${found_package}" ]; then \
- ${ECHO_CMD} "===> ${PKGNAME} is already installed"; \
- else \
- ${ECHO_CMD} "===> An older version of ${PKGORIGIN} is already installed ($${found_package})"; \
- fi; \
- ${ECHO_CMD} " You may wish to \`\`make deinstall'' and install this port again"; \
- ${ECHO_CMD} " by \`\`make reinstall'' to upgrade it properly."; \
- ${ECHO_CMD} " If you really wish to overwrite the old port of ${PKGORIGIN}"; \
- ${ECHO_CMD} " without deleting it first, set the variable \"FORCE_PKG_REGISTER\""; \
- ${ECHO_CMD} " in your environment or the \"make install\" command line."; \
- exit 1; \
- fi
-.else
- @${DO_NADA}
-.endif
-.endif
-
-.EXEC: check-umask
-.if !target(check-umask)
-check-umask:
- @if [ `${SH} -c umask` != 0022 ]; then \
- ${ECHO_MSG} "===> Warning: your umask is \"`${SH} -c umask`"\".; \
- ${ECHO_MSG} " If this is not desired, set it to an appropriate value"; \
- ${ECHO_MSG} " and install this port again by \`\`make reinstall''."; \
- fi
-.endif
-
-.EXEC: install-mtree
-.if !target(install-mtree)
-install-mtree:
- @${MKDIR} ${DESTDIR}${PREFIX}
- @if [ `${ID} -u` != 0 ]; then \
- if [ -w ${DESTDIR}${PREFIX}/ ]; then \
- ${ECHO_MSG} "Warning: not superuser, you may get some errors during installation."; \
- else \
- ${ECHO_MSG} "Error: ${DESTDIR}${PREFIX}/ not writable."; \
- ${FALSE}; \
- fi; \
- fi
-.if !defined(NO_MTREE)
- @if [ `${ID} -u` = 0 ]; then \
- if [ ! -f ${MTREE_FILE} ]; then \
- ${ECHO_CMD} "Error: mtree file \"${MTREE_FILE}\" is missing."; \
- ${ECHO_CMD} "Copy it from a suitable location (e.g., /usr/src/etc/mtree) and try again."; \
- exit 1; \
- else \
- ${MTREE_CMD} ${MTREE_ARGS} ${DESTDIR}${PREFIX}/ >/dev/null; \
- if [ ${MTREE_FILE} = "/etc/mtree/BSD.local.dist" ]; then \
- cd ${DESTDIR}${PREFIX}/share/nls; \
- ${LN} -shf C POSIX; \
- ${LN} -shf C en_US.US-ASCII; \
- fi; \
- fi; \
- else \
- ${ECHO_MSG} "Warning: not superuser, can't run mtree."; \
- ${ECHO_MSG} "You may want to become root and try again to ensure correct permissions."; \
- fi
-.endif
-.endif
-
-.EXEC: run-ldconfig
-.if !target(run-ldconfig)
-run-ldconfig:
-.if defined(INSTALLS_SHLIB)
-.if !defined(INSTALL_AS_USER)
- @${ECHO_MSG} "===> Running ldconfig"
- ${LDCONFIG} -m ${LDCONFIG_RUNLIST}
-.else
- @${ECHO_MSG} "===> Running ldconfig (errors are ignored)"
- -${LDCONFIG} -m ${LDCONFIG_RUNLIST}
-.endif
-.else
- @${DO_NADA}
-.endif
-.endif
-
-.EXEC: security-check
-.if !target(security-check)
-security-check:
-# Scan PLIST for:
-# 1. setugid files
-# 2. accept()/recvfrom() which indicates network listening capability
-# 3. insecure functions (gets/mktemp/tempnam/[XXX])
-# 4. startup scripts, in conjunction with 2.
-# 5. world-writable files/dirs
-#
- -@${RM} -f ${WRKDIR}/.PLIST.setuid ${WRKDIR}/.PLIST.writable ${WRKDIR}/.PLIST.objdump; \
- ${AWK} -v prefix='${PREFIX}' ' \
- match($$0, /^@cwd /) { prefix = substr($$0, RSTART + RLENGTH); next; } \
- /^@/ { next; } \
- /^\// { print; next; } \
- { print prefix "/" $$0; } \
- ' ${TMPPLIST} > ${WRKDIR}/.PLIST.flattened; \
- ${TR} '\n' '\0' < ${WRKDIR}/.PLIST.flattened \
- | ${XARGS} -0 -J % ${FIND} % -prune ! -type l -type f \( -perm -4000 -o -perm -2000 \) \( -perm -0010 -o -perm -0001 \) 2> /dev/null > ${WRKDIR}/.PLIST.setuid; \
- ${TR} '\n' '\0' < ${WRKDIR}/.PLIST.flattened \
- | ${XARGS} -0 -J % ${FIND} % -prune -perm -0002 \! -type l 2> /dev/null > ${WRKDIR}/.PLIST.writable; \
- ${TR} '\n' '\0' < ${WRKDIR}/.PLIST.flattened \
- | ${XARGS} -0 -J % ${FIND} % -prune ! -type l -type f -print0 2> /dev/null \
- | ${XARGS} -0 -n 1 ${OBJDUMP} -R 2> /dev/null > ${WRKDIR}/.PLIST.objdump; \
- if \
- ! ${AWK} -v audit="$${PORTS_AUDIT}" -f ${PORTSDIR}/Tools/scripts/security-check.awk \
- ${WRKDIR}/.PLIST.flattened ${WRKDIR}/.PLIST.objdump ${WRKDIR}/.PLIST.setuid ${WRKDIR}/.PLIST.writable; \
- then \
- www_site=$$(cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} www-site); \
- if [ ! -z "$${www_site}" ]; then \
- ${ECHO_MSG}; \
- ${ECHO_MSG} " For more information, and contact details about the security"; \
- ${ECHO_MSG} " status of this software, see the following webpage: "; \
- ${ECHO_MSG} "$${www_site}"; \
- fi; \
- fi
-.endif
-
-################################################################
-# Skeleton targets start here
-#
-# You shouldn't have to change these. Either add the pre-* or
-# post-* targets/scripts or redefine the do-* targets. These
-# targets don't do anything other than checking for cookies and
-# call the necessary targets/scripts.
-################################################################
-
-# Please note that the order of the following targets is important, and
-# should not be modified.
-
-_BOOTSTRAP_SEQ= bootstrap-depends
-_SANITY_DEP= bootstrap
-_SANITY_SEQ= pre-everything check-makefile check-categories \
- check-makevars check-depends check-deprecated \
- check-vulnerable buildanyway-message options-message
-_FETCH_DEP= check-sanity
-_FETCH_SEQ= fetch-depends pre-fetch pre-fetch-script \
- do-fetch post-fetch post-fetch-script
-_EXTRACT_DEP= fetch
-_EXTRACT_SEQ= extract-message extract-depends pre-extract \
- pre-extract-script do-extract \
- post-extract post-extract-script
-_PATCH_DEP= extract
-_PATCH_SEQ= patch-message patch-depends pre-patch pre-patch-script \
- do-patch post-patch post-patch-script
-_CONFIGURE_DEP= patch
-_CONFIGURE_SEQ= build-depends lib-depends misc-depends configure-message \
- pre-configure pre-configure-script patch-autotools \
- run-autotools do-configure post-configure post-configure-script
-_BUILD_DEP= configure
-_BUILD_SEQ= build-message pre-build pre-build-script do-build \
- post-build post-build-script
-_INSTALL_DEP= build
-_INSTALL_SEQ= install-message check-conflicts \
- run-depends lib-depends pre-install pre-install-script \
- generate-plist check-already-installed
-_INSTALL_SUSEQ= check-umask install-mtree pre-su-install \
- pre-su-install-script do-install post-install \
- post-install-script add-plist-info add-plist-docs \
- compress-man run-ldconfig fake-pkg security-check
-_PACKAGE_DEP= install
-_PACKAGE_SEQ= package-message pre-package pre-package-script \
- do-package post-package post-package-script
-
-.EXEC: bootstrap
-.if !target(bootstrap)
-bootstrap: ${_BOOTSTRAP_SEQ}
-.endif
-
-.EXEC: check-sanity
-.if !target(check-sanity) && defined(_ONG_REEXEC)
-check-sanity:
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${.TARGET}
-.elif !target(check-sanity)
-check-sanity: ${_SANITY_DEP} ${_SANITY_SEQ}
-.endif
-
-# XXX MCL might need to move in loop below?
-.EXEC: fetch
-.if !target(fetch) && defined(_ONG_REEXEC)
-fetch:
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${.TARGET}
-.elif !target(${target})
-fetch: ${_FETCH_DEP} ${_FETCH_SEQ}
-.endif
-
-# Main logic. The loop generates 6 main targets and using cookies
-# ensures that those already completed are skipped.
-
-.for target in extract patch configure build install package
-
-.EXEC: ${target}
-.if !target(${target}) && defined(_ONG_REEXEC)
-${target}:
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${.TARGET}
-.elif !target(${target}) && defined(_OPTIONS_OK)
-${target}: ${${target:U}_COOKIE}
-.elif !target(${target})
-${target}: config
- @cd ${.CURDIR} && ${MAKE} CONFIG_DONE=1 ${__softMAKEFLAGS} ${${target:U}_COOKIE}
-.endif
-
-.if !exists(${${target:U}_COOKIE})
-
-.if ${UID} != 0 && defined(_${target:U}_SUSEQ) && !defined(INSTALL_AS_USER)
-.if defined(USE_SUBMAKE) || defined(_ONG_REEXEC)
-${${target:U}_COOKIE}: ${_${target:U}_DEP}
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${_${target:U}_SEQ}
-.else
-${${target:U}_COOKIE}: ${_${target:U}_DEP} ${_${target:U}_SEQ}
-.endif
- @${ECHO_MSG} "===> Switching to root credentials for '${target}' target"
- @cd ${.CURDIR} && \
- ${SU_CMD} "${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${_${target:U}_SUSEQ}"
- @${ECHO_MSG} "===> Returning to user credentials"
- @${TOUCH} ${TOUCH_FLAGS} ${.TARGET}
-.elif defined(USE_SUBMAKE) || defined(_ONG_REEXEC)
-${${target:U}_COOKIE}: ${_${target:U}_DEP}
- @cd ${.CURDIR} && \
- ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${_${target:U}_SEQ} ${_${target:U}_SUSEQ}
- @${TOUCH} ${TOUCH_FLAGS} ${.TARGET}
-.else
-${${target:U}_COOKIE}: ${_${target:U}_DEP} ${_${target:U}_SEQ} ${_${target:U}_SUSEQ}
- @${TOUCH} ${TOUCH_FLAGS} ${.TARGET}
-.endif
-
-.else
-${${target:U}_COOKIE}::
- @if [ -e ${.TARGET} ]; then \
- ${DO_NADA}; \
- else \
- cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${.TARGET}; \
- fi
-.endif
-
-.endfor
-
-# Enforce order for -jN builds
-
-.ORDER: ${_BOOTSTRAP_SEQ}
-.ORDER: ${_SANITY_DEP} ${_SANITY_SEQ}
-.ORDER: ${_FETCH_DEP} ${_FETCH_SEQ}
-.ORDER: ${_EXTRACT_DEP} ${_EXTRACT_SEQ}
-.ORDER: ${_PATCH_DEP} ${_PATCH_SEQ}
-.ORDER: ${_CONFIGURE_DEP} ${_CONFIGURE_SEQ}
-.ORDER: ${_BUILD_DEP} ${_BUILD_SEQ}
-.ORDER: ${_INSTALL_DEP} ${_INSTALL_SEQ}
-.ORDER: ${_PACKAGE_DEP} ${_PACKAGE_SEQ}
-
-.EXEC: extract-message patch-message configure-message build-message install-message package-message
-extract-message:
- @${ECHO_MSG} "===> Extracting for ${PKGNAME}"
-patch-message:
- @${ECHO_MSG} "===> Patching for ${PKGNAME}"
-configure-message:
- @${ECHO_MSG} "===> Configuring for ${PKGNAME}"
-build-message:
- @${ECHO_MSG} "===> Building for ${PKGNAME}"
-install-message:
- @${ECHO_MSG} "===> Installing for ${PKGNAME}"
-package-message:
- @${ECHO_MSG} "===> Building package for ${PKGNAME}"
-
-# Empty pre-* and post-* targets
-
-.for stage in pre post
-.for name in fetch extract patch configure build install package
-
-.EXEC: ${stage}-${name} ${stage}-${name}-script
-
-.if !target(${stage}-${name})
-${stage}-${name}:
- @${DO_NADA}
-.endif
-
-.if !target(${stage}-${name}-script)
-${stage}-${name}-script:
- @if [ -f ${SCRIPTDIR}/${.TARGET:S/-script$//} ]; then \
- cd ${.CURDIR} && ${SETENV} ${SCRIPTS_ENV} ${SH} \
- ${SCRIPTDIR}/${.TARGET:S/-script$//}; \
- fi
-.endif
-
-.endfor
-.endfor
-
-# Special cases for su
-.EXEC: pre-su-install pre-su-install-script
-
-.if !target(pre-su-install)
-pre-su-install:
- @${DO_NADA}
-.endif
-
-.if !target(pre-su-install-script)
-pre-su-install-script:
- @${DO_NADA}
-.endif
-
-
-.EXEC: pretty-print-www-site
-.if !target(pretty-print-www-site)
-pretty-print-www-site:
- @www_site=$$(cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} www-site); \
- if [ -n "$${www_site}" ]; then \
- ${ECHO_CMD} -n " and/or visit the "; \
- ${ECHO_CMD} -n "<a href=\"$${www_site}\">web site</a>"; \
- ${ECHO_CMD} " for futher informations"; \
- fi
-.endif
-
-################################################################
-# Some more targets supplied for users' convenience
-################################################################
-
-# Checkpatch
-#
-# Special target to verify patches
-
-.EXEC: checkpatch
-.if !target(checkpatch)
-checkpatch:
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} PATCH_CHECK_ONLY=yes ${_PATCH_DEP} ${_PATCH_SEQ}
-.endif
-
-# Reinstall
-#
-# Special target to re-run install
-
-.EXEC: reinstall
-.if !target(reinstall)
-reinstall:
- @${RM} -f ${INSTALL_COOKIE} ${PACKAGE_COOKIE}
- @cd ${.CURDIR} && DEPENDS_TARGET="${DEPENDS_TARGET}" ${MAKE} ${_ONG_MAKEFLAGS} install
-.endif
-
-# Deinstall
-#
-# Special target to remove installation
-
-.EXEC: deinstall
-.if !target(deinstall)
-deinstall:
- @if [ -n "${DESTDIR}" ]; then \
- ${ECHO_MSG} "===> Can't deinstall from DESTDIR: ${DESTDIR}"; \
- ${FALSE}; \
- fi
-.if ${UID} != 0 && !defined(INSTALL_AS_USER)
- @${ECHO_MSG} "===> Switching to root credentials for '${.TARGET}' target"
- @cd ${.CURDIR} && \
- ${SU_CMD} "${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${.TARGET}"
- @${ECHO_MSG} "===> Returning to user credentials"
-.else
- @${ECHO_MSG} "===> Deinstalling for ${PKGORIGIN}"
- @found_names=`${SETENV} PKG_DBDIR=${_PKG_DBDIR} ${PKG_INFO} -q -O ${PKGORIGIN}`; \
- for p in $${found_names}; do \
- check_name=`${ECHO_CMD} $${p} | ${SED} -e 's/-[^-]*$$//'`; \
- if [ "$${check_name}" = "${PKGBASE}" ]; then \
- prfx=`${SETENV} PKG_DBDIR=${_PKG_DBDIR} ${PKG_INFO} -q -p $${p} 2> /dev/null | ${SED} -ne '1s|^@cwd ||p'`; \
- if [ "x${PREFIX}" = "x$${prfx}" ]; then \
- ${ECHO_MSG} "===> Deinstalling $${p}"; \
- ${SETENV} PKG_DBDIR=${_PKG_DBDIR} ${PKG_DELETE} -f $${p}; \
- else \
- ${ECHO_MSG} "===> $${p} has a different PREFIX: $${prfx}, skipping"; \
- fi; \
- fi; \
- done; \
- if [ -z "$${found_names}" ]; then \
- ${ECHO_MSG} "===> ${PKGBASE} not installed, skipping"; \
- fi
- @${RM} -f ${INSTALL_COOKIE} ${PACKAGE_COOKIE}
-.endif
-.endif
-
-# Deinstall-all
-#
-# Special target to remove installation of all ports of the same origin
-
-.EXEC: deinstall-all
-.if !target(deinstall-all)
-deinstall-all:
- @if [ -n "${DESTDIR}" ]; then \
- ${ECHO_MSG} "===> Can't deinstall from DESTDIR: ${DESTDIR}"; \
- ${FALSE}; \
- fi
-.if ${UID} != 0 && !defined(INSTALL_AS_USER)
- @${ECHO_MSG} "===> Switching to root credentials for '${.TARGET}' target"
- @cd ${.CURDIR} && \
- ${SU_CMD} "${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${.TARGET}"
- @${ECHO_MSG} "===> Returning to user credentials"
-.else
- @${ECHO_MSG} "===> Deinstalling for ${PKGORIGIN}"
- @deinstall_names=`${SETENV} PKG_DBDIR=${_PKG_DBDIR} ${PKG_INFO} -q -O ${PKGORIGIN}`; \
- if [ -n "$${deinstall_names}" ]; then \
- for d in $${deinstall_names}; do \
- ${ECHO_MSG} "===> Deinstalling $${d}"; \
- ${SETENV} PKG_DBDIR=${_PKG_DBDIR} ${PKG_DELETE} -f $${d}; \
- done; \
- else \
- ${ECHO_MSG} "===> ${PKGORIGIN} not installed, skipping"; \
- fi
- @${RM} -f ${INSTALL_COOKIE} ${PACKAGE_COOKIE}
-.endif
-.endif
-
-# Cleaning up
-
-.EXEC: do-clean
-.if !target(do-clean)
-do-clean:
- @if [ -d ${WRKDIR} ]; then \
- if [ -w ${WRKDIR} ]; then \
- ${RM} -rf ${WRKDIR}; \
- else \
- ${ECHO_MSG} "===> ${WRKDIR} not writable, skipping"; \
- fi; \
- fi
-.endif
-
-.EXEC: clean
-.if !target(clean)
-clean:
-.if !defined(NOCLEANDEPENDS)
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} clean-depends
-.endif
- @${ECHO_MSG} "===> Cleaning for ${PKGNAME}"
-.if target(pre-clean)
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} pre-clean
-.endif
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} do-clean
-.if target(post-clean)
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} post-clean
-.endif
-.endif
-
-.EXEC: pre-distclean
-.if !target(pre-distclean)
-pre-distclean:
- @${DO_NADA}
-.endif
-
-.EXEC: distclean
-.if !target(distclean)
-distclean: pre-distclean clean
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} delete-distfiles RESTRICTED_FILES='$${_DISTFILES} $${_PATCHFILES}'
-.endif
-
-.EXEC: delete-distfiles
-.if !target(delete-distfiles)
-delete-distfiles:
- @${ECHO_MSG} "===> Deleting distfiles for ${PKGNAME}"
-.if defined(RESTRICTED_FILES)
- @if [ -d "${_DISTDIR}" ]; then ( \
- cd "${_DISTDIR}"; \
- RESTRICTED_FILES="${RESTRICTED_FILES}"; \
- for file in $${RESTRICTED_FILES}; do \
- ${RM} -f "$${file}"; \
- dir="$${file%/*}"; \
- if [ "$${dir}" != "$${file}" ]; then \
- ${RMDIR} -p "$${dir}" >/dev/null 2>&1 || ${TRUE}; \
- fi; \
- done \
- ); fi
-.endif
-.if defined(DIST_SUBDIR)
- @${RMDIR} "${_DISTDIR}" >/dev/null 2>&1 || ${TRUE}
-.endif
-.endif
-
-.EXEC: delete-distfiles-list
-.if !target(delete-distfiles-list)
-delete-distfiles-list:
- @${ECHO_CMD} "# ${PKGNAME}"
- @if [ "X${RESTRICTED_FILES}" != "X" ]; then \
- for file in ${RESTRICTED_FILES}; do \
- ${ECHO_CMD} "[ -f ${_DISTDIR}/$$file ] && (${ECHO_CMD} deleting ${_DISTDIR}/$$file; ${RM} -f ${_DISTDIR}/$$file)"; \
- dir=$${file%/*}; \
- if [ "$${dir}" != "$${file}" ]; then \
- ${ECHO_CMD} "(cd ${_DISTDIR} && ${RMDIR} -p $${dir} 2>/dev/null)"; \
- fi; \
- done; \
- fi
-.if defined(DIST_SUBDIR)
- @${ECHO_CMD} "${RMDIR} ${_DISTDIR} 2>/dev/null || ${TRUE}"
-.endif
-.endif
-
-# Generates patches.
-
-.EXEC: update-patches
-.if !target(update-patches)
-update-patches:
- @toedit=`PATCH_WRKSRC=${PATCH_WRKSRC} \
- PATCHDIR=${PATCHDIR} \
- PATCH_LIST=${PATCHDIR}/patch-* \
- DIFF_ARGS=${DIFF_ARGS} \
- DISTORIG=${DISTORIG} \
- ${SH} ${PORTSDIR}/Tools/scripts/update-patches`; \
- case $$toedit in "");; \
- *) ${ECHO_CMD} -n 'edit patches: '; read i; \
- cd ${PATCHDIR} && $${VISUAL:-$${EDIT:-/usr/bin/vi}} $$toedit;; esac
-.endif
-
-################################################################
-# The special package-building targets
-# You probably won't need to touch these
-################################################################
-
-# Nobody should want to override this unless PKGNAME is simply bogus.
-
-.EXEC: package-name
-.if !target(package-name)
-package-name:
- @${ECHO_CMD} ${PKGNAME}
-.endif
-
-# Build a package but don't check the package cookie
-
-.EXEC: repackage
-.if !target(repackage)
-.EXEC: repackage pre-repackage
-.ORDER: pre-repackage package
-repackage: pre-repackage package
-
-pre-repackage:
- @${RM} -f ${PACKAGE_COOKIE}
-.endif
-
-# Build a package but don't check the cookie for installation, also don't
-# install package cookie
-
-.EXEC: package-noinstall
-.if !target(package-noinstall)
-package-noinstall:
- @${MKDIR} ${WRKDIR}
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} pre-package \
- pre-package-script do-package post-package post-package-script
- @${RM} -f ${TMPPLIST}
- -@${RMDIR} ${WRKDIR}
-.endif
-
-################################################################
-# Dependency checking
-################################################################
-
-.EXEC: depends
-.if !target(depends)
-depends: extract-depends patch-depends lib-depends misc-depends fetch-depends build-depends run-depends
-
-.if defined(ALWAYS_BUILD_DEPENDS)
-_DEPEND_ALWAYS= 1
-.else
-_DEPEND_ALWAYS= 0
-.endif
-
-.if defined(INSTALLS_DEPENDS) && defined(INSTALLS_BOOTSTRAP)
-bootstrap-depends:
- @${DO_NADA}
-.endif
-
-.for deptype in BOOTSTRAP FETCH EXTRACT PATCH BUILD RUN
-.EXEC: ${deptype:L}-depends
-.if !target(${deptype:L}-depends)
-${deptype:L}-depends:
-.if defined(${deptype}_DEPENDS)
-.if !defined(NO_DEPENDS)
- @if [ -n "INSTALLS_BOOTSTRAP" -o "${deptype:L}" = "bootstrap" ]; then \
- submake_args="-DINSTALLS_BOOTSTRAP -DINSTALLS_DEPENDS"; \
- else \
- submake_args="-DINSTALLS_DEPENDS"; \
- fi; \
- for i in ${${deptype}_DEPENDS}; do \
- prog=`${ECHO_CMD} $$i | ${SED} -e 's/:.*//'`; \
- dir=`${ECHO_CMD} $$i | ${SED} -e 's/[^:]*://'`; \
- if ${EXPR} "$$dir" : '.*:' > /dev/null; then \
- target=`${ECHO_CMD} $$dir | ${SED} -e 's/.*://'`; \
- dir=`${ECHO_CMD} $$dir | ${SED} -e 's/:.*//'`; \
- else \
- target="${DEPENDS_TARGET}"; \
- depends_args="${DEPENDS_ARGS}"; \
- fi; \
- if ${EXPR} "$$prog" : \\/ >/dev/null; then \
- if [ -e "$$prog" ]; then \
- if [ "$$prog" = "${NONEXISTENT}" ]; then \
- ${ECHO_MSG} "Error: ${NONEXISTENT} exists. Please remove it, and restart the build."; \
- ${FALSE}; \
- else \
- ${ECHO_MSG} "===> ${PKGNAME} depends on file: $$prog - found"; \
- if [ ${_DEPEND_ALWAYS} = 1 ]; then \
- ${ECHO_MSG} " (but building it anyway)"; \
- notfound=1; \
- else \
- notfound=0; \
- fi; \
- fi; \
- else \
- ${ECHO_MSG} "===> ${PKGNAME} depends on file: $$prog - not found"; \
- notfound=1; \
- fi; \
- else \
- if ${WHICH} "$$prog" > /dev/null 2>&1 ; then \
- ${ECHO_MSG} "===> ${PKGNAME} depends on executable: $$prog - found"; \
- if [ ${_DEPEND_ALWAYS} = 1 ]; then \
- ${ECHO_MSG} " (but building it anyway)"; \
- notfound=1; \
- else \
- notfound=0; \
- fi; \
- else \
- ${ECHO_MSG} "===> ${PKGNAME} depends on executable: $$prog - not found"; \
- notfound=1; \
- fi; \
- fi; \
- if [ $$notfound != 0 ]; then \
- ${ECHO_MSG} "===> Verifying $$target for $$prog in $$dir"; \
- if [ ! -d "$$dir" ]; then \
- ${ECHO_MSG} " >> No directory for $$prog. Skipping.."; \
- else \
- if [ X${USE_PACKAGE_DEPENDS} != "X" ]; then \
- subpkgfile=`(cd $$dir; ${MAKE} $$depends_args -V PKGFILE)`; \
- if [ -r "$${subpkgfile}" -a "$$target" = "${DEPENDS_TARGET}" ]; then \
- ${ECHO_MSG} "===> Installing existing package $${subpkgfile}"; \
- ${PKG_ADD} $${subpkgfile}; \
- else \
- (cd $$dir; ${MAKE} $$submake_args $$target $$depends_args) ; \
- fi; \
- else \
- (cd $$dir; ${MAKE} $$submake_args $$target $$depends_args) ; \
- fi ; \
- ${ECHO_MSG} "===> Returning to build of ${PKGNAME}"; \
- fi; \
- fi; \
- done
-.endif
-.else
- @${DO_NADA}
-.endif
-.endif
-.endfor
-
-.EXEC: lib-depends
-.if !target(lib-depends)
-lib-depends:
-.if defined(LIB_DEPENDS) && !defined(NO_DEPENDS)
- @for i in ${LIB_DEPENDS}; do \
- lib=$${i%%:*}; \
- case $$lib in \
- *.*.*) pattern="`${ECHO_CMD} $$lib | ${SED} -e 's/\./\\\\./g'`" ;;\
- *.*) pattern="$${lib%%.*}\.$${lib#*.}" ;;\
- *) pattern="$$lib" ;;\
- esac; \
- dir=$${i#*:}; \
- target=$${i##*:}; \
- if ${TEST} $$dir = $$target; then \
- target="${DEPENDS_TARGET}"; \
- depends_args="${DEPENDS_ARGS}"; \
- else \
- dir=$${dir%%:*}; \
- fi; \
- ${ECHO_MSG} -n "===> ${PKGNAME} depends on shared library: $$lib"; \
- if ${LDCONFIG} -r | ${GREP} -vwF -e "${PKGCOMPATDIR}" | ${GREP} -qwE -e "-l$$pattern"; then \
- ${ECHO_MSG} " - found"; \
- if [ ${_DEPEND_ALWAYS} = 1 ]; then \
- ${ECHO_MSG} " (but building it anyway)"; \
- notfound=1; \
- else \
- notfound=0; \
- fi; \
- else \
- ${ECHO_MSG} " - not found"; \
- notfound=1; \
- fi; \
- if [ $$notfound != 0 ]; then \
- ${ECHO_MSG} "===> Verifying $$target for $$lib in $$dir"; \
- if [ ! -d "$$dir" ]; then \
- ${ECHO_MSG} " >> No directory for $$lib. Skipping.."; \
- else \
- if [ X${USE_PACKAGE_DEPENDS} != "X" ]; then \
- subpkgfile=`(cd $$dir; ${MAKE} $$depends_args -V PKGFILE)`; \
- if [ -r "$${subpkgfile}" -a "$$target" = "${DEPENDS_TARGET}" ]; then \
- ${ECHO_MSG} "===> Installing existing package $${subpkgfile}"; \
- ${PKG_ADD} $${subpkgfile}; \
- else \
- (cd $$dir; ${MAKE} -DINSTALLS_DEPENDS $$target $$depends_args) ; \
- fi; \
- else \
- (cd $$dir; ${MAKE} -DINSTALLS_DEPENDS $$target $$depends_args) ; \
- fi ; \
- ${ECHO_MSG} "===> Returning to build of ${PKGNAME}"; \
- if ! ${LDCONFIG} -r | ${GREP} -vwF -e "${PKGCOMPATDIR}" | ${GREP} -qwE -e "-l$$pattern"; then \
- ${ECHO_MSG} "Error: shared library \"$$lib\" does not exist"; \
- ${FALSE}; \
- fi; \
- fi; \
- fi; \
- done
-.endif
-.endif
-
-.EXEC: misc-depends
-.if !target(misc-depends)
-misc-depends:
-.if defined(DEPENDS)
-.if !defined(NO_DEPENDS)
- @for dir in ${DEPENDS}; do \
- if ${EXPR} "$$dir" : '.*:' > /dev/null; then \
- target=`${ECHO_CMD} $$dir | ${SED} -e 's/.*://'`; \
- dir=`${ECHO_CMD} $$dir | ${SED} -e 's/:.*//'`; \
- else \
- target="${DEPENDS_TARGET}"; \
- depends_args="${DEPENDS_ARGS}"; \
- fi; \
- ${ECHO_MSG} "===> ${PKGNAME} depends on: $$dir"; \
- ${ECHO_MSG} "===> Verifying $$target for $$dir"; \
- if [ ! -d $$dir ]; then \
- ${ECHO_MSG} " >> No directory for $$dir. Skipping.."; \
- else \
- (cd $$dir; ${MAKE} $$target $$depends_args) ; \
- fi \
- done
- @${ECHO_MSG} "===> Returning to build of ${PKGNAME}"
-.endif
-.else
- @${DO_NADA}
-.endif
-.endif
-
-.endif
-
-# Dependency lists: both build and runtime, recursive. Print out directory names.
-
-.EXEC: all-depends-list
-all-depends-list:
-.if defined(_ONG_REEXEC)
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${.TARGET}
-.elif defined(EXTRACT_DEPENDS) || defined(PATCH_DEPENDS) || defined(FETCH_DEPENDS) || defined(BUILD_DEPENDS) || defined(LIB_DEPENDS) || defined(RUN_DEPENDS) || defined(DEPENDS)
- @${ALL-DEPENDS-LIST}
-.else
- @${DO_NADA}
-.endif
-
-.if defined(_ONG_REEXEC)
-ALL-DEPENDS-LIST= \
- ${ECHO_MSG} "${PKGNAME}: configuration error." >&2; ${FALSE}
-.else
-ALL-DEPENDS-LIST= \
- checked="${PARENT_CHECKED}"; \
- for dir in $$(${ECHO_CMD} "${EXTRACT_DEPENDS} ${PATCH_DEPENDS} ${FETCH_DEPENDS} ${BUILD_DEPENDS} ${LIB_DEPENDS} ${RUN_DEPENDS}" | ${SED} -e 'y/ /\n/' | ${CUT} -f 2 -d ':') $$(${ECHO_CMD} ${DEPENDS} | ${SED} -e 'y/ /\n/' | ${CUT} -f 1 -d ':'); do \
- if [ -d $$dir ]; then \
- if (${ECHO_CMD} $$checked | ${GREP} -qwv "$$dir"); then \
- child=$$(cd $$dir; ${MAKE} PARENT_CHECKED="$$checked" all-depends-list); \
- for d in $$child; do ${ECHO_CMD} $$d; done; \
- ${ECHO_CMD} $$dir; \
- checked="$$dir $$child $$checked"; \
- fi; \
- else \
- ${ECHO_MSG} "${PKGNAME}: \"$$dir\" non-existent -- dependency list incomplete" >&2; \
- fi; \
- done | ${SORT} -u
-.endif
-
-.EXEC: clean-depends
-.if !target(clean-depends)
-clean-depends:
-.if defined(_ONG_REEXEC)
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${.TARGET}
-.else
- @for dir in $$(${ALL-DEPENDS-LIST}); do \
- (cd $$dir; ${MAKE} NOCLEANDEPENDS=yes clean); \
- done
-.endif
-.endif
-
-.EXEC: deinstall-depends
-.if !target(deinstall-depends)
-deinstall-depends:
-.if defined(_ONG_REEXEC)
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${.TARGET}
-.else
- @for dir in $$(${ALL-DEPENDS-LIST}); do \
- (cd $$dir; ${MAKE} deinstall); \
- done
-.endif
-.endif
-
-.EXEC: fetch-recursive
-.if !target(fetch-recursive)
-fetch-recursive:
-.if defined(_ONG_REEXEC)
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${.TARGET}
-.else
- @${ECHO_MSG} "===> Fetching all distfiles for ${PKGNAME} and dependencies"
- @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \
- (cd $$dir; ${MAKE} fetch); \
- done
-.endif
-.endif
-
-.EXEC: fetch-recursive-list
-.if !target(fetch-recursive-list)
-fetch-recursive-list:
-.if defined(_ONG_REEXEC)
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${.TARGET}
-.else
- @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \
- (cd $$dir; ${MAKE} fetch-list); \
- done
-.endif
-.endif
-
-.EXEC: fetch-required
-.if !target(fetch-required)
-fetch-required: fetch
- @${ECHO_MSG} "===> Fetching all required distfiles for ${PKGNAME} and dependencies"
-.for deptype in EXTRACT PATCH FETCH BUILD RUN
-.if defined(${deptype}_DEPENDS)
-.if !defined(NO_DEPENDS)
- @for i in ${${deptype}_DEPENDS}; do \
- prog=`${ECHO_CMD} $$i | ${CUT} -f 1 -d ':'`; \
- dir=`${ECHO_CMD} $$i | ${CUT} -f 2-999 -d ':'`; \
- if ${EXPR} "$$dir" : '.*:' > /dev/null; then \
- dir=`${ECHO_CMD} $$dir | ${CUT} -f 1 -d ':'`; \
- if ${EXPR} "$$prog" : \\/ >/dev/null; then \
- if [ ! -e "$$prog" ]; then \
- (cd $$dir; ${MAKE} fetch); \
- fi; \
- fi; \
- else \
- (cd $$dir; \
- if ! ${PKG_INFO} -e `${MAKE} -V PKGNAME`; then \
- ${MAKE} fetch; \
- fi ); \
- fi; \
- done
-.endif
-.endif
-.endfor
-.endif
-
-.EXEC: fetch-required-list
-.if !target(fetch-required-list)
-fetch-required-list: fetch-list
-.for deptype in EXTRACT PATCH FETCH BUILD RUN
-.if defined(${deptype}_DEPENDS)
-.if !defined(NO_DEPENDS)
- @for i in ${${deptype}_DEPENDS}; do \
- prog=`${ECHO_CMD} $$i | ${CUT} -f 1 -d ':'`; \
- dir=`${ECHO_CMD} $$i | ${CUT} -f 2-999 -d ':'`; \
- if ${EXPR} "$$dir" : '.*:' > /dev/null; then \
- dir=`${ECHO_CMD} $$dir | ${CUT} -f 1 -d ':'`; \
- if ${EXPR} "$$prog" : \\/ >/dev/null; then \
- if [ ! -e "$$prog" ]; then \
- (cd $$dir; ${MAKE} fetch-list); \
- fi; \
- fi; \
- else \
- (cd $$dir; \
- if ! ${PKG_INFO} -e `${MAKE} -V PKGNAME`; then \
- ${MAKE} fetch-list; \
- fi ); \
- fi; \
- done
-.endif
-.endif
-.endfor
-.endif
-
-.EXEC: checksum-recursive
-.if !target(checksum-recursive)
-checksum-recursive:
-.if defined(_ONG_REEXEC)
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${.TARGET}
-.else
- @${ECHO_MSG} "===> Fetching and checking checksums for ${PKGNAME} and dependencies"
- @for dir in ${.CURDIR} $$(${ALL-DEPENDS-LIST}); do \
- (cd $$dir; ${MAKE} checksum); \
- done
-.endif
-.endif
-
-# Dependency lists: build and runtime. Print out directory names.
-
-.EXEC: build-depends-list
-build-depends-list:
-.if defined(EXTRACT_DEPENDS) || defined(PATCH_DEPENDS) || defined(FETCH_DEPENDS) || defined(BUILD_DEPENDS) || defined(LIB_DEPENDS) || defined(DEPENDS)
- @${BUILD-DEPENDS-LIST}
-.endif
-
-BUILD-DEPENDS-LIST= \
- for dir in $$(${ECHO_CMD} "${EXTRACT_DEPENDS} ${PATCH_DEPENDS} ${FETCH_DEPENDS} ${BUILD_DEPENDS} ${LIB_DEPENDS}" | ${TR} '\040' '\012' | ${SED} -e 's/^[^:]*://' -e 's/:.*//' | ${SORT} -u) $$(${ECHO_CMD} ${DEPENDS} | ${TR} '\040' '\012' | ${SED} -e 's/:.*//' | ${SORT} -u); do \
- if [ -d $$dir ]; then \
- ${ECHO_CMD} $$dir; \
- else \
- ${ECHO_MSG} "${PKGNAME}: \"$$dir\" non-existent -- dependency list incomplete" >&2; \
- fi; \
- done | ${SORT} -u
-
-.EXEC: run-depends-list
-run-depends-list:
-.if defined(LIB_DEPENDS) || defined(RUN_DEPENDS) || defined(DEPENDS)
- @${RUN-DEPENDS-LIST}
-.endif
-
-RUN-DEPENDS-LIST= \
- for dir in $$(${ECHO_CMD} "${LIB_DEPENDS} ${RUN_DEPENDS}" | ${SED} -e 'y/ /\n/' | ${CUT} -f 2 -d ':' | ${SORT} -u) $$(${ECHO_CMD} ${DEPENDS} | ${SED} -e 'y/ /\n/' | ${CUT} -f 1 -d ':' | ${SORT} -u); do \
- if [ -d $$dir ]; then \
- ${ECHO_CMD} $$dir; \
- else \
- ${ECHO_MSG} "${PKGNAME}: \"$$dir\" non-existent -- dependency list incomplete" >&2; \
- fi; \
- done | ${SORT} -u
-
-# Package (recursive runtime) dependency list. Print out both directory names
-# and package names.
-
-.EXEC: package-depends-list
-package-depends-list:
-.if defined(CHILD_DEPENDS) || defined(LIB_DEPENDS) || defined(RUN_DEPENDS) || defined(DEPENDS)
- @${PACKAGE-DEPENDS-LIST}
-.endif
-
-PACKAGE-DEPENDS-LIST?= \
- if [ "${CHILD_DEPENDS}" ]; then \
- installed=$$(${PKG_INFO} -qO ${PKGORIGIN} 2>/dev/null || \
- ${TRUE}); \
- if [ "$$installed" ]; then \
- break; \
- fi; \
- if [ -z "$$installed" ]; then \
- installed="${PKGNAME}"; \
- fi; \
- for pkgname in $$installed; do \
- ${ECHO_CMD} "$$pkgname ${.CURDIR} ${PKGORIGIN}"; \
- done; \
- fi; \
- checked="${PARENT_CHECKED}"; \
- for dir in $$(${ECHO_CMD} "${LIB_DEPENDS} ${RUN_DEPENDS}" | ${SED} -e 'y/ /\n/' | ${CUT} -f 2 -d ':') $$(${ECHO_CMD} ${DEPENDS} | ${SED} -e 'y/ /\n/' | ${CUT} -f 1 -d ':'); do \
- dir=$$(${REALPATH} $$dir); \
- if [ -d $$dir ]; then \
- if (${ECHO_CMD} $$checked | ${GREP} -qwv "$$dir"); then \
- childout=$$(cd $$dir; ${MAKE} CHILD_DEPENDS=yes PARENT_CHECKED="$$checked" package-depends-list); \
- set -- $$childout; \
- childdir=""; \
- while [ $$\# != 0 ]; do \
- childdir="$$childdir $$2"; \
- ${ECHO_CMD} "$$1 $$2 $$3"; \
- shift 3; \
- done; \
- checked="$$dir $$childdir $$checked"; \
- fi; \
- else \
- ${ECHO_MSG} "${PKGNAME}: \"$$dir\" non-existent -- dependency list incomplete" >&2; \
- fi; \
- done
-
-# Print out package names.
-
-.EXEC: package-depends
-package-depends:
-.if ${OSVERSION} >= 460102 || exists(${LOCALBASE}/sbin/pkg_info)
- @${PACKAGE-DEPENDS-LIST} | ${AWK} '{print $$1":"$$3}'
-.else
- @${PACKAGE-DEPENDS-LIST} | ${AWK} '{print $$1}'
-.endif
-
-# Build packages for port and dependencies
-
-.EXEC: package-recursive
-package-recursive: package
-.if defined(_ONG_REEXEC)
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${.TARGET}
-.else
- @for dir in $$(${ALL-DEPENDS-LIST}); do \
- (cd $$dir; ${MAKE} package-noinstall); \
- done
-.endif
-
-################################################################
-# Everything after here are internal targets and really
-# shouldn't be touched by anybody but the release engineers.
-################################################################
-
-# This target generates an index entry suitable for aggregation into
-# a large index. Format is:
-#
-# distribution-name|port-path|installation-prefix|comment| \
-# description-file|maintainer|categories|extract-depends| \
-# patch-depends|fetch-depends|build-depends|run-depends|www site
-
-.EXEC: describe
-.if !target(describe)
-describe:
-.if defined(_ONG_REEXEC)
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${.TARGET}
-.else
- @${ECHO_CMD} -n "${PKGNAME}|${.CURDIR}|${PREFIX}|"
-.if defined(COMMENT)
- @${ECHO_CMD} -n ${COMMENT:Q}
-.else
- @${ECHO_CMD} -n '** No Description'
-.endif
- @perl -e ' \
- if ( -f q{${DESCR}} ) { \
- print q{|${DESCR}}; \
- } else { \
- print q{|/dev/null}; \
- } \
- print q{|${MAINTAINER}|${CATEGORIES}|}; \
- @edirs = map((split /:/)[1], split(q{ }, q{${EXTRACT_DEPENDS}})); \
- @pdirs = map((split /:/)[1], split(q{ }, q{${PATCH_DEPENDS}})); \
- @fdirs = map((split /:/)[1], split(q{ }, q{${FETCH_DEPENDS}})); \
- @bdirs = map((split /:/)[1], split(q{ }, q{${BUILD_DEPENDS}})); \
- @rdirs = map((split /:/)[1], split(q{ }, q{${RUN_DEPENDS}})); \
- @ddirs = map((split /:/)[0], split(q{ }, q{${DEPENDS}})); \
- @ldirs = map((split /:/)[1], split(q{ }, q{${LIB_DEPENDS}})); \
- for my $$i (\@edirs, \@pdirs, \@fdirs, \@bdirs, \@rdirs, \@ddirs, \@ldirs) { \
- my @dirs = @$$i; \
- @$$i = (); \
- for (@dirs) { \
- if (-d $$_) { \
- push @$$i, $$_; \
- } else { \
- print STDERR qq{${PKGNAME}: \"$$_\" non-existent -- dependency list incomplete\n}; \
- exit(1); \
- } \
- } \
- } \
- for (@edirs, @ddirs) { \
- $$xe{$$_} = 1; \
- } \
- print join(q{ }, sort keys %xe), q{|}; \
- for (@pdirs, @ddirs) { \
- $$xp{$$_} = 1; \
- } \
- print join(q{ }, sort keys %xp), q{|}; \
- for (@fdirs, @ddirs) { \
- $$xf{$$_} = 1; \
- } \
- print join(q{ }, sort keys %xf), q{|}; \
- for (@bdirs, @ddirs, @ldirs) { \
- $$xb{$$_} = 1; \
- } \
- print join(q{ }, sort keys %xb), q{|}; \
- for (@rdirs, @ddirs, @ldirs) { \
- $$xr{$$_} = 1; \
- } \
- print join(q{ }, sort keys %xr), q{|}; \
- if (open(DESCR, q{${DESCR}})) { \
- while (<DESCR>) { \
- if (/^WWW:\s+(\S+)/) { \
- print $$1; \
- last; \
- } \
- } \
- } \
- print qq{\n};'
-.endif
-.endif
-
-.EXEC: www-site
-.if !target(www-site)
-www-site:
-.if exists(${DESCR})
- @${GREP} '^WWW:[ ]' ${DESCR} | ${AWK} '{print $$2}' | ${HEAD} -1
-.else
- @${ECHO_CMD}
-.endif
-.endif
-
-.EXEC: readmes
-.if !target(readmes)
-readmes: readme
-.endif
-
-.EXEC: readme
-.if !target(readme)
-readme:
- @${RM} -f ${.CURDIR}/README.html
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} ${.CURDIR}/README.html
-.endif
-
-${.CURDIR}/README.html:
- @${ECHO_MSG} "===> Creating README.html for ${PKGNAME}"
- @__softMAKEFLAGS='${__softMAKEFLAGS:S/'/'\''/g}'; \
- ${SED} -e 's|%%PORT%%|'$$(${ECHO_CMD} ${.CURDIR} | \
- ${SED} -e 's|.*/\([^/]*/[^/]*\)$$|\1|')'|g' \
- -e 's|%%PKG%%|${PKGNAME}|g' \
- -e 's|%%COMMENT%%|'"$$(${ECHO_CMD} ${COMMENT:Q})"'|' \
- -e '/%%COMMENT%%/d' \
- -e 's|%%DESCR%%|'"$$(${ECHO_CMD} ${DESCR} | \
- ${SED} -e 's|${.CURDIR}/||')"'|' \
- -e 's|%%EMAIL%%|'"$$(${ECHO_CMD} "${MAINTAINER}" | \
- ${SED} -e 's/([^)]*)//;s/.*<//;s/>.*//')"'|g' \
- -e 's|%%MAINTAINER%%|${MAINTAINER}|g' \
- -e 's|%%WEBSITE%%|'"$$(cd ${.CURDIR} && eval ${MAKE} ${_ONG_MAKEFLAGS} \
- $${__softMAKEFLAGS} pretty-print-www-site)"'|' \
- -e 's|%%BUILD_DEPENDS%%|'"$$(cd ${.CURDIR} && eval ${MAKE} ${_ONG_MAKEFLAGS} \
- $${__softMAKEFLAGS} pretty-print-build-depends-list)"'|' \
- -e 's|%%RUN_DEPENDS%%|'"$$(cd ${.CURDIR} && eval ${MAKE} ${_ONG_MAKEFLAGS} \
- $${__softMAKEFLAGS} pretty-print-run-depends-list)"'|' \
- -e 's|%%TOP%%|'"$$(${ECHO_CMD} ${CATEGORIES} | \
- ${SED} -e 's| .*||' -e 's|[^/]*|..|g')"'/..|' \
- ${TEMPLATES}/README.port >> $@
-
-# The following two targets require an up-to-date INDEX in ${PORTSDIR}
-
-.EXEC: pretty-print-build-depends-list
-.if !target(pretty-print-build-depends-list)
-pretty-print-build-depends-list:
-.if defined(EXTRACT_DEPENDS) || defined(PATCH_DEPENDS) || \
- defined(FETCH_DEPENDS) || defined(BUILD_DEPENDS) || \
- defined(LIB_DEPENDS) || defined(DEPENDS)
- @${ECHO_CMD} -n 'This port requires package(s) "'
- @${ECHO_CMD} -n `${GREP} '^${PKGNAME}|' ${PORTSDIR}/${INDEXFILE} | ${AWK} -F\| '{print $$8;}'`
- @${ECHO_CMD} '" to build.'
-.endif
-.endif
-
-.EXEC: pretty-print-run-depends-list
-.if !target(pretty-print-run-depends-list)
-pretty-print-run-depends-list:
-.if defined(RUN_DEPENDS) || defined(LIB_DEPENDS) || defined(DEPENDS)
- @${ECHO_CMD} -n 'This port requires package(s) "'
- @${ECHO_CMD} -n `${GREP} '^${PKGNAME}|' ${PORTSDIR}/${INDEXFILE} | ${AWK} -F\| '{print $$9;}'`
- @${ECHO_CMD} '" to run.'
-.endif
-.endif
-
-.EXEC: apply-slist
-.if !target(apply-slist)
-_SUB_LIST_TEMP= ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/}
-apply-slist:
-.if defined(SUB_FILES)
-.for file in ${SUB_FILES}
-.if !exists(${FILESDIR}/${file}.in)
- @${ECHO_CMD} "** Missing ${FILESDIR}/${file}.in for ${PKGNAME}."; exit 1
-.else
- @${SED} ${_SUB_LIST_TEMP} -e '/^@comment /d' ${FILESDIR}/${file}.in > ${WRKDIR}/${file}
-.endif
-.endfor
-.for i in pkg-message pkg-install pkg-deinstall pkg-req
-.if ${SUB_FILES:M${i}*}!=""
-${i:S/-//:U}= ${WRKDIR}/${SUB_FILES:M${i}*}
-.endif
-.endfor
-.endif
-.endif
-
-# Generate packing list. Also tests to make sure all required package
-# files exist.
-
-.EXEC: generate-plist
-.if !target(generate-plist)
-generate-plist:
- @${ECHO_MSG} "===> Generating temporary packing list"
- @${MKDIR} `${DIRNAME} ${TMPPLIST}`
- @if [ ! -f ${DESCR} ]; then ${ECHO_CMD} "** Missing pkg-descr for ${PKGNAME}."; exit 1; fi
- @>${TMPPLIST}
- @for file in ${PLIST_FILES}; do \
- ${ECHO_CMD} $${file} | ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} >> ${TMPPLIST}; \
- done
- @for man in ${__MANPAGES}; do \
- ${ECHO_CMD} $${man} >> ${TMPPLIST}; \
- done
-.for _PREFIX in ${PREFIX}
-.if ${_TMLINKS:M${_PREFIX}*}x != x
- @for i in ${_TMLINKS:M${_PREFIX}*:S|^${_PREFIX}/||}; do \
- ${ECHO_CMD} "$$i" >> ${TMPPLIST}; \
- done
-.endif
-.if ${_TMLINKS:N${_PREFIX}*}x != x
- @${ECHO_CMD} @cwd / >> ${TMPPLIST}
- @for i in ${_TMLINKS:N${_PREFIX}*:S|^/||}; do \
- ${ECHO_CMD} "$$i" >> ${TMPPLIST}; \
- done
- @${ECHO_CMD} '@cwd ${PREFIX}' >> ${TMPPLIST}
-.endif
- @for i in $$(${ECHO_CMD} ${__MANPAGES} ${_TMLINKS:M${_PREFIX}*:S|^${_PREFIX}/||} ' ' | ${SED} -E -e 's|man([1-9ln])/([^/ ]+) |cat\1/\2 |g'); do \
- ${ECHO_CMD} "@unexec rm -f %D/$${i%.gz} %D/$${i%.gz}.gz" >> ${TMPPLIST}; \
- done
-.endfor
- @if [ -f ${PLIST} ]; then \
- ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} ${PLIST} >> ${TMPPLIST}; \
- fi
-.for dir in ${PLIST_DIRS}
- @${ECHO_CMD} ${dir} | ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} | ${SED} -e 's,^,@dirrm ,' >> ${TMPPLIST}
-.endfor
-.if defined(INSTALLS_SHLIB) && !defined(INSTALL_AS_USER)
- @${ECHO_CMD} "@exec ${LDCONFIG} -m ${LDCONFIG_PLIST}" >> ${TMPPLIST}
- @${ECHO_CMD} "@unexec ${LDCONFIG} -R" >> ${TMPPLIST}
-.elif defined(INSTALLS_SHLIB)
- @${ECHO_CMD} "@exec ${LDCONFIG} -m ${LDCONFIG_PLIST} || ${TRUE}" >> ${TMPPLIST}
- @${ECHO_CMD} "@unexec ${LDCONFIG} -R || ${TRUE}" >> ${TMPPLIST}
-.endif
-.if !defined(NO_FILTER_SHLIBS)
-.if (${PORTOBJFORMAT} == aout)
- @${SED} -e 's,\(/lib.*\.so\.[0-9]*\)$$,\1.0,' ${TMPPLIST} > ${TMPPLIST}.tmp
-.else
- @${SED} -e 's,\(/lib.*\.so\.[0-9]*\)\.[0-9]*$$,\1,' ${TMPPLIST} > ${TMPPLIST}.tmp
-.endif
- @${MV} -f ${TMPPLIST}.tmp ${TMPPLIST}
-.endif
-.endif
-
-${TMPPLIST}:
- @cd ${.CURDIR} && ${MAKE} ${_ONG_MAKEFLAGS} ${__softMAKEFLAGS} generate-plist
-
-.EXEC: add-plist-docs
-.if !target(add-plist-docs)
-add-plist-docs:
-.if defined(PORTDOCS)
- @if ${EGREP} -qe '^@cw?d' ${TMPPLIST} && \
- [ "`${SED} -En -e '/^@cw?d[ ]*/s,,,p' ${TMPPLIST} | ${TAIL} -n 1`" != "${PREFIX}" ]; then \
- ${ECHO_CMD} "@cwd ${PREFIX}" >> ${TMPPLIST}; \
- fi
- @${FIND} -P ${PORTDOCS:S/^/${DESTDIR}${DOCSDIR}\//} ! -type d 2>/dev/null | \
- ${SED} -ne 's,^${DESTDIR}${PREFIX}/,,p' >> ${TMPPLIST}
- @${FIND} -P -d ${PORTDOCS:S/^/${DESTDIR}${DOCSDIR}\//} -type d 2>/dev/null | \
- ${SED} -ne 's,^${DESTDIR}${PREFIX}/,@dirrm ,p' >> ${TMPPLIST}
- @if [ -d "${DESTDIR}${DOCSDIR}" ]; then \
- ${ECHO_CMD} "@unexec rmdir %D/${DOCSDIR:S,^${PREFIX}/,,} 2>/dev/null || true" >> ${TMPPLIST}; \
- fi
-.else
- @${DO_NADA}
-.endif
-.endif
-
-.EXEC: add-plist-info
-.if !target(add-plist-info)
-add-plist-info:
-# Process GNU INFO files at package install/deinstall time
-.for i in ${INFO}
- @${ECHO_CMD} "@unexec install-info --delete %D/${INFO_PATH}/$i.info %D/${INFO_PATH}/dir" \
- >> ${TMPPLIST}
- @${LS} ${DESTDIR}${PREFIX}/${INFO_PATH}/$i.info* | ${SED} -e s:${DESTDIR}${PREFIX}/::g >> ${TMPPLIST}
- @${ECHO_CMD} "@exec install-info %D/${INFO_PATH}/$i.info %D/${INFO_PATH}/dir" \
- >> ${TMPPLIST}
-.endfor
-.if !defined(NO_MTREE) && defined(INFO)
-.if ${PREFIX} != /usr
- @${ECHO_CMD} "@unexec if [ -f %D/${INFO_PATH}/dir ]; then if sed -e '1,/Menu:/d' %D/${INFO_PATH}/dir | grep -q '^[*] '; then true; else rm %D/${INFO_PATH}/dir; fi; fi" >> ${TMPPLIST}
-.if ${PREFIX} != ${LOCALBASE} && ${PREFIX} != ${X11BASE} && ${PREFIX} != ${LINUXBASE}
- @${ECHO_CMD} "@unexec rmdir %D/info 2> /dev/null || true" >> ${TMPPLIST}
-.endif
-.endif
-.endif
-.endif
-
-# If we're installing into a non-standard PREFIX, we need to remove that directory at
-# deinstall-time
-.EXEC: add-plist-post
-.if !target(add-plist-post)
-add-plist-post:
-.if ${PREFIX} != ${LOCALBASE} && ${PREFIX} != ${X11BASE} && ${PREFIX} != ${LINUXBASE} && ${PREFIX} != /usr
- @${ECHO_CMD} "@unexec rmdir %D 2> /dev/null || true" >> ${TMPPLIST}
-.else
- @${DO_NADA}
-.endif
-.endif
-
-# Compress (or uncompress) and symlink manpages.
-.EXEC: compress-man
-.if !target(compress-man)
-compress-man:
-.if defined(_MANPAGES) || defined(_MLINKS)
-.if ${MANCOMPRESSED:L} == yes && defined(NOMANCOMPRESS)
- @${ECHO_MSG} "===> Uncompressing manual pages for ${PKGNAME}"
- @_manpages='${_MANPAGES:S/^/${DESTDIR}/:S/'/'\''/g}' && [ "$${_manpages}" != "" ] && ( eval ${GUNZIP_CMD} $${_manpages} ) || ${TRUE}
-.elif ${MANCOMPRESSED:L} == no && !defined(NOMANCOMPRESS)
- @${ECHO_MSG} "===> Compressing manual pages for ${PKGNAME}"
- @_manpages='${_MANPAGES:S/^/${DESTDIR}/:S/'/'\''/g}' && [ "$${_manpages}" != "" ] && ( eval ${GZIP_CMD} $${_manpages} ) || ${TRUE}
-.endif
-.if defined(_MLINKS)
- @set ${_MLINKS}; \
- while :; do \
- [ $$# -eq 0 ] && break || ${TRUE}; \
- ${RM} -f ${DESTDIR}$${2%.gz}; ${RM} -f ${DESTDIR}$$2.gz; \
- ${LN} -fs `${ECHO_CMD} $$1 $$2 | ${AWK} '{ \
- z=split($$1, a, /\//); x=split($$2, b, /\//); \
- while (a[i] == b[i]) i++; \
- for (q=i; q<x; q++) printf "../"; \
- for (; i<z; i++) printf a[i] "/"; printf a[z]; }'` ${DESTDIR}$$2; \
- shift; shift; \
- done
-.endif
-.else
- @${DO_NADA}
-.endif
-.endif
-
-# Fake installation of package so that user can pkg_delete it later.
-# Also, make sure that an installed port is recognized correctly in
-# accordance to the @pkgdep directive in the packing lists
-
-.EXEC: fake-pkg
-.if !target(fake-pkg)
-fake-pkg:
-.if !defined(NO_PKG_REGISTER)
- @if [ ! -d ${_PKG_DBDIR} ]; then ${RM} -f ${_PKG_DBDIR}; ${MKDIR} ${_PKG_DBDIR}; fi
- @${RM} -f /tmp/${PKGNAME}-required-by
-.if defined(FORCE_PKG_REGISTER)
- @if [ -e ${_PKG_DBDIR}/${PKGNAME}/+REQUIRED_BY ]; then \
- ${CP} ${_PKG_DBDIR}/${PKGNAME}/+REQUIRED_BY /tmp/${PKGNAME}-required-by; \
- fi
- @${RM} -rf ${_PKG_DBDIR}/${PKGNAME}
-.endif
- @if [ ! -d ${_PKG_DBDIR}/${PKGNAME} ]; then \
- ${ECHO_MSG} "===> Registering installation for ${PKGNAME}"; \
- ${MKDIR} ${_PKG_DBDIR}/${PKGNAME}; \
- ${PKG_CMD} ${PKG_ARGS} -O ${PKGFILE} > ${_PKG_DBDIR}/${PKGNAME}/+CONTENTS; \
- ${CP} ${DESCR} ${_PKG_DBDIR}/${PKGNAME}/+DESC; \
- ${ECHO_CMD} ${COMMENT:Q} > ${_PKG_DBDIR}/${PKGNAME}/+COMMENT; \
- if [ -f ${PKGINSTALL} ]; then \
- ${CP} ${PKGINSTALL} ${_PKG_DBDIR}/${PKGNAME}/+INSTALL; \
- fi; \
- if [ -f ${PKGDEINSTALL} ]; then \
- ${CP} ${PKGDEINSTALL} ${_PKG_DBDIR}/${PKGNAME}/+DEINSTALL; \
- fi; \
- if [ -f ${PKGREQ} ]; then \
- ${CP} ${PKGREQ} ${_PKG_DBDIR}/${PKGNAME}/+REQUIRE; \
- fi; \
- if [ -f ${PKGMESSAGE} ]; then \
- ${CP} ${PKGMESSAGE} ${_PKG_DBDIR}/${PKGNAME}/+DISPLAY; \
- fi; \
- for dep in `${SETENV} PKG_DBDIR=${_PKG_DBDIR} ${PKG_INFO} -qf ${PKGNAME} | ${GREP} -w ^@pkgdep | ${AWK} '{print $$2}' | ${SORT} -u`; do \
- if [ -d ${_PKG_DBDIR}/$$dep -a -z `${ECHO_CMD} $$dep | ${GREP} -E ${PKG_IGNORE_DEPENDS}` ]; then \
- if ! ${GREP} ^${PKGNAME}$$ ${_PKG_DBDIR}/$$dep/+REQUIRED_BY \
- >/dev/null 2>&1; then \
- ${ECHO_CMD} ${PKGNAME} >> ${_PKG_DBDIR}/$$dep/+REQUIRED_BY; \
- fi; \
- fi; \
- done; \
- fi
-.if !defined(NO_MTREE)
- @if [ -f ${MTREE_FILE} ]; then \
- ${CP} ${MTREE_FILE} ${_PKG_DBDIR}/${PKGNAME}/+MTREE_DIRS; \
- fi
-.endif
- @if [ -e /tmp/${PKGNAME}-required-by ]; then \
- ${CAT} /tmp/${PKGNAME}-required-by >> ${_PKG_DBDIR}/${PKGNAME}/+REQUIRED_BY; \
- ${RM} -f /tmp/${PKGNAME}-required-by; \
- fi
-.else
- @${DO_NADA}
-.endif
-.endif
-
-# Depend is generally meaningless for arbitrary ports, but if someone wants
-# one they can override this. This is just to catch people who've gotten into
-# the habit of typing `make depend all install' as a matter of course.
-#
-.if !target(depend)
-depend:
-.endif
-
-# Same goes for tags
-.if !target(tags)
-tags:
-.endif
-
-.if !defined(NOPRECIOUSSOFTMAKEVARS)
-.for softvar in CKSUMFILES _MLINKS
-.if defined(${softvar})
-__softMAKEFLAGS+= '${softvar}+=${${softvar}:S/'/'\''/g}'
-.endif
-.endfor
-.endif
-
-.if !defined(NOPRECIOUSMAKEVARS)
-# These won't change, so we can pass them through the environment
-.MAKEFLAGS: \
- ARCH="${ARCH:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}" \
- OPSYS="${OPSYS:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}" \
- OSREL="${OSREL:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}" \
- OSVERSION="${OSVERSION:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}" \
- PORTOBJFORMAT="${PORTOBJFORMAT:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}" \
- SYSTEMVERSION="${SYSTEMVERSION:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}"
-.endif
-
-.if !target(config)
-config:
-.if !defined(OPTIONS)
- @${ECHO_MSG} "===> No options to configure"
-.else
-.if ${OPTIONSFILE} != ${_OPTIONSFILE}
- @${ECHO_MSG} "===> Using wrong configuration file ${_OPTIONSFILE}"
- @exit 1
-.endif
-.if ${UID} != 0 && !defined(INSTALL_AS_USER)
- @${ECHO_MSG} "===> Switching to root credentials to create `${DIRNAME} ${_OPTIONSFILE}`"
- @(${SU_CMD} "${SH} -c \"${MKDIR} `${DIRNAME} ${_OPTIONSFILE}` 2> /dev/null\"") || \
- (${ECHO_MSG} "===> Cannot create `${DIRNAME} ${_OPTIONSFILE}`, check permissions"; exit 1)
- @${ECHO_MSG} "===> Returning to user credentials"
-.else
- @(${MKDIR} `${DIRNAME} ${_OPTIONSFILE}` 2> /dev/null) || \
- (${ECHO_MSG} "===> Cannot create `${DIRNAME} ${_OPTIONSFILE}`, check permissions"; exit 1)
-.endif
- -@if [ -e ${_OPTIONSFILE} ]; then \
- . ${_OPTIONSFILE}; \
- fi; \
- set ${OPTIONS} XXX; \
- while [ $$# -gt 3 ]; do \
- OPTIONSLIST="$${OPTIONSLIST} $$1"; \
- defaultval=$$3; \
- withvar=WITH_$$1; \
- withoutvar=WITHOUT_$$1; \
- withval=$$(eval ${ECHO_CMD} $$\{$${withvar}\}); \
- withoutval=$$(eval ${ECHO_CMD} $$\{$${withoutvar}\}); \
- if [ ! -z "$${withval}" ]; then \
- val=on; \
- elif [ ! -z "$${withoutval}" ]; then \
- val=off; \
- else \
- val=$$3; \
- fi; \
- DEFOPTIONS="$${DEFOPTIONS} $$1 \"$$2\" $${val}"; \
- shift 3; \
- done; \
- TMPOPTIONSFILE=$$(${MKTEMP} -t portoptions); \
- trap "${RM} -f $${TMPOPTIONSFILE}; exit 1" 1 2 3 5 10 13 15; \
- ${SH} -c "${DIALOG} --checklist \"Options for ${PKGNAME:C/-([^-]+)$/ \1/}\" 21 70 15 $${DEFOPTIONS} 2> $${TMPOPTIONSFILE}"; \
- status=$$?; \
- if [ $${status} -ne 0 ] ; then \
- ${RM} -f $${TMPOPTIONSFILE}; \
- ${ECHO_MSG} "===> Options unchanged"; \
- exit 0; \
- fi; \
- if [ ! -e ${TMPOPTIONSFILE} ]; then \
- ${ECHO_MSG} "===> No user-specified options to save for ${PKGNAME}"; \
- exit 0; \
- fi; \
- SELOPTIONS=$$(${CAT} $${TMPOPTIONSFILE}); \
- ${RM} -f $${TMPOPTIONSFILE}; \
- TMPOPTIONSFILE=$$(${MKTEMP} -t portoptions); \
- trap "${RM} -f $${TMPOPTIONSFILE}; exit 1" 1 2 3 5 10 13 15; \
- ${ECHO_CMD} "# This file is auto-generated by 'make config'." > $${TMPOPTIONSFILE}; \
- ${ECHO_CMD} "# No user-servicable parts inside!" >> $${TMPOPTIONSFILE}; \
- ${ECHO_CMD} "# Options for ${PKGNAME}" >> $${TMPOPTIONSFILE}; \
- ${ECHO_CMD} "_OPTIONS_READ=${PKGNAME}" >> $${TMPOPTIONSFILE}; \
- for i in $${OPTIONSLIST}; do \
- ${ECHO_CMD} $${SELOPTIONS} | ${GREP} -qw $${i}; \
- if [ $$? -eq 0 ]; then \
- ${ECHO_CMD} WITH_$${i}=true >> $${TMPOPTIONSFILE}; \
- else \
- ${ECHO_CMD} WITHOUT_$${i}=true >> $${TMPOPTIONSFILE}; \
- fi; \
- done; \
- if [ `${ID} -u` != 0 -a "x${INSTALL_AS_USER}" = "x" ]; then \
- ${ECHO_MSG} "===> Switching to root credentials to write ${_OPTIONSFILE}"; \
- ${SU_CMD} "${CAT} $${TMPOPTIONSFILE} > ${_OPTIONSFILE}"; \
- ${ECHO_MSG} "===> Returning to user credentials"; \
- else \
- ${CAT} $${TMPOPTIONSFILE} > ${_OPTIONSFILE}; \
- fi; \
- ${RM} -f $${TMPOPTIONSFILE}
-.endif
-.endif
-
-.if !target(showconfig)
-showconfig:
-.if defined(OPTIONS) && exists(${_OPTIONSFILE})
- @${ECHO_MSG} "===> The following configuration options are set for ${PKGNAME}:"
- -@if [ -e ${_OPTIONSFILE} ]; then \
- . ${_OPTIONSFILE}; \
- fi; \
- set ${OPTIONS} XXX; \
- while [ $$# -gt 3 ]; do \
- defaultval=$$3; \
- withvar=WITH_$$1; \
- withoutvar=WITHOUT_$$1; \
- withval=$$(eval ${ECHO_CMD} $$\{$${withvar}\}); \
- withoutval=$$(eval ${ECHO_CMD} $$\{$${withoutvar}\}); \
- if [ ! -z "$${withval}" ]; then \
- val=on; \
- elif [ ! -z "$${withoutval}" ]; then \
- val=off; \
- else \
- val="$$3 (default)"; \
- fi; \
- ${ECHO_MSG} " $$1=$${val} \"$$2\""; \
- shift 3; \
- done
-.else
- @${ECHO_MSG} "===> No configuration options are set for this port"
-.if defined(OPTIONS)
- @${ECHO_MSG} " Use 'make config' to set default values"
-.endif
-.endif
-.endif
-
-.if !target(rmconfig)
-rmconfig:
-.if defined(OPTIONS) && exists(${_OPTIONSFILE})
- -@${ECHO_MSG} "===> Removing user-configured options for ${PKGNAME}"; \
- if [ `${ID} -u` != 0 -a "x${INSTALL_AS_USER}" = "x" ]; then \
- ${ECHO_MSG} "===> Switching to root credentials to remove ${_OPTIONSFILE} and `${DIRNAME} ${_OPTIONSFILE}`"; \
- ${SU_CMD} "${RM} -f ${_OPTIONSFILE} ; \
- ${RMDIR} `${DIRNAME} ${_OPTIONSFILE}`"; \
- ${ECHO_MSG} "===> Returning to user credentials"; \
- else \
- ${RM} -f ${_OPTIONSFILE}; \
- ${RMDIR} `${DIRNAME} ${_OPTIONSFILE}`; \
- fi
-.else
- @${ECHO_MSG} "===> No user-specified options configured for ${PKGNAME}"
-.endif
-.endif
diff --git a/ports-mgmt/portmk/Mk/bsd.port.pre.mk b/ports-mgmt/portmk/Mk/bsd.port.pre.mk
deleted file mode 100644
index ca8804168d21..000000000000
--- a/ports-mgmt/portmk/Mk/bsd.port.pre.mk
+++ /dev/null
@@ -1,419 +0,0 @@
-#-*- mode: makefile; tab-width: 4; -*-
-# ex:ts=4
-#
-# $FreeBSD$
-#
-
-PORTMK_VERSION= 20050202
-
-.if defined(_PREMKINCLUDED)
-check-makefile::
- @${ECHO_CMD} "${PKGNAME}: Makefile error: you cannot include bsd.port[.pre].mk twice"
- @${FALSE}
-.endif
-
-_PREMKINCLUDED= yes
-
-.if defined(MAKE_VERSION)
-.if ${MAKE_VERSION} >= 5200408030 || ${MAKE_VERSION} >= 4200408030 && ${MAKE_VERSION} < 5000000000
-NOPRECIOUSSOFTMAKEVARS= yes
-.endif
-.endif
-
-AWK?= /usr/bin/awk
-BASENAME?= /usr/bin/basename
-BRANDELF?= /usr/bin/brandelf
-.if exists(/usr/bin/bzip2)
-BZCAT?= /usr/bin/bzcat
-BZIP2_CMD?= /usr/bin/bzip2
-.else
-BZCAT?= ${LOCALBASE}/bin/bzcat
-BZIP2_CMD?= ${LOCALBASE}/bin/bzip2
-BZIP2DEPENDS= yes
-.endif
-CAT?= /bin/cat
-CHGRP?= /usr/bin/chgrp
-CHMOD?= /bin/chmod
-CHOWN?= /usr/sbin/chown
-CHROOT?= /usr/sbin/chroot
-COMM?= /usr/bin/comm
-CP?= /bin/cp
-CPIO?= /usr/bin/cpio
-CUT?= /usr/bin/cut
-DATE?= /bin/date
-DC?= /usr/bin/dc
-DIALOG?= /usr/bin/dialog
-DIRNAME?= /usr/bin/dirname
-EGREP?= /usr/bin/egrep
-EXPR?= /bin/expr
-FALSE?= false # Shell builtin
-FILE?= /usr/bin/file
-FIND?= /usr/bin/find
-FMT?= /usr/bin/fmt
-GREP?= /usr/bin/grep
-GUNZIP_CMD?= /usr/bin/gunzip -f
-GZCAT?= /usr/bin/gzcat
-GZIP?= -9
-GZIP_CMD?= /usr/bin/gzip -nf ${GZIP}
-HEAD?= /usr/bin/head
-ID?= /usr/bin/id
-IDENT?= /usr/bin/ident
-LDCONFIG?= /sbin/ldconfig
-LN?= /bin/ln
-LS?= /bin/ls
-MKDIR?= /bin/mkdir -p
-MKTEMP?= /usr/bin/mktemp
-MV?= /bin/mv
-OBJCOPY?= /usr/bin/objcopy
-OBJDUMP?= /usr/bin/objdump
-PASTE?= /usr/bin/paste
-PAX?= /bin/pax
-PRINTF?= /usr/bin/printf
-REALPATH?= /bin/realpath
-RM?= /bin/rm
-RMDIR?= /bin/rmdir
-SED?= /usr/bin/sed
-SETENV?= /usr/bin/env
-SH?= /bin/sh
-SORT?= /usr/bin/sort
-STRIP_CMD?= /usr/bin/strip
-SU_CMD?= /usr/bin/su root -c
-TAIL?= /usr/bin/tail
-TEST?= test # Shell builtin
-TR?= /usr/bin/tr
-TRUE?= true # Shell builtin
-UNAME?= /usr/bin/uname
-.if exists(/usr/bin/unzip)
-UNZIP_CMD?= /usr/bin/unzip
-.else
-UNZIP_CMD?= ${LOCALBASE}/bin/unzip
-ZIPDEPENDS= yes
-.endif
-WHICH?= /usr/bin/which
-XARGS?= /usr/bin/xargs
-YACC?= /usr/bin/yacc
-
-# ECHO is defined in /usr/share/mk/sys.mk, which can either be "echo",
-# or "true" if the make flag -s is given. Use ECHO_CMD where you mean
-# the echo command.
-ECHO_CMD?= echo # Shell builtin
-
-# Used to print all the '===>' style prompts - override this to turn them off.
-ECHO_MSG?= ${ECHO_CMD}
-
-# Get the default maintainer
-MAINTAINER?= ports@FreeBSD.org
-
-# Get the architecture
-.if !defined(ARCH)
-ARCH!= ${UNAME} -p
-.endif
-
-# Kludge for pre-3.0 systems
-MACHINE_ARCH?= i386
-
-# Get the operating system type
-.if !defined(OPSYS)
-OPSYS!= ${UNAME} -s
-.endif
-
-# Get the operating system revision
-.if !defined(OSREL)
-OSREL!= ${UNAME} -r | ${SED} -e 's/[-(].*//'
-.endif
-
-# Get __FreeBSD_version
-.if !defined(OSVERSION)
-.if exists(/sbin/sysctl)
-OSVERSION!= /sbin/sysctl -n kern.osreldate
-.else
-OSVERSION!= /usr/sbin/sysctl -n kern.osreldate
-.endif
-.endif
-
-# Get the object format.
-.if !defined(PORTOBJFORMAT)
-PORTOBJFORMAT!= ${TEST} -x /usr/bin/objformat && /usr/bin/objformat || ${ECHO_CMD} aout
-.endif
-
-MASTERDIR?= ${.CURDIR}
-
-PORTMK_CONF?= /etc/portmk.conf
-
-.if exists(${PORTMK_CONF})
-.include "${PORTMK_CONF}"
-.endif
-
-# If they exist, include Makefile.inc, then architecture/operating
-# system specific Makefiles, then local Makefile.local.
-
-.if ${MASTERDIR} != ${.CURDIR} && exists(${.CURDIR}/../Makefile.inc)
-.include "${.CURDIR}/../Makefile.inc"
-USE_SUBMAKE= yes
-.endif
-
-.if exists(${MASTERDIR}/../Makefile.inc)
-.include "${MASTERDIR}/../Makefile.inc"
-USE_SUBMAKE= yes
-.endif
-
-.if exists(${MASTERDIR}/Makefile.${ARCH}-${OPSYS})
-.include "${MASTERDIR}/Makefile.${ARCH}-${OPSYS}"
-USE_SUBMAKE= yes
-.elif exists(${MASTERDIR}/Makefile.${OPSYS})
-.include "${MASTERDIR}/Makefile.${OPSYS}"
-USE_SUBMAKE= yes
-.elif exists(${MASTERDIR}/Makefile.${ARCH})
-.include "${MASTERDIR}/Makefile.${ARCH}"
-USE_SUBMAKE= yes
-.endif
-
-.if exists(${MASTERDIR}/Makefile.local)
-.include "${MASTERDIR}/Makefile.local"
-USE_SUBMAKE= yes
-.endif
-
-# where 'make config' records user configuration options
-PORT_DBDIR?= /var/db/ports
-
-.if defined(LATEST_LINK)
-UNIQUENAME?= ${LATEST_LINK}
-.else
-UNIQUENAME?= ${PKGNAMEPREFIX}${PORTNAME}
-.endif
-OPTIONSFILE?= ${PORT_DBDIR}/${UNIQUENAME}/options
-_OPTIONSFILE!= ${ECHO_CMD} "${OPTIONSFILE}"
-.if defined(OPTIONS) && !defined(_OPTIONSNG_READ)
-.if exists(${_OPTIONSFILE}) && !make(rmconfig)
-.include "${_OPTIONSFILE}"
-.endif
-.if exists(${_OPTIONSFILE}.local)
-.include "${_OPTIONSFILE}.local"
-.endif
-.endif
-
-# check for old, crufty, makefile types, part 1:
-.if !defined(PORTNAME) || !( defined(PORTVERSION) || defined (DISTVERSION) ) || defined(PKGNAME)
-check-makefile::
- @${ECHO_CMD} "Makefile error: you need to define PORTNAME and PORTVERSION instead of PKGNAME."
- @${ECHO_CMD} "(This port is too old for your bsd.port.mk, please update it to match"
- @${ECHO_CMD} " your bsd.port.mk.)"
- @${FALSE}
-.endif
-
-.if defined(PORTVERSION)
-.if ${PORTVERSION:M*[-_,]*}x != x
-BROKEN= "PORTVERSION ${PORTVERSION} may not contain '-' '_' or ','"
-.endif
-DISTVERSION?= ${PORTVERSION:S/:/::/g}
-.elif defined(DISTVERSION)
-PORTVERSION= ${DISTVERSION:L:C/([a-z])[a-z]+/\1/g:C/([0-9])([a-z])/\1.\2/g:C/:(.)/\1/g:C/[^a-z0-9+]+/./g}
-.endif
-
-PORTREVISION?= 0
-.if ${PORTREVISION} != 0
-_SUF1= _${PORTREVISION}
-.endif
-
-PORTEPOCH?= 0
-.if ${PORTEPOCH} != 0
-_SUF2= ,${PORTEPOCH}
-.endif
-
-# check for old, crufty, makefile types, part 2. The "else" case
-# should have been handled in part 1, above.
-.if !defined(PKGNAME)
-PKGNAME= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION:C/[-_,]/./g}${_SUF1}${_SUF2}
-.endif
-DISTNAME?= ${PORTNAME}-${DISTVERSIONPREFIX}${DISTVERSION:C/:(.)/\1/g}${DISTVERSIONSUFFIX}
-
-# These need to be absolute since we don't know how deep in the ports
-# tree we are and thus can't go relative. They can, of course, be overridden
-# by individual Makefiles or local system make configuration.
-PORTSDIR?= /usr/ports
-LOCALBASE?= /usr/local
-X11BASE?= /usr/X11R6
-LINUXBASE?= /compat/linux
-DISTDIR?= ${PORTSDIR}/distfiles
-_DISTDIR?= ${DISTDIR}/${DIST_SUBDIR}
-.if ${OSVERSION} >= 600000
-INDEXFILE?= INDEX-6
-.elif ${OSVERSION} >= 500036
-INDEXFILE?= INDEX-5
-.else
-INDEXFILE?= INDEX
-.endif
-.if defined(USE_BZIP2)
-EXTRACT_SUFX?= .tar.bz2
-.elif defined(USE_ZIP)
-EXTRACT_SUFX?= .zip
-.else
-EXTRACT_SUFX?= .tar.gz
-.endif
-PACKAGES?= ${PORTSDIR}/packages
-TEMPLATES?= ${PORTSDIR}/Templates
-
-.if (!defined(PKGDIR) && exists(${MASTERDIR}/pkg/DESCR)) || \
- (!defined(MD5_FILE) && exists(${MASTERDIR}/files/md5))
-check-makefile::
- @${ECHO_CMD} "Makefile error: your port uses an old layout. Please update it to match this bsd.port.mk. If you have updated your ports collection via cvsup and are still getting this error, see Q12 and Q13 in the cvsup FAQ on http://www.polstra.com for further information."
- @${FALSE}
-.endif
-PATCHDIR?= ${MASTERDIR}/files
-FILESDIR?= ${MASTERDIR}/files
-SCRIPTDIR?= ${MASTERDIR}/scripts
-PKGDIR?= ${MASTERDIR}
-
-.if defined(USE_IMAKE) && !defined(USE_X_PREFIX)
-USE_X_PREFIX= yes
-.endif
-.if defined(USE_X_PREFIX) && ${USE_X_PREFIX} == "no"
-.undef USE_X_PREFIX
-.endif
-.if defined(USE_X_PREFIX)
-USE_XLIB= yes
-.endif
-.if defined(USE_X_PREFIX)
-PREFIX?= ${X11BASE}
-.elif defined(USE_LINUX_PREFIX)
-PREFIX?= ${LINUXBASE}
-NO_MTREE= yes
-.else
-PREFIX?= ${LOCALBASE}
-.endif
-
-PKGCOMPATDIR?= ${LOCALBASE}/lib/compat/pkg
-
-.if defined(WITH_APACHE2)
-APACHE_PORT?= www/apache2
-.else
-APACHE_PORT?= www/apache13
-.endif
-APXS?= ${LOCALBASE}/sbin/apxs
-.if defined(USE_APACHE)
-BUILD_DEPENDS+= ${APXS}:${PORTSDIR}/${APACHE_PORT}
-RUN_DEPENDS+= ${APXS}:${PORTSDIR}/${APACHE_PORT}
-.endif
-
-.if ${OSVERSION} >= 500036
-PERL_VERSION?= 5.8.6
-PERL_VER?= 5.8.6
-.else
-.if ${OSVERSION} >= 500032
-PERL_VERSION?= 5.6.1
-PERL_VER?= 5.6.1
-.else
-.if ${OSVERSION} >= 500007
-PERL_VERSION?= 5.6.0
-PERL_VER?= 5.6.0
-.else
-.if ${OSVERSION} >= 300000
-PERL_VERSION?= 5.00503
-.else
-PERL_VERSION?= 5.00502
-.endif
-PERL_VER?= 5.005
-.endif
-.endif
-.endif
-
-.if !defined(PERL_LEVEL) && defined(PERL_VERSION)
-perl_major= ${PERL_VERSION:C|^([1-9]+).*|\1|}
-_perl_minor= 00${PERL_VERSION:C|^([1-9]+)\.([0-9]+).*|\2|}
-perl_minor= ${_perl_minor:C|^.*(...)|\1|}
-.if ${perl_minor} >= 100
-perl_minor= ${PERL_VERSION:C|^([1-9]+)\.([0-9][0-9][0-9]).*|\2|}
-perl_patch= ${PERL_VERSION:C|^.*(..)|\1|}
-.else # ${perl_minor} < 100
-_perl_patch= 0${PERL_VERSION:C|^([1-9]+)\.([0-9]+)\.*|0|}
-perl_patch= ${_perl_patch:C|^.*(..)|\1|}
-.endif # ${perl_minor} < 100
-PERL_LEVEL= ${perl_major}${perl_minor}${perl_patch}
-.else
-PERL_LEVEL=0
-.endif # !defined(PERL_LEVEL) && defined(PERL_VERSION)
-
-.if ${PERL_LEVEL} >= 500600
-PERL_ARCH?= mach
-.else
-PERL_ARCH?= ${ARCH}-freebsd
-.endif
-
-.if ${PERL_LEVEL} >= 500800
-PERL_PORT?= perl5.8
-.else
-PERL_PORT?= perl5
-.endif
-
-SITE_PERL_REL?= lib/perl5/site_perl/${PERL_VER}
-SITE_PERL?= ${LOCALBASE}/${SITE_PERL_REL}
-
-.if ${PERL_LEVEL} < 500600
-PERL5= /usr/bin/perl${PERL_VERSION}
-PERL= /usr/bin/perl
-.else
-PERL5= ${LOCALBASE}/bin/perl${PERL_VERSION}
-PERL= ${LOCALBASE}/bin/perl
-.endif
-
-# XXX: (not yet): .if defined(USE_AUTOTOOLS)
-# .include "${PORTSDIR}/Mk/bsd.autotools.mk"
-# XXX: (not yet): .endif
-
-.if defined(USE_OPENSSL)
-.include "${PORTSDIR}/Mk/bsd.openssl.mk"
-.endif
-
-.if defined(EMACS_PORT_NAME)
-.include "${PORTSDIR}/Mk/bsd.emacs.mk"
-.endif
-
-.if defined(USE_GNUSTEP)
-.include "${PORTSDIR}/Mk/bsd.gnustep.mk"
-.endif
-
-.if defined(USE_PHP)
-.include "${PORTSDIR}/Mk/bsd.php.mk"
-.endif
-
-.if defined(USE_PYTHON)
-.include "${PORTSDIR}/Mk/bsd.python.mk"
-.endif
-
-.if defined(USE_JAVA)
-.include "${PORTSDIR}/Mk/bsd.java.mk"
-.endif
-
-.if defined(USE_RUBY) || defined(USE_LIBRUBY)
-.include "${PORTSDIR}/Mk/bsd.ruby.mk"
-.endif
-
-.if defined(USE_QT_VER) || defined(USE_KDELIBS_VER) || defined(USE_KDEBASE_VER)
-.include "${PORTSDIR}/Mk/bsd.kde.mk"
-.endif
-
-.if defined(WANT_GNOME) || defined(USE_GNOME) || defined(USE_GTK)
-.include "${PORTSDIR}/Mk/bsd.gnome.mk"
-.endif
-
-.if defined(USE_SDL) || defined(WANT_SDL)
-.include "${PORTSDIR}/Mk/bsd.sdl.mk"
-.endif
-
-.if ${OSVERSION} >= 502123
-X_WINDOW_SYSTEM ?= xorg
-.elif (${OSVERSION} >= 450005 && !defined(XFREE86_VERSION)) || \
- (defined(XFREE86_VERSION) && ${XFREE86_VERSION} == 4)
-X_WINDOW_SYSTEM ?= xfree86-4
-.else
-X_WINDOW_SYSTEM ?= xfree86-3
-.endif
-
-# Location of mounted CDROM(s) to search for files
-CD_MOUNTPTS?= /cdrom ${CD_MOUNTPT}
-
-WANT_OPENLDAP_VER?= 22
-
-# Owner and group of the WWW user
-WWWOWN?= www
-WWWGRP?= www
diff --git a/ports-mgmt/portmk/Mk/bsd.port.subdir.mk b/ports-mgmt/portmk/Mk/bsd.port.subdir.mk
index 48f50e13453f..b3f988016f6a 100644
--- a/ports-mgmt/portmk/Mk/bsd.port.subdir.mk
+++ b/ports-mgmt/portmk/Mk/bsd.port.subdir.mk
@@ -1,3 +1,434 @@
+# from: @(#)bsd.subdir.mk 5.9 (Berkeley) 2/1/91
# $FreeBSD$
+#
+# The include file <bsd.port.subdir.mk> contains the default targets
+# for building ports subdirectories.
+#
+#
+# +++ variables +++
+#
+# STRIP The flag passed to the install program to cause the binary
+# to be stripped. This is to be used when building your
+# own install script so that the entire system can be made
+# stripped/not-stripped using a single knob. [-s]
+#
+# ECHO_MSG Used to print all the '===>' style prompts - override this
+# to turn them off [echo].
+#
+# OPSYS Get the operating system type [`uname -s`]
+#
+# SUBDIR A list of subdirectories that should be built as well.
+# Each of the targets will execute the same target in the
+# subdirectories.
+#
+#
+# +++ targets +++
+#
+# README.html:
+# Creating README.html for package.
+#
+# afterinstall, all, beforeinstall, build, checksum, clean,
+# clean-for-cdrom, clean-restricted,
+# clean-for-cdrom-list, clean-restricted-list,
+# configure, deinstall,
+# depend, depends, describe, extract, fetch, fetch-list, ignorelist,
+# install, maintainer, makesum, package, readmes, realinstall, reinstall,
+# tags
+#
+# search:
+# Search for ports using either 'make search key=<keyword>'
+# or 'make search name=<keyword>'.
-.include "${PORTSDIR}/Mk/bsd.port.subdir.mk"
+
+.MAIN: all
+
+.if !defined(DEBUG_FLAGS)
+STRIP?= -s
+.endif
+
+.if !defined(NOPRECIOUSMAKEVARS)
+.if !defined(ARCH)
+ARCH!= /usr/bin/uname -p
+.endif
+.if !defined(OSREL)
+OSREL!= /usr/bin/uname -r | sed -e 's/[-(].*//'
+.endif
+.if !defined(OSVERSION)
+.if exists(/sbin/sysctl)
+OSVERSION!= /sbin/sysctl -n kern.osreldate
+.else
+OSVERSION!= /usr/sbin/sysctl -n kern.osreldate
+.endif
+.endif
+.if !defined(PORTOBJFORMAT)
+PORTOBJFORMAT!= test -x /usr/bin/objformat && /usr/bin/objformat || echo aout
+.endif
+.endif
+
+ID?= /usr/bin/id
+UID!= ${ID} -u
+LOCALBASE?= ${DESTDIR}/usr/local
+.if exists(${LOCALBASE}/sbin/pkg_info)
+PKG_INFO?= ${LOCALBASE}/sbin/pkg_info
+.else
+PKG_INFO?= /usr/sbin/pkg_info
+.endif
+SED?= /usr/bin/sed
+PKGINSTALLVER!= ${PKG_INFO} -P 2>/dev/null | ${SED} -e 's/.*: //'
+
+.if !defined(OPSYS)
+OPSYS!= /usr/bin/uname -s
+.endif
+
+ECHO_MSG?= echo
+
+# local customization of the ports tree
+.if exists(${.CURDIR}/Makefile.local)
+.include "${.CURDIR}/Makefile.local"
+.endif
+
+TARGETS+= all
+TARGETS+= build
+TARGETS+= checksum
+TARGETS+= clean
+TARGETS+= clean-for-cdrom
+TARGETS+= clean-for-cdrom-list
+TARGETS+= clean-restricted
+TARGETS+= clean-restricted-list
+TARGETS+= configure
+TARGETS+= deinstall
+TARGETS+= depend
+TARGETS+= depends
+TARGETS+= distclean
+TARGETS+= extract
+TARGETS+= fetch
+TARGETS+= fetch-list
+TARGETS+= ignorelist
+TARGETS+= makesum
+TARGETS+= maintainer
+TARGETS+= package
+TARGETS+= package-recursive
+TARGETS+= realinstall
+TARGETS+= reinstall
+TARGETS+= tags
+
+.for __target in ${TARGETS}
+.if !target(${__target})
+.if defined(SUBDIR) && !empty(SUBDIR)
+${__target}: ${SUBDIR:S/^/_/:S/$/.${__target}/}
+.else
+${__target}:
+.endif
+.endif
+.endfor
+
+.if defined(SUBDIR) && !empty(SUBDIR)
+
+.for __target in ${TARGETS} checksubdirs describe readmes
+${SUBDIR:S/^/_/:S/$/.${__target}/}: _SUBDIRUSE
+.endfor
+
+_SUBDIRUSE: .USE
+ @OK=""; sub=${.TARGET:S/^_//:R}; \
+ for dud in $$DUDS; do \
+ if [ $${dud} = $$sub ]; then \
+ OK="false"; \
+ ${ECHO_MSG} "===> ${DIRPRFX}$$sub skipped"; \
+ fi; \
+ done; \
+ if test -d ${.CURDIR}/$${sub}.${MACHINE_ARCH}; then \
+ edir=$${sub}.${MACHINE_ARCH}; \
+ elif test -d ${.CURDIR}/$${sub}; then \
+ edir=$${sub}; \
+ else \
+ OK="false"; \
+ ${ECHO_MSG} "===> ${DIRPRFX}$${sub} non-existent"; \
+ fi; \
+ if [ "$$OK" = "" ]; then \
+ ${ECHO_MSG} "===> ${DIRPRFX}$${edir}"; \
+ cd ${.CURDIR}/$${edir}; \
+ ${MAKE} -B ${.TARGET:E:realinstall=install} \
+ DIRPRFX=${DIRPRFX}$$edir/; \
+ fi
+
+.for _subdir in ${SUBDIR:S/^/_/}
+${_subdir}:: ${_subdir:S/$/.all/}
+.endfor
+
+.endif
+
+.if !target(install)
+.if !target(beforeinstall)
+beforeinstall:
+.endif
+.if !target(afterinstall)
+afterinstall:
+.endif
+install: afterinstall
+afterinstall: realinstall
+realinstall: beforeinstall ${SUBDIR:S/^/_/:S/$/.realinstall/}
+.endif
+
+IGNOREDIR= CVS Mk Templates Tools distfiles packages pkg
+
+.if !target(checksubdirs)
+.if defined(PORTSTOP)
+checksubdirs: checksubdir ${SUBDIR:S/^/_/:S/$/.checksubdirs/}
+.else
+checksubdirs: checksubdir
+.endif
+.endif
+
+.if !target(checksubdir)
+checksubdir:
+ @for d in *; do \
+ if [ -d "$$d" ]; then \
+ found=0; \
+ for s in ${SUBDIR} ${IGNOREDIR}; do \
+ if [ "x$$s" = "x$$d" ]; then \
+ found=1; \
+ break; \
+ fi; \
+ done; \
+ if [ $$found = 0 ]; then \
+ ${ECHO} "Warning: directory $$d not in SUBDIR"; \
+ fi; \
+ fi; \
+ done
+ @for s in ${SUBDIR}; do \
+ if ! [ -d ${.CURDIR}/$$s ]; then \
+ ${ECHO} "Warning: directory $$s in SUBDIR does not exist"; \
+ fi \
+ done
+.endif
+
+.if !target(describe)
+.if defined(PORTSTOP)
+# This is a bit convoluted to deal with the fact that make will overlap I/O from child make processes
+# if they write more than 2k: this will corrupt the INDEX file. make -P does not do this, but it adds
+# extraneous output and redirects stderr, so we lose error reporting from child makes. Instead we have
+# to roll our own implementation of make -P and make sure that each child make writes to their own file,
+# which we will combine at the end. This gives substantial performance benefits over doing a make -j1
+
+.if defined(BUILDING_INDEX)
+describe: ${SUBDIR:S/^/describe./}
+
+.for i in ${SUBDIR}
+describe.$i:
+ @cd ${.CURDIR}; ${MAKE} -B ${i:S/^/_/:S/$/.describe/} > ${INDEX_TMPDIR}/${INDEXFILE}.desc.${i}
+.endfor
+.else
+describe: ${SUBDIR:S/^/_/:S/$/.describe/}
+.endif
+.else
+describe:
+ @for sub in ${SUBDIR}; do \
+ if test -d ${.CURDIR}/$${sub}; then \
+ ${ECHO_MSG} "===> ${DIRPRFX}$${sub}"; \
+ cd ${.CURDIR}/$${sub}; \
+ ${MAKE} -B describe || \
+ (echo "===> ${DIRPRFX}$${sub} failed" >&2; \
+ exit 1) ;\
+ else \
+ ${ECHO_MSG} "===> ${DIRPRFX}$${sub} non-existent"; \
+ fi; \
+ done
+.endif
+.endif
+
+.if !target(readmes)
+.if defined(PORTSTOP)
+readmes: readme ${SUBDIR:S/^/_/:S/$/.readmes/}
+ @${ECHO_MSG} "===> Creating README.html for all ports"
+ @perl ${PORTSDIR}/Tools/make_readmes < ${PORTSDIR}/${INDEXFILE}
+.else
+readmes: readme
+.endif
+.endif
+
+.if !target(readme)
+readme:
+ @rm -f README.html
+ @make README.html
+.endif
+
+.if (${OPSYS} == "NetBSD")
+PORTSDIR ?= /usr/opt
+.else
+PORTSDIR ?= /usr/ports
+.endif
+TEMPLATES ?= ${PORTSDIR}/Templates
+.if defined(PORTSTOP)
+README= ${TEMPLATES}/README.top
+.else
+README= ${TEMPLATES}/README.category
+.endif
+COMMENTFILE?= ${.CURDIR}/pkg/COMMENT
+DESCR?= ${.CURDIR}/pkg/DESCR
+.if ${OSVERSION} >= 600000
+INDEXFILE?= INDEX-6
+.elif ${OSVERSION} >= 500036
+INDEXFILE?= INDEX-5
+.else
+INDEXFILE?= INDEX
+.endif
+
+HTMLIFY= sed -e 's/&/\&amp;/g' -e 's/>/\&gt;/g' -e 's/</\&lt;/g'
+
+package-name:
+ @echo ${.CURDIR} | sed -e 's^.*/^^'
+
+README.html:
+ @echo "===> Creating README.html"
+ @> $@.tmp
+.for entry in ${SUBDIR}
+.if exists(${entry})
+.if defined(PORTSTOP)
+ @echo -n '<a href="'${entry}/README.html'">'"`echo ${entry} | ${HTMLIFY}`"'</a>: ' >> $@.tmp
+.else
+ @echo -n '<a href="'${entry}/README.html'">'"`cd ${entry}; make package-name | ${HTMLIFY}`</a>: " >> $@.tmp
+.endif
+ @echo `cd ${entry}; make -V COMMENT` | ${HTMLIFY} >> $@.tmp
+.endif
+.endfor
+ @sort -t '>' +1 -2 $@.tmp > $@.tmp2
+.if exists(${DESCR})
+ @${HTMLIFY} ${DESCR} > $@.tmp3
+.else
+ @> $@.tmp3
+.endif
+.if defined(COMMENT)
+ @echo "${COMMENT}" | ${HTMLIFY} > $@.tmp4
+.else
+.if exists(${COMMENTFILE})
+ @${HTMLIFY} ${COMMENTFILE} > $@.tmp4
+.else
+ @> $@.tmp4
+.endif
+.endif
+ @cat ${README} | \
+ sed -e 's/%%CATEGORY%%/'"`basename ${.CURDIR}`"'/g' \
+ -e '/%%COMMENT%%/r$@.tmp4' \
+ -e '/%%COMMENT%%/d' \
+ -e '/%%DESCR%%/r$@.tmp3' \
+ -e '/%%DESCR%%/d' \
+ -e '/%%SUBDIR%%/r$@.tmp2' \
+ -e '/%%SUBDIR%%/d' \
+ > $@
+ @rm -f $@.tmp $@.tmp2 $@.tmp3 $@.tmp4
+
+.if !defined(NOPRECIOUSMAKEVARS)
+.MAKEFLAGS: \
+ ARCH="${ARCH:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}" \
+ OPSYS="${OPSYS:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}" \
+ OSREL="${OSREL:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}" \
+ OSVERSION="${OSVERSION:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}" \
+ PORTOBJFORMAT="${PORTOBJFORMAT:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}" \
+ UID="${UID:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}" \
+ PKGINSTALLVER="${PKGINSTALLVER:S/"/"'"'"/g:S/\$/\$\$/g:S/\\/\\\\/g}"
+.endif
+
+PORTSEARCH_DISPLAY_FIELDS?=name,path,info,maint,index,bdeps,rdeps,www
+PORTSEARCH_KEYLIM?=0
+PORTSEARCH_XKEYLIM?=0
+PORTSEARCH_IGNORECASE?=1
+
+search: ${PORTSDIR}/${INDEXFILE}
+ @here=${.CURDIR}; \
+ cd ${PORTSDIR}; \
+ if [ -z "$$key" -a -z "$$xkey" -a \
+ -z "$$name" -a -z "$$xname" -a \
+ -z "$$path" -a -z "$$xpath" -a \
+ -z "$$info" -a -z "$$xinfo" -a \
+ -z "$$maint" -a -z "$$xmaint" -a \
+ -z "$$cat" -a -z "$$xcat" -a \
+ -z "$$bdeps" -a -z "$$xbdeps" -a \
+ -z "$$rdeps" -a -z "$$xrdeps" -a \
+ -z "$$www" -a -z "$$xwww" ]; \
+ then \
+ echo "The search target requires a keyword parameter or name parameter,"; \
+ echo "e.g.: \"make search key=somekeyword\""; \
+ echo "or \"make search name=somekeyword\""; \
+ exit; \
+ fi; \
+ awk -F\| -v there="$$here/" -v top="$$(pwd -P)" \
+ -v key="$$key" -v xkey="$$xkey" \
+ -v name="$$name" -v xname="$$xname" \
+ -v path="$$path" -v xpath="$$xpath" \
+ -v info="$$info" -v xinfo="$$xinfo" \
+ -v maint="$$maint" -v xmaint="$$xmaint" \
+ -v cat="$$cat" -v xcat="$$xcat" \
+ -v bdeps="$$bdeps" -v xbdeps="$$xbdeps" \
+ -v rdeps="$$rdeps" -v xrdeps="$$xrdeps" \
+ -v www="$$www" -v xwww="$$xwww" \
+ -v icase="$${icase:-${PORTSEARCH_IGNORECASE}}" \
+ -v keylim="$${keylim:-${PORTSEARCH_KEYLIM}}" \
+ -v xkeylim="$${xkeylim:-${PORTSEARCH_XKEYLIM}}" \
+ -v display="$${display:-${PORTSEARCH_DISPLAY_FIELDS}}" \
+ 'BEGIN { \
+ gsub(/\+/,"\\+",name); \
+ if (substr(there, 1, length(top)) == top) \
+ there = "${PORTSDIR}" substr(there, 1 + length(top)); \
+ therelen = length(there); \
+ keylen = length(key); keylim = keylim && keylen; \
+ if (!keylim && keylen) \
+ parms[0] = (icase ? tolower(key) : key); \
+ xkeylen = length(xkey); xkeylim = xkeylim && xkeylen; \
+ if (!xkeylim && xkeylen) \
+ xparms[0] = (icase ? tolower(xkey) : xkey); \
+ if (icase) { \
+ if (length(name)) parms[1] = tolower(name); if (length(xname)) xparms[1] = tolower(xname); \
+ if (length(path)) parms[2] = tolower(path); if (length(xpath)) xparms[2] = tolower(xpath); \
+ if (length(info)) parms[4] = tolower(info); if (length(xinfo)) xparms[4] = tolower(xinfo); \
+ if (length(maint)) parms[6] = tolower(maint); if (length(xmaint)) xparms[6] = tolower(xmaint); \
+ if (length(cat)) parms[7] = tolower(cat); if (length(xcat)) xparms[7] = tolower(xcat); \
+ if (length(bdeps)) parms[8] = tolower(bdeps); if (length(xbdeps)) xparms[8] = tolower(xbdeps); \
+ if (length(rdeps)) parms[9] = tolower(rdeps); if (length(xrdeps)) xparms[9] = tolower(xrdeps); \
+ if (length(www)) parms[10] = tolower(www); if (length(xwww)) xparms[10] = tolower(xwww); \
+ } else { \
+ if (length(name)) parms[1] = name; if (length(xname)) xparms[1] = xname; \
+ if (length(path)) parms[2] = path; if (length(xpath)) xparms[2] = xpath; \
+ if (length(info)) parms[4] = info; if (length(xinfo)) xparms[4] = xinfo; \
+ if (length(maint)) parms[6] = maint; if (length(xmaint)) xparms[6] = xmaint; \
+ if (length(cat)) parms[7] = cat; if (length(xcat)) xparms[7] = xcat; \
+ if (length(bdeps)) parms[8] = bdeps; if (length(xbdeps)) xparms[8] = xbdeps; \
+ if (length(rdeps)) parms[9] = rdeps; if (length(xrdeps)) xparms[9] = xrdeps; \
+ if (length(www)) parms[10] = www; if (length(xwww)) xparms[10] = xwww; \
+ } \
+ fields["name"] = 1; names[1] = "Port"; \
+ fields["path"] = 2; names[2] = "Path"; \
+ fields["info"] = 4; names[4] = "Info"; \
+ fields["maint"] = 6; names[6] = "Maint"; \
+ fields["cat"] = 7; names[7] = "Index"; \
+ fields["bdeps"] = 8; names[8] = "B-deps"; \
+ fields["rdeps"] = 9; names[9] = "R-deps"; \
+ fields["www"] = 10; names[10] = "WWW"; \
+ split(display, d, /,[ \t]*/); \
+ for (i in d) { \
+ disp[fields[d[i]]] = 1; \
+ } \
+ } \
+ { \
+ if (substr($$2, 1, therelen) != there) \
+ next; \
+ for (i in parms) \
+ if ((icase ? tolower($$i) : $$i) !~ parms[i]) \
+ next; \
+ for (i in xparms) \
+ if ((icase ? tolower($$i) : $$i) ~ xparms[i]) \
+ next; \
+ found = 0; \
+ for (i = 1; i < 11; i++) \
+ if (i in disp) { \
+ if (xkeylim && (icase ? tolower($$i) : $$i) ~ xkey) \
+ next; \
+ if (!found && keylim && (icase ? tolower($$i) : $$i) ~ key) \
+ found = 1; \
+ } \
+ if (keylim && !found) \
+ next; \
+ for (i = 1; i < 11; i++) \
+ if (i in disp) \
+ printf("%s:\t%s\n", names[i], $$i); \
+ print(""); \
+ }' ${PORTSDIR}/${INDEXFILE}
diff --git a/ports-mgmt/portmk/Mk/bsd.tcl.mk b/ports-mgmt/portmk/Mk/bsd.tcl.mk
new file mode 100644
index 000000000000..c0bfed148156
--- /dev/null
+++ b/ports-mgmt/portmk/Mk/bsd.tcl.mk
@@ -0,0 +1,145 @@
+# -*- mode: Makefile; tab-width: 4; -*-
+# ex: ts=4
+#
+# $FreeBSD$
+#
+
+.if !defined(_POSTMKINCLUDED) && !defined(Tcl_Pre_Include)
+
+Tcl_Pre_Include= bsd.tcl.mk
+Tcl_Include_MAINTAINER= vsevolod@FreeBSD.org
+
+# USE_TCL: Depend on tcl to run. In case of incompatible APIs of different
+# TCL versions the version can be specified directly. If version
+# is not specified (USE_TCL=yes) then the latest version is
+# used (8.4 currently).
+# Available values are: 84, 83, 82, 81 and 80.
+#
+# USE_TK: Depend on tk to run. In case of incompatible APIs of different
+# TK versions the version can be specified directly. If version
+# is not specified (USE_TK=yes) then the latest version is
+# used (8.4 currently).
+# Available values are: 84, 83, 82, 81 and 80.
+##
+# TCL_LIBDIR: Path where tcl libraries can be found
+#
+# TCL_INCLUDEDIR: Path where tcl C headers can be found
+##
+# TK_LIBDIR: Path where tk libraries can be found
+#
+# TK_INCLUDEDIR: Path where tk C headers can be found
+##
+# TCLSH: Path to tclsh executable respecting tcl version
+#
+# WISH: Path to wish executable respecting tk version
+##
+# PATCH_TCL_SCRIPTS: List of tcl scripts that need to be patched to replace tclsh
+# calls to tclsh${TK_VER} calls. Note that this implies USE_REINPLACE
+# as REINPLACE_CMD is used for patching. Also note that post-patch
+# target is used.
+#
+# PATCH_TK_SCRIPTS: List of tcl scripts that need to be patched to replace wish
+# calls to wish${TK_VER} calls. Note that this implies USE_REINPLACE
+# as REINPLACE_CMD is used for patching. Also note that post-patch
+# target is used.
+
+.if defined(USE_TCL) || defined(USE_TCL_BUILD)
+
+_TCL_VERSIONS= 84 83 82 81 80
+
+.if defined(USE_TCL_BUILD)
+USE_TCL= ${USE_TCL_BUILD}
+_BUILD= yes
+.endif
+
+.if ${USE_TCL} == "yes"
+USE_TCL= 84
+.endif
+
+TCL_VER:= ${USE_TCL:S/8/8./}
+
+# Special case
+.if ${USE_TCL} == "81"
+USE_TCL= tcl81-thread
+.endif
+
+_FOUND= no
+.for ver in ${_TCL_VERSIONS}
+. if ${USE_TCL} == ${ver}
+_FOUND= yes
+. if defined(_BUILD)
+BUILD_DEPENDS+= tclsh${TCL_VER}:${PORTSDIR}/lang/tcl${USE_TCL}
+. else
+RUN_DEPENDS+= tclsh${TCL_VER}:${PORTSDIR}/lang/tcl${USE_TCL}
+. endif
+TCL_INCLUDEDIR= ${LOCALBASE}/include/tcl${TCL_VER}
+TCL_LIBDIR= ${LOCALBASE}/lib/tcl${TCL_VER}
+TCLSH= ${LOCALBASE}/bin/tclsh${TCL_VER}
+. endif
+.endfor
+
+.if ${_FOUND} == "no"
+IGNORE= "Unknown TCL version specified: ${USE_TCL}"
+.endif
+.endif # defined(USE_TCL)
+
+.if defined(USE_TK)
+
+_TK_VERSIONS= 84 83 82 81 80
+
+.if ${USE_TK} == "yes"
+USE_TK= 84
+.endif
+
+TK_VER:= ${USE_TK:S/8/8./}
+
+.if defined(USE_TCL) && ${TCL_VER} != ${TK_VER}
+IGNORE= "TCL and TK versions must be equal (${TCL_VER} vs ${TK_VER})"
+.endif
+
+_FOUND= no
+.for ver in ${_TK_VERSIONS}
+. if ${USE_TK} == ${ver}
+_FOUND= yes
+RUN_DEPENDS+= wish${TK_VER}:${PORTSDIR}/x11-toolkits/tk${USE_TK}
+TCL_INCLUDEDIR= ${LOCALBASE}/include/tcl${TK_VER}
+TCL_LIBDIR= ${LOCALBASE}/lib/tcl${TK_VER}
+TK_INCLUDEDIR= ${LOCALBASE}/include/tk${TK_VER}
+TK_LIBDIR= ${LOCALBASE}/lib/tk${TK_VER}
+TCLSH= ${LOCALBASE}/bin/tclsh${TK_VER}
+WISH= ${LOCALBASE}/bin/wish${TK_VER}
+. endif
+.endfor
+
+.if ${_FOUND} == "no"
+IGNORE= "Unknown TK version specified: ${USE_TK}"
+.endif
+.endif # defined(USE_TK)
+
+.if defined(PATCH_TCL_SCRIPTS) || defined (PATCH_TK_SCRIPTS)
+USE_REINPLACE= yes
+.endif
+
+.endif # !defined(_POSTMKINCLUDED) && !defined(Tcl_Pre_Include)
+
+.if defined(_POSTMKINCLUDED) && !defined(Tcl_Post_Include)
+
+Tcl_Post_Include= bsd.tcl.mk
+
+.if defined(PATCH_TCL_SCRIPTS) || defined (PATCH_TK_SCRIPTS)
+.if !target(post-patch)
+post-patch:
+.if defined(PATCH_TCL_SCRIPTS) && defined(TCLSH)
+. for tcl_script in ${PATCH_TCL_SCRIPTS}
+ @${REINPLACE_CMD} -e 's,tclsh,${TCLSH},' ${WRKSRC}/${tcl_script}
+. endfor
+.endif
+.if defined(PATCH_TK_SCRIPTS) && defined(WISH)
+. for tk_script in ${PATCH_TK_SCRIPTS}
+ @${REINPLACE_CMD} -e 's,wish,${WISH},' ${WRKSRC}/${tk_script}
+. endfor
+.endif
+.endif # !target(post-patch)
+.endif # defined(PATCH_TCL_SCRIPTS) || defined (PATCH_TK_SCRIPTS)
+
+.endif # defined(_POSTMKINCLUDED) && !defined(Tcl_Post_Include)
diff --git a/ports-mgmt/portmk/scripts/distfiles.sh b/ports-mgmt/portmk/scripts/distfiles.sh
deleted file mode 100644
index fff6b2ff4836..000000000000
--- a/ports-mgmt/portmk/scripts/distfiles.sh
+++ /dev/null
@@ -1,1103 +0,0 @@
-#!/bin/sh -e
-#
-# Copyright (c) 2004 Oliver Eikemeier. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-# 1. Redistributions of source code must retain the above copyright notice
-# this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright
-# notice, this list of conditions and the following disclaimer in the
-# documentation and/or other materials provided with the distribution.
-#
-# 3. Neither the name of the author nor the names of its contributors may be
-# used to endorse or promote products derived from this software without
-# specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
-# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
-# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# $FreeBSD$
-#
-# MAINTAINER= eik@FreeBSD.org
-#
-# These variables are referenced and must be exported from the Makefile:
-#
-# DISABLE_SIZE
-# DISTFILES
-# DISTINFO_ALGORITHMS
-# DISTINFO_LABEL
-# DIST_SUBDIR
-# ECHO_MSG
-# FETCH_AFTER_ARGS
-# FETCH_BEFORE_ARGS
-# FETCH_CMD
-# FETCH_ENV
-# FETCH_SYMLINK_DISTFILES
-# IGNOREFILES
-# LOCALBASE
-# MASTER_SITES
-# MASTER_SITE_BACKUP
-# MASTER_SITE_OVERRIDE
-# MASTER_SORT_AWK
-# MASTER_SORT_CMD
-# MASTER_SORT_ENV
-# MK_FILE
-# NO_SIZE
-# PATCHFILES
-# PATCH_SITES
-# PERL5
-# VALID_ALGORITHMS
-#
-# These variables are user settable:
-#
-# DISABLE_SIZE
-# NO_CHECKSUM
-# FETCH_REGET
-#
-
-# utilities
-
-LOCALBASE="${LOCALBASE:-/usr/local}"
-
-AWK=/usr/bin/awk
-CAT=/bin/cat
-CUT=/usr/bin/cut
-EXPR=/bin/expr
-FETCH=/usr/bin/fetch
-GREP=/usr/bin/grep
-LS=/bin/ls
-MD5=/sbin/md5
-MKDIR='/bin/mkdir -p'
-MKTEMP=/usr/bin/mktemp
-PERL5="${PERL5:-/usr/bin/perl}"
-RM=/bin/rm
-[ -x /sbin/rmd160 ] && RMD160=/sbin/rmd160
-SED=/usr/bin/sed
-SETENV=/usr/bin/env
-[ -x /sbin/sha1 ] && SHA1=/sbin/sha1
-SORT=/usr/bin/sort
-TR=/usr/bin/tr
-WC=/usr/bin/wc
-
-if [ -x /usr/bin/openssl ]; then
- OPENSSL=/usr/bin/openssl
-elif -x "$LOCALBASE/bin/openssl" ];then
- OPENSSL="$LOCALBASE/bin/openssl"
-fi
-
-# global constants
-
-MK_FILE_ENDMARKER='^\.include[ ]*(<bsd\.port(\.post)?\.mk>|"\${MASTERDIR}\/Makefile")$'
-
-FETCH_REGET="${FETCH_REGET:-1}"
-
-### utility functions ###
-
-###
-# do_hash is a wrapper for md5/openssl/digest to calculate MD5/SHA1/RMD160 hashes
-###
-
-do_hash()
-{
- local alg
- alg="$1"
- shift
-
- case "$alg" in
- [Mm][Dd]5)
- if [ $# -eq 0 ]; then
- $MD5
- else
- $MD5 -- "$@"
- fi;;
- [Ss][Hh][Aa]1)
- if [ -n "$SHA1" ]; then
- echo $SHA1
- if [ $# -eq 0 ]; then
- $SHA1
- else
- $SHA1 -- "$@"
- fi
- else
- if [ $# -eq 0 ]; then
- "${OPENSSL:-true}" sha1
- else
- "${OPENSSL:-true}" sha1 ./"$@" |
- $SED -En -e 's/^[[:alnum:]]+ *\((\.\/)?(.*)\) *= *([[:xdigit:]]+)$/SHA1 (\2) = \3/p'
- fi
- fi;;
- [Rr][Mm][Dd]160)
- if [ -n "$RMD160" ]; then
- if [ $# -eq 0 ]; then
- $RMD160
- else
- $RMD160 -- "$@"
- fi
- else
- if [ $# -eq 0 ]; then
- "${OPENSSL:-true}" rmd160
- else
- "${OPENSSL:-true}" rmd160 ./"$@" |
- $SED -En -e 's/^[[:alnum:]]+ *\((\.\/)?(.*)\) *= *([[:xdigit:]]+)$/RMD160 (\2) = \3/p'
- fi
- fi;;
- [Ss][Ii][Zz][Ee])
- if [ $# -eq 0 ]; then
- $WC -c
- else
- while [ $# -gt 0 ]; do
- # avoid hassle with CLICOLOR_FORCE
- $LS -ALdfln -- "$1" | $AWK '{ print "SIZE ('"$1"') = " $5 }'
- shift
- done
- fi;;
- *)
- return 1;;
- esac
-}
-
-###
-# extract_sum extracts all checksums for a file in distinfo
-###
-
-extract_sum()
-{
- local algorithms pattern
- algorithms=`echo -n "$1" | $TR -s ' \t\n' '|'`
- pattern=`echo "$2$3" | $SED -e 's;[/.[\(*+?{|^$];\\\\&;g'`
- # distfiles match [a-zA-Z0-9.,_/@&%?=+-]+
-
- [ $# -eq 3 ] || return 1
-
- if [ -f "$MD5_FILE" ]; then
- $SED -En -e '/^('"$algorithms"') *\('"$pattern"'\) *= */s//\1=/p' "$MD5_FILE"
- elif $GREP -qs "^#:distinfo${DISTINFO_LABEL:+\.$DISTINFO_LABEL}$" "$MK_FILE"; then
- $SED -En -e '
- 1,/'"$MK_FILE_ENDMARKER"'/d
- /^#/!q
- /^#:distinfo'"${DISTINFO_LABEL:+.$DISTINFO_LABEL}"'$/,/^#:/ {
- s/^#('"$algorithms"') *\('"$pattern"'\) *= */\1=/
- t match
- b nomatch
- :match
- H
- :nomatch
- }
- $ {
- g
- p
- }
- ' "$MK_FILE"
- else
- for alg in $1; do
- for sum in `eval echo \\$DISTINFO_$alg`; do
- if [ "${sum%:*}" = "$3" ]; then
- echo "$alg=${sum##*:}"
- fi
- done
- done
- fi
-}
-
-###
-# chksumfiles calculates CKSUMFILES = DISTFILES + PATCHFILES - IGNOREFILES
-###
-
-chksumfiles()
-{
- echo "$IGNOREFILES" '<>' "$DISTFILES" "$PATCHFILES" |
- $TR -s ' \t' '\n' | $AWK '
- BEGIN { isignore=1 }
- /^$/ { next }
- /^<>$/ { isignore=0; next }
- {
- sub(/:[^:]+$/, "")
- if (isignore !=0)
- ignore[$0]=1
- else if (!($0 in ignore))
- print
- }
- '
-}
-
-### fetching distfiles ###
-
-###
-# fetch_xxx are wrappers for fetch
-###
-
-setup_fetch_cmd()
-{
- [ -z "$fetch_cmd" ] || return 0
-
- case "${FETCH_CMD%% *}" in
- */curl)
- fetch_cmd=fetch_curl;;
- */wget)
- fetch_cmd=fetch_wget;;
- *)
- fetch_cmd=fetch_fetch;;
- esac
-}
-
-fetch_curl()
-{
- local cksize
-
- cksize=
- if [ -n "$3" ]; then
- cksize=" --max-filesize $3"
- fi
-
- $SETENV $FETCH_ENV $FETCH_CMD $FETCH_BEFORE_ARGS$cksize \
- -o "$2" "$1" $FETCH_AFTER_ARGS
-}
-
-fetch_fetch()
-{
- local cksize
-
- case "$2" in
- */*)
- [ -d "${file%/*}" ] || $MKDIR "${file%/*}";;
- esac
-
- symlink=
- if [ -n "$FETCH_SYMLINK_DISTFILES" ]; then
- symlink=" -l"
- fi
-
- cksize=
- if [ -n "$3" -a "$OSVERSION" -ge 480000 ]; then
- cksize=" -S $3"
- fi
-
- $SETENV $FETCH_ENV $FETCH_CMD $FETCH_BEFORE_ARGS$symlink$cksize \
- -o "$2" "$1" $FETCH_AFTER_ARGS
-}
-
-fetch_wget()
-{
- case "$1" in
- file:*)
- fetch_fetch "$@" || return 1
- return 0;;
- esac
-
- case "$2" in
- */*)
- [ -d "${file%/*}" ] || $MKDIR "${file%/*}";;
- esac
-
- $SETENV $FETCH_ENV $FETCH_CMD $FETCH_BEFORE_ARGS \
- -O "$2" "$1" $FETCH_AFTER_ARGS
-}
-
-###
-# get_master_sites returns a list of $1_SITES for groups $2
-###
-
-get_master_sites()
-{
- [ $# -eq 2 ] || return 1
-
- # fun with awk
- for group in $2; do
- eval echo "\"\${$1_SITE_SUBDIR}\"" "'<>'" "\"\${$1_SITES}\"" |
- $TR -s ' \t' '\n' |
- $AWK '
- BEGIN {
- issubdir=1
- subdirs=0
- }
- /^$/ { next }
- /^<>$/ {
- issubdir=0
- if (subdirs == 0)
- subdir[subdirs++]=""
- next
- }
- {
- if ($0 ~ /\/:[^\/:]+$/) {
- if ($0 !~ /\/:([^\/:]*,)*'"$group"'(,[^\/:]*)*$/)
- next
- sub(/\/:[^\/:]+$/, issubdir != 0 ? "" : "/")
- } else if ("'"$group"'" != "DEFAULT") {
- next
- }
- }
- {
- if (issubdir != 0)
- subdir[subdirs++]=($0 == "." ? "" : $0 "/")
- else
- for (i in subdir) {
- site=$0
- gsub(/%SUBDIR%\//, subdir[i], site)
- print site
- }
- }
- ';
- done |
- $AWK '{ if ($0 in done) next; done[$0]=1 } { print }'
-}
-
-###
-# get_master_sites_sorted returns a sorted list of $1_SITES for groups $2
-###
-
-get_master_sites_sorted()
-{
- get_master_sites "$@" |
- if [ -n "$MASTER_SORT_CMD" ]; then
- $SETENV $MASTER_SORT_ENV $MASTER_SORT_CMD | $TR -s '\n' ' '
- elif [ -z "$KEEP_MASTER_SITE_ORDER" ]; then
- $AWK 'BEGIN { srand() } { print rand() "\t" $0 }' |
- $SORT -n | $CUT -f 2 | $TR -s '\n' ' ' |
- $AWK "$MASTER_SORT_AWK"
- else
- $TR -s '\n' ' ' |
- $AWK "$MASTER_SORT_AWK"
- fi
-}
-
-###
-# fetch_file tries to fetch one file from {MASTER,PATCH}_SITES
-###
-
-fetch_file()
-{
- [ $# -eq 5 ] || return 1
-
- SORTED_MASTER_SITES_TMP=`get_master_sites_sorted "$1" "$2"`
- reget=false
- [ -f "$file" ] && reget=true
- while true; do
- fetch_reget="${FETCH_REGET}"
- for site in $_MASTER_SITE_OVERRIDE \
- $SORTED_MASTER_SITES_TMP $_MASTER_SITE_BACKUP; do
- $ECHO_MSG ">> Attempting to fetch from $site${4:+ (${4#*=} bytes)}."
- case "$site" in
- *%FILE%*)
- # this expression uses ctrl-A as delimiters
- url=`echo "$site" | $SED -E -e 's/$; s%FILE%'"$file"'g'`;;
- *)
- url="$site$file";;
- esac
- if $fetch_cmd "$url" "$3" "$4"; then
- reget=false
- [ -f "$file" ] || continue
- [ -z "$5" ] && return 0
- for cksum2 in $5; do
- case "${cksum2#*=}" in
- IGNORE)
- return 0;;
- *)
- CKSUM=`do_hash "${cksum2%%=*}" < "$file"`
- if [ "${cksum2#*=}" = "$CKSUM" ]; then
- $ECHO_MSG ">> Checksum OK (${cksum2%%=*}) for $file."
- return 0
- fi;;
- esac
- done
- $ECHO_MSG ">> Checksum mismatch for $_file."
- if [ "$fetch_reget" -gt 0 ]; then
- $ECHO_MSG "===> Refetch for $fetch_reget more times."
- $RM -f "$file"
- fetch_reget=$(($fetch_reget-1))
- else
- $ECHO_MSG ">> To get this file from more mirrors," \
- "type \"make FETCH_REGET=99 [other args]\"."
- $ECHO_MSG "===> Giving up on fetching $_file."
- return 1
- fi
- fi
- done
- $reget || break
- $ECHO_MSG "===> Distfile rerolled? Trying to refetch from start."
- $RM -f "$file"
- reget=false
- done
- $ECHO_MSG ">> Couldn't fetch it - please try to retrieve this"
- $ECHO_MSG ">> file manually into $_DISTDIR and try again."
- return 1
-}
-
-###
-# do_fetch tries to fetch DISTFILES and PATCHFILES
-###
-
-do_fetch()
-{
- local _DISTDIR
- local DIR
- local file
- local select
-
- setup_fetch_cmd
-
- _DISTDIR="$DISTDIR${DIST_SUBDIR:+/$DIST_SUBDIR}"
- DIR="${DIST_SUBDIR:+$DIST_SUBDIR/}"
-
- for fileset in MASTER PATCH; do
- case "$fileset" in
- MASTER)
- files="$DISTFILES";;
- PATCH)
- files="$PATCHFILES";;
- *)
- return 1;;
- esac
- for _file in $files; do
-
- file=`echo "$_file" | $SED -E -e 's/:[^:]+$//'`
- select=`echo "$_file" | $SED -En -e 'y/,/ /; s/.*:([^:]+)$/\1/p'`
- [ -n "$select" ] || select="DEFAULT"
-
- if [ -z "$NO_CHECKSUM" ]; then
- CKSUM2=`extract_sum "$VALID_ALGORITHMS" "$DIR" "$file"`
- if [ -z "$CKSUM2" ]; then
- $ECHO_MSG ">> No checksum entry for $DIR$file."
- $ECHO_MSG ">> Make sure the Makefile and distinfo file ($MD5_FILE) are"
- $ECHO_MSG ">> up to date. If you are absolutely sure you want to override"
- $ECHO_MSG ">> this check, type \"make NO_CHECKSUM=yes [other args]\"."
- return 1
- fi
- chkfile=true
- for ignore in $IGNOREFILES; do
- if [ "$file" = "$ignore" ]; then
- chkfile=false
- fi
- done
- else
- CKSUM2=
- chkfile=false
- fi
-
- if [ -f "$_DISTDIR/$file" ]; then
- fileexists=true
- else
- fileexists=false
- if [ -L "$_DISTDIR/$file" ]; then
- $ECHO_MSG ">> $_DISTDIR/$file is a broken symlink."
- $ECHO_MSG ">> Perhaps a filesystem (most likely a CD) isn't mounted?"
- $ECHO_MSG ">> Please correct this problem and try again."
- return 1
- fi
- fi
-
- fetchfile=true
- if $fileexists; then
- if [ -n "$CKSUM2" ]; then
- for cksum2 in $CKSUM2; do
- case "${cksum2#*=}" in
- IGNORE)
- if $chkfile; then
- $ECHO_MSG ">> Checksum for $file is set to IGNORE in distinfo file"
- $ECHO_MSG " even though the file is not in the "'$'"{IGNOREFILES} list."
- return 1
- fi
- fetchfile=false
- break;;
- *)
- if ! $chkfile; then
- $ECHO_MSG ">> Checksum for $file is not set to IGNORE in distinfo file"
- $ECHO_MSG " even though the file is in the "'$'"{IGNOREFILES} list."
- return 1
- fi
- CKSUM=`do_hash "${cksum2%%=*}" < "$_DISTDIR/$file"`
- if [ "${cksum2#*=}" = "$CKSUM" ]; then
- $ECHO_MSG ">> Checksum OK (${cksum2%%=*}) for $file."
- fetchfile=false
- break
- fi;;
- esac
- done
- if $fetchfile; then
- $ECHO_MSG ">> Checksum mismatch for $file."
- fi
- else
- fetchfile=false
- fi
- else
- if [ -n "$CKSUM2" ]; then
- for cksum2 in $CKSUM2; do
- case "${cksum2#*=}" in
- IGNORE)
- if $chkfile; then
- $ECHO_MSG ">> Checksum for $file is set to IGNORE in distinfo file"
- $ECHO_MSG " even though the file is not in the "'$'"{IGNOREFILES} list."
- return 1
- fi
- break;;
- *)
- if ! $chkfile; then
- $ECHO_MSG ">> Checksum for $file is not set to IGNORE in distinfo file"
- $ECHO_MSG " even though the file is in the "'$'"{IGNOREFILES} list."
- return 1
- fi;;
- esac
- done
- fi
- $ECHO_MSG ">> $file doesn't seem to exist in $_DISTDIR."
- fi
-
- if $fetchfile; then
- if ! { [ -d "$_DISTDIR" ] || $MKDIR "$_DISTDIR"; }; then
- $ECHO_MSG ">> Cannot create $_DISTDIR."
- return 1
- fi
- if [ ! -w "$_DISTDIR" ]; then
- $ECHO_MSG ">> $_DISTDIR is not writable by you; cannot fetch."
- return 1
- fi
- if [ -z "$NO_CHECKSUM" -a -z "$DISABLE_SIZE" ]; then
- CKSIZE=`extract_sum 'SIZE' "$DIR" "$file"`
- else
- CKSIZE=
- fi
- cd "$_DISTDIR"
- if ! fetch_file "$fileset" "$select" "$file" "${CKSIZE#*=}" "$CKSUM2"; then
- return 1
- fi
- fi
- done
- done
-}
-
-###
-# do_list_sites lists {MASTER,PATCH}_SITES
-###
-
-do_list_sites()
-{
- [ $# -eq 2 ] || return 1
-
- local select
-
- case "$1" in
- MASTER)
- files="$DISTFILES";;
- PATCH)
- files="$PATCHFILES";;
- *)
- return 1;;
- esac
-
- if [ -n "$2" ]; then
- select="$2"
- else
- select=`echo "$files" | $TR -s ' \t' '\n' | $AWK '
- /.+:/ {
- sub(/.+:/, "")
- g=split($0, a, /,/)
- for (i in a)
- group[a[i]]=1
- next
- }
- { group["DEFAULT"]=1 }
- END {
- for (g in group)
- print g
- }'`
- fi
-
- SORTED_MASTER_SITES_TMP=`get_master_sites_sorted "$1" "$select"`
- echo $_MASTER_SITE_OVERRIDE \
- $SORTED_MASTER_SITES_TMP $_MASTER_SITE_BACKUP
-}
-
-### missing size ###
-
-###
-# print_missing_size prints a list of all files that are not in DISTDIR
-###
-
-print_missing_size()
-{
- local _DISTDIR
- local DIR
- local file
- local select
-
- CKSUMFILES="${CKSUMFILES:-`chksumfiles`}"
-
- DIR="${DIST_SUBDIR:+$DIST_SUBDIR/}"
-
- for _file in $CKSUMFILES; do
- file="$DIR$_file"
- [ -f "$DISTDIR/$file" ] && continue
- CKSIZE=`extract_sum 'SIZE' "$DIR" "$_file"`
- if [ -n "${CKSIZE#*=}" ]; then
- echo "${CKSIZE#*=} $file"
- else
- echo "0 $file"
- fi
- done
-
- for _file in $IGNOREFILES; do
- file="$DIR$_file"
- [ -f "$DISTDIR/$file" ] && continue
- echo "0 $file"
- done
-}
-
-### fetch all ##
-
-###
-# do_fetch_all tries to fetch all files from *every* site
-###
-
-do_fetch_all()
-{
- local DIR
- local file
- local select
-
- setup_fetch_cmd
-
- _FAILED_SITES=
- DIR="${DIST_SUBDIR:+$DIST_SUBDIR/}"
-
- for fileset in MASTER PATCH; do
- case "$fileset" in
- MASTER)
- files="$DISTFILES";;
- PATCH)
- files="$PATCHFILES";;
- *)
- return 1;;
- esac
-
- for _file in $files; do
- file=`echo "$_file" | $SED -E -e 's/:[^:]+$//'`
- select=`echo "$_file" | $SED -En -e 'y/,/ /; s/.*:([^:]+)$/\1/p'`
- [ -n "$select" ] || select="DEFAULT"
-
- CKSUM2=`extract_sum "$VALID_ALGORITHMS" "$DIR" "$file"`
- if [ -z "$CKSUM2" ]; then
- $ECHO_MSG ">> No checksum recorded for $DIR$file."
- return 1
- fi
- CKSIZE=
- if [ -z "$DISABLE_SIZE" ]; then
- CKSIZE=`extract_sum 'SIZE' "$DIR" "$file"`
- fi
-
- $ECHO_MSG ">> Verifying availability of file $file."
- MASTER_SITES_TMP=`get_master_sites "$fileset" "$select"`
- for site in $MASTER_SITES_TMP; do
- $ECHO_MSG ">> Attempting to fetch from $site${CKSIZE:+ (${CKSIZE#*=} bytes)}."
- case "$site" in
- *%FILE%*)
- # this expression uses ctrl-A as delimiters
- url=`echo "$site" | $SED -E -e 's/$; s%FILE%'"$file"'g'`;;
- *)
- url="$site$file";;
- esac
- if [ -z "$NO_CHECKSUM" ]; then
- for cksum2 in $CKSUM2; do
- _FETCH_RESULT=`{ if ! $fetch_cmd "$url" "-" "${CKSIZE#*=}"; then \
- echo "FAILED: $$?" >&3; fi | do_hash "${cksum2%%=*}"; } 3>&1`;
- case "$_FETCH_RESULT" in
- FAILED:*)
- $ECHO_MSG ">> Fetch from $site failed."
- _FAILED_SITES="${_FAILED_SITES:+$_FAILED_SITES }$url";;
- *)
- case "${cksum2#*=}" in
- IGNORE)
- $ECHO_MSG ">> Checksum IGNORED for $file.";;
- "$_FETCH_RESULT")
- $ECHO_MSG ">> Checksum OK (${cksum2%%=*}) for $file.";;
- *)
- $ECHO_MSG ">> Checksum mismatch (${cksum2%%=*}) for $file."
- _FAILED_SITES="${_FAILED_SITES:+$_FAILED_SITES }$url";;
- esac;;
- esac
- break
- done
- else
- if _FETCH_RESULT=`$SETENV $FETCH_ENV $FETCH -s "$url"`; then
- if [ -n "${CKSIZE}" ]; then
- if [ "${CKSIZE#*=}" = "$_FETCH_RESULT" ]; then
- $ECHO_MSG ">> Size OK (${CKSIZE#*=}) for $file."
- else
- $ECHO_MSG ">> Size mismatch ($_FETCH_RESULT) for $file."
- _FAILED_SITES="${_FAILED_SITES:+$_FAILED_SITES }$url"
- fi
- else
- $ECHO_MSG ">> Found $file."
- fi
- else
- echo ">> Fetch from $site failed."
- _FAILED_SITES="${_FAILED_SITES:+$_FAILED_SITES }$url"
- fi
- fi
- done
- done
- done
- if [ -z "$_FAILED_SITES" ]; then
- echo ">> All files are fetchable."
- else
- echo ">> The following files did not fetch correctly:"
- echo "$_FAILED_SITES" | ${TR} ' ' '\n' | ${SED} -e 's/^/ - /'
- fi
-}
-
-###
-# do_fetch_list generates a list of files to fetch
-###
-
-do_fetch_list()
-{
- local _DISTDIR
- local DIR
- local file
- local select
-
- _DISTDIR="$DISTDIR${DIST_SUBDIR:+/$DIST_SUBDIR}"
- DIR="${DIST_SUBDIR:+$DIST_SUBDIR/}"
-
- for fileset in MASTER PATCH; do
- case "$fileset" in
- MASTER)
- files="$DISTFILES";;
- PATCH)
- files="$PATCHFILES";;
- *)
- return 1;;
- esac
-
- for _file in $files; do
-
- file=`echo "$_file" | $SED -E -e 's/:[^:]+$//'`
- select=`echo "$_file" | $SED -En -e 'y/,/ /; s/.*:([^:]+)$/\1/p'`
- [ -n "$select" ] || select="DEFAULT"
-
- if [ ! -f "$_DISTDIR/$file" ]; then
- SORTED_MASTER_SITES_TMP=`get_master_sites_sorted "$fileset" "$select"`
- for site in $_MASTER_SITE_OVERRIDE \
- $SORTED_MASTER_SITES_TMP $_MASTER_SITE_BACKUP; do
- case "$site" in
- *%FILE%*)
- # this expression uses ctrl-A as delimiters
- url=`echo "$site" | $SED -E -e 's/$; s%FILE%'"$file"'g'`;;
- *)
- url="$site$file";;
- esac
- if [ -n "$FETCH_ENV" ]; then
- echo -n "$SETENV $FETCH_ENV "
- fi
- echo -n "$FETCH_CMD $FETCH_BEFORE_ARGS" \
- "-o '$file' '$url' $FETCH_AFTER_ARGS || "
- done
- echo "echo '$file not fetched'"
- fi
- done
-
- done
-}
-
-### distinfo ###
-
-###
-# make_tmpsum generates a temporary distinfo file
-###
-
-make_tmpsum()
-{
- local NO_CHECKSUM DISABLE_SIZE
-
- NO_CHECKSUM=true
- DISABLE_SIZE=true
-
- do_fetch || return 1
-
- CKSUMFILES="${CKSUMFILES:-`chksumfiles`}"
-
- if ! TMPMD5_FILE=`$MKTEMP -q "$MD5_FILE.XXXXXX"`; then
- echo ">> makesum: Can't create temporary checksum file"
- return 1
- fi
-
- cd "$DISTDIR"
- DIR="${DIST_SUBDIR:+$DIST_SUBDIR/}"
-
- MY_ALGS="$DISTINFO_ALGORITHMS";
- [ -z "$NO_SIZE" ] && MY_ALGS="$MY_ALGS SIZE"
-
- # faster, but not the same sort order as the `classic' distinfo
- #for alg in $MY_ALGS; do
- # do_hash "$alg" `echo "$CKSUMFILES" | $SED -e "s^$DIR"` >> "$TMPMD5_FILE"
- #done
-
- for _file in $CKSUMFILES; do
- file="$DIR$_file"
- if [ -r "$file" ]; then
- for alg in $MY_ALGS; do
- do_hash "$alg" "$file" >> "$TMPMD5_FILE"
- done
- else
- $ECHO_MSG ">> $file is not in $DISTDIR"
- $RM "$TMPMD5_FILE"
- return 1
- fi
- done
- for _file in $IGNOREFILES; do
- file="$DIR$_file"
- echo "MD5 ($file) = IGNORE" >> "$TMPMD5_FILE"
- done
-}
-
-###
-# replace_distinfo adds or replaces a distinfo entry in MK_FILE
-###
-
-replace_distinfo()
-{
- [ $# -eq 1 -a -f "$1" ] || return 1
-
- if ! TMPMK_FILE=`$MKTEMP -q "$MK_FILE.XXXXXX"`; then
- $ECHO_MSG ">> makesum: Can't create temporary Makefile"
- return 1
- fi
- if ! $AWK -v MD5_FILE="$1" '
- BEGIN { seen=0; ignore=0; first=1 }
- /'"$MK_FILE_ENDMARKER"'/ { seen=NR }
- NR == 1, seen != 0 { print; next }
- !/^#/ { exit 1 }
- /^#:/ { ignore=0 }
- /^#:distinfo'"${DISTINFO_LABEL:+\.$DISTINFO_LABEL}"'$/ {
- if (first)
- while ((getline md5_line < MD5_FILE) > 0) {
- if (first) {
- print "#:distinfo'"${DISTINFO_LABEL:+\.$DISTINFO_LABEL}"'"
- first=0
- }
- print "#" md5_line
- }
- ignore=1
- }
- ignore == 0 { print }
- END {
- if (seen == 0)
- exit 1
- if (first)
- while ((getline md5_line < MD5_FILE) > 0) {
- if (first) {
- print "#:distinfo'"${DISTINFO_LABEL:+\.$DISTINFO_LABEL}"'"
- first=0
- }
- print "#" md5_line
- }
- }
- ' "$MK_FILE" > "$TMPMK_FILE"; then
- $ECHO_MSG ">> Parse error: $MK_FILE, end of file not found"
- $RM "$TMPMK_FILE"
- return 1
- fi
- $CAT "$TMPMK_FILE" > "$MK_FILE"
- $RM "$TMPMK_FILE"
-}
-
-###
-# replace_distinfo2 adds or replaces a distinfo entry in MK_FILE
-###
-
-replace_distinfo2()
-{
- [ $# -eq 1 -a -f "$1" ] || return 1
-
- if [ ! -x "$PERL5" ]; then
- $ECHO_MSG ">> makesum: perl 5 required, please install lang/perl"
- return 1
- fi
-
- #XXX TODO: honor status of $ECHO_MSG in `die'
- if ! $PERL5 -w -e '
- use strict;
- srand();
- my $marker="##-MARKER_".rand()."-##";
- my $valid_algs=join "|", "SIZE", split " ", $ARGV[3];
- my $distsubdir=$ARGV[1] ? "$ARGV[1]/" : "";
- my $distlabel=$ARGV[2] ? "$ARGV[2]_" : "";
- my %distinfo;
-
- open DISTINFO, "<$ARGV[0]"
- or die ">> migratesum2: error reading $ARGV[0]\n";
- while(<DISTINFO>) {
- push @{$distinfo{$1}{$2}}, $3
- if /^(\w+) *\($distsubdir(.*)\) *= *([\da-f]+)$/o
- }
- close DISTINFO;
- my $makefile;
- open MAKEFILE, "<$ARGV[4]"
- or die ">> migratesum2: error reading $ARGV[4]\n";
- {
- local $/;
- $makefile = <MAKEFILE>;
- }
- close MAKEFILE;
- my $newinfo;
- foreach my $key (split " ", $ARGV[3]) {
- next
- if !$distinfo{$key};
- my @chksum = ();
- foreach my $file (sort keys %{$distinfo{$key}}) {
- push @chksum, map "$file:$_", @{$distinfo{$key}{$file}};
- }
- $newinfo .= "DISTINFO_$distlabel$key+=\t";
- $newinfo .= join " \\\n\t\t", "", @chksum;
- $newinfo .= "\n";
- }
- $makefile =~ s/^DISTINFO_$distlabel(?:$valid_algs)[+:!?]?=.*(?:\\\n.*)*[^\\\n]\n/$marker\n/mg ||
- $makefile =~ s/^(COMMENT[+:!?]?=.*(?:\\\n.*)*[^\\\n])\n+/$1\n\n$marker\n\n/m ||
- die ">> migratesum2: error parsing $ARGV[4]\n";
-
- $makefile =~ s/^$marker\n/$newinfo/m;
- $makefile =~ s/^$marker\n//mg;
-
- open MAKEFILE, ">$ARGV[5]"
- or die ">> migratesum2: error writing $ARGV[4]\n";
- print MAKEFILE $makefile;
- close MAKEFILE;
- ' "$1" "$DIST_SUBDIR" "$DISTINFO_LABEL" "$VALID_ALGORITHMS SIZE" "$MK_FILE" "$MK_FILE"; then
- return 1
- fi
-}
-
-
-###
-# do_makesum (re-)calculates distinfo
-###
-
-do_makesum()
-{
- local algorithms
- algorithms=`echo -n "$VALID_ALGORITHMS SIZE" | $TR -s ' \t\n' '|'`
-
- make_tmpsum || return 1
-
- if [ -f "$MD5_FILE" ]; then
- $CAT "$TMPMD5_FILE" > "$MD5_FILE"
- elif $GREP -qs "^#:distinfo${DISTINFO_LABEL:+\.$DISTINFO_LABEL}$" "$MK_FILE"; then
- replace_distinfo "$TMPMD5_FILE"
- elif $GREP -Eqs "^DISTINFO${DISTINFO_LABEL:+_$DISTINFO_LABEL}_($algorithms)[+:!?]?=" "$MK_FILE"; then
- replace_distinfo2 "$TMPMD5_FILE"
- elif [ -s "$TMPMD5_FILE" ]; then
- $CAT "$TMPMD5_FILE" > "$MD5_FILE"
- fi
-
- $RM "$TMPMD5_FILE"
-}
-
-###
-# do_migratemakesum integrates distinfo into the port's Makefile
-###
-
-do_migratesum()
-{
- if [ ! -f "$MD5_FILE" ]; then
- $ECHO_MSG ">> migratesum: no $MD5_FILE"
- return 1
- fi
-
- if replace_distinfo "$MD5_FILE"; then
- $RM "$MD5_FILE"
- echo ">> Done."
- else
- return 1
- fi
-}
-
-###
-# do_migratemakesum2 integrates distinfo into the port's Makefile
-###
-
-do_migratesum2()
-{
- if [ ! -f "$MD5_FILE" ]; then
- $ECHO_MSG ">> migratesum2: no $MD5_FILE"
- return 1
- fi
-
- if replace_distinfo2 "$MD5_FILE"; then
- $RM "$MD5_FILE"
- echo ">> Done."
- else
- return 1
- fi
-}
-
-###
-# main
-###
-
-opt_list_master=false
-opt_list_patch=false
-opt_fetch_list=false
-opt_makesum=false
-opt_migratesum=false
-opt_migratesum2=false
-opt_fetch=false
-opt_fetch_all=false
-opt_missing_size=false
-
-while getopts "LmMNfFSt:T:" opt; do
- case "$opt" in
- t) list_master="${OPTARG}";
- opt_list_master=true;;
- T) list_patch="${OPTARG}";
- opt_list_patch=true;;
- L) opt_fetch_list=true;;
- m) opt_makesum=true;;
- M) opt_migratesum=true;;
- N) opt_migratesum2=true;;
- f) opt_fetch=true;;
- F) opt_fetch_all=true;;
- S) opt_missing_size=true;;
- ?) echo "Usage: $0 -LmMfFS"; exit 1;;
- esac
-done
-
-shift $(($OPTIND-1))
-
-$opt_list_master &&
- { do_list_sites "MASTER" "$list_master" || exit 1; }
-
-$opt_list_patch &&
- { do_list_sites "PATCH" "$list_patch" || exit 1; }
-
-$opt_fetch_list &&
- { do_fetch_list || exit 1; }
-
-$opt_fetch &&
- { do_fetch || exit 1; }
-
-$opt_makesum &&
- { do_makesum || exit 1; }
-
-$opt_migratesum &&
- { do_migratesum || exit 1; }
-
-$opt_migratesum2 &&
- { do_migratesum2 || exit 1; }
-
-$opt_fetch_all &&
- { do_fetch_all || exit 1; }
-
-$opt_missing_size &&
- { print_missing_size || exit 1; }
-
-exit 0
diff --git a/ports-mgmt/portmk/scripts/options.pl b/ports-mgmt/portmk/scripts/options.pl
deleted file mode 100644
index a96c72d54612..000000000000
--- a/ports-mgmt/portmk/scripts/options.pl
+++ /dev/null
@@ -1,373 +0,0 @@
-#!/usr/bin/perl -w
-#
-# Copyright (c) 2004 Oliver Eikemeier. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-# 1. Redistributions of source code must retain the above copyright notice
-# this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright
-# notice, this list of conditions and the following disclaimer in the
-# documentation and/or other materials provided with the distribution.
-#
-# 3. Neither the name of the author nor the names of its contributors may be
-# used to endorse or promote products derived from this software without
-# specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
-# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
-# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# $FreeBSD$
-#
-# MAINTAINER= eik@FreeBSD.org
-#
-
-require 5.005;
-use strict;
-use Getopt::Std;
-
-my $pkgname;
-
-my %description;
-my %values;
-my @order;
-my @section;
-my %haswithout;
-my %hasoverride;
-my %default;
-my %value;
-my $isoverride;
-my $isedit;
-
-sub parsemaster {
- my $currdesc;
- my ($master) = @_;
-
- -r $master
- or return 1;
-
- open MASTER, "<$master"
- or die "Can't read $master: $!\n";
-
- push @section, "Configurable options for $pkgname";
- push @order, $#section;
- $description{0} = [];
-
- while(<MASTER>) {
- chomp;
- last if /^##/;
- next if /^#?\s*$/;
- if (/^#!\s*(.*)$/) {
- if ($1 =~ /MAIN/i) {
- $currdesc = \@{$description{0}};
- }
- else {
- push @section, $1;
- $currdesc = \@{$description{$#section}};
- push @order, $#section;
- }
- }
- elsif(/^#WITH(OUT)?_([A-Z][A-Z0-9_]*)(?:=\s*(.*))?$/) {
- my ($without, $name, $val) = ($1, $2, $3);
- if (defined $values{$name}) {
- print STDERR ">> $pkgname: Duplicate parameter $name at $master line $.: $_.\n";
- next;
- }
- if (defined $val) {
- my @v;
- foreach my $r (split /,\s*/, $val) {
- $r =~ s/\s+$//;
- if (length $r > 0) {
- push @v, $r;
- $haswithout{$name} = 1
- if $r =~ /^(?:no|none|off|false)$/i;
- }
- }
- if ($#v == -1 || $#v == 0 && $v[0] =~ /^auto$/i) {
- push @v, qw(yes no);
- $haswithout{$name} = 1;
- }
- $values{$name} = \@v;
- $default{$name} = defined $without && $haswithout{$name} ? 'no' : $values{$name}->[0];
- }
- else {
- @{$values{$name}} = qw(yes no);
- $haswithout{$name} = 1;
- $default{$name} = defined $without ? 'no' : 'yes';
- }
- $currdesc = \@{$description{$name}};
- push @order, $name;
- }
- elsif (/^# (.*)$/) {
- push @{$currdesc}, $1
- if defined $currdesc;
- }
- elsif (/^##$/) {
- last;
- }
- else {
- print STDERR ">> $pkgname: Parse error at $master line $.: $_.\n"
- }
- }
- close MASTER;
-}
-
-sub parseoverride {
- my $currdesc;
- my ($override) = @_;
-
- -r $override
- or return 1;
-
- open OVERRIDE, "<$override"
- or die "Can't read $override: $!\n";
-
- while(<OVERRIDE>) {
- chomp;
- last if /^##/;
- next if /^#?\s*$/;
- next if /^#\s*\$FreeBSD/;
- if (/^#!/) {
- undef $currdesc;
- }
- elsif(/^#WITH(OUT)?_([A-Z][A-Z0-9_]*)(?:=\s*(.*))?$/) {
- my ($without, $name, $val) = ($1, $2, $3);
- if (!defined $values{$name}) {
- print STDERR ">> $pkgname: Override parameter $name not in master file.\n";
- next;
- }
- if (defined $val) {
- my @v;
- foreach my $r (split /,\s*/, $val) {
- $r =~ s/\s+$//;
- if (length $r > 0) {
- push @v, $r;
- $haswithout{$name} = 1
- if $r =~ /^(?:no|none|off|false)$/i;
- }
- }
- if ($#v == -1 || $#v == 0 && $v[0] =~ /^auto$/i) {
- push @v, qw(yes no);
- $haswithout{$name} = 1;
- }
- $values{$name} = \@v;
- $default{$name} = defined $without && $haswithout{$name} ? 'no' : $values{$name}->[0];
- }
- else {
- @{$values{$name}} = qw(yes no);
- $haswithout{$name} = 1;
- $default{$name} = defined $without ? 'no' : 'yes';
- }
- delete $description{$name};
- $currdesc = \@{$description{$name}};
- $hasoverride{$name} = 1;
- }
- elsif (/^# (.*)$/) {
- push @{$currdesc}, $1
- if defined $currdesc;
- }
- elsif (/^##$/) {
- last;
- }
- else {
- print STDERR ">> $pkgname: Parse error at $override line $.: $_.\n"
- }
- }
- close OVERRIDE;
-
- $isoverride = 1;
-}
-
-sub parseoptions {
- my ($options) = @_;
- -r $options
- or return 1;
- open OPTIONS, "<$options"
- or die "Can't open $options: $!\n";
- while (<OPTIONS>) {
- chomp;
- next if /^(:?#|\s*$)/;
- next if /^_OPTIONS/;
- next if /^\./;
- if (/^WITH(OUT)?_([A-Z][A-Z0-9_]*)\??=(.*)$/) {
- my ($without, $name, $val) = ($1, $2, $3);
- next if !defined $values{$name};
- next if defined $value{$name};
- if (defined $without) {
- $value{$name} = 'no';
- }
- else {
- $value{$name} = $val;
- }
- }
- else {
- print STDERR ">> $pkgname: Parse error at $options line $.: $_\n";
- }
- }
-}
-
-sub parseeditoptions {
- my ($options) = @_;
- -r $options
- or return 1;
- open OPTIONS, "<$options"
- or die "Can't open $options: $!\n";
- while (<OPTIONS>) {
- chomp;
- s/\s*#.*$//;
- next if /^$/;
- if (/^([A-Z][A-Z0-9_]*)\s*=\s*(.*)$/) {
- my ($name, $val) = ($1, $2);
- next if !defined $values{$name};
- next if $#{$values{$name}} == 0 && $values{$name}->[0] =~ /^ignore$/i;
- next if $isoverride && $#{$values{$name}} == 0;
- my $candidate;
- foreach my $c (@{$values{$name}}) {
- if ($c eq '*' || $c eq $val) {
- $candidate = $val;
- last;
- }
- elsif (lc $c eq lc $val) {
- $candidate = $c;
- }
- elsif ($c eq 'yes' && $val =~ /^(?:y|yes|on|t|true)$/i) {
- $candidate = $c;
- }
- elsif ($c eq 'no' && $val =~ /^(?:n|no|off|f|false)$/i) {
- $candidate = $c;
- }
- }
- $value{$name} = $candidate
- if defined $candidate;
- }
- else {
- print STDERR ">> $pkgname: Parse error at $options line $.: $_\n";
- }
- }
- $isedit = 1;
-}
-
-sub print_editoptions {
- foreach my $name (@order) {
- if ($name =~ /^\d/) {
- my $headline;
- foreach (1..length $section[$name]) {
- $headline .= "#";
- }
- print "##$headline##\n";
- print "# $section[$name] #\n";
- print "##$headline##\n";
- print @{$description{$name}} ? "#\n" : "\n";
- }
- else {
- my $val = $default{$name};
- next if $#{$values{$name}} == 0 && $values{$name}->[0] =~ /^ignore$/i;
- if (defined $value{$name} && !($isoverride && $#{$values{$name}} == 0)) {
- $val = $value{$name};
- }
- print "$name=", $val,
- " # valid values: ", join(", ", @{$values{$name}}), "\n";
- }
- if (@{$description{$name}}) {
- foreach (@{$description{$name}}) {
- if ($_ eq '.') {
- print "#\n";
- }
- elsif ($_ =~ /^#/) {
- print "#$_\n";
- }
- else {
- print "# $_\n";
- }
- }
- print "\n";
- }
- }
-}
-
-sub print_dialogoptions {
- foreach my $name (@order) {
- next if $name =~ /^\d/;
- next if !$isedit && $isoverride && !$hasoverride{$name};
- next if !$isedit && $#{$values{$name}} == 0 && $values{$name}->[0] =~ /^ignore$/i;
- my $val = defined $value{$name} ? $value{$name} : $default{$name};
- next if $val ne 'yes' && $val ne 'no';
- $val = $val eq 'yes' ? 'On' : 'Off';
- my $desc = join ' ', @{$description{$name}};
- $desc = "$name support"
- if !$desc;
- $desc =~ s/\. .*//;
- $desc = substr($desc, 0, 38) . '...'
- if length $desc > 41;
- $desc =~ s/["\$]/\\&/g;
- print ' ', $name, ' "', $desc, '" ', $val;
- }
- print "\n";
-}
-
-sub print_options {
- print "_OPTIONSNG_READ?=$pkgname\n";
- foreach my $name (@order) {
- next if $name =~ /^\d/;
- next if !$isedit && $isoverride && !$hasoverride{$name};
- next if !$isedit && $#{$values{$name}} == 0 && $values{$name}->[0] =~ /^ignore$/i;
- my $val = defined $value{$name} ? $value{$name} : $default{$name};
- if ($haswithout{$name}) {
- if ($val =~ /^(no|none|off|false)$/i) {
- print ".undef WITH_$name\n"
- if (!$isedit && $isoverride && $#{$values{$name}} == 0);
- print ".ifndef WITH_$name\n";
- print "WITHOUT_$name?=yes\n";
- print ".endif\n";
- }
- else {
- print ".undef WITHOUT_$name\n"
- if (!$isedit && $isoverride && $#{$values{$name}} == 0);
- print ".ifndef WITHOUT_$name\n";
- print "WITH_$name?=$val\n";
- print ".endif\n";
- }
- }
- else {
- print "WITH_$name?=$val\n";
- }
- }
-}
-
-my %opts;
-
-getopts('p:M:O:g:t:edo', \%opts);
-
-$pkgname = defined $opts{p} ? $opts{p} : "anonyous";
-
-parsemaster $opts{M}
- if defined $opts{M};
-
-parseoverride $opts{O}
- if defined $opts{O};
-
-parseoptions $opts{g}
- if defined $opts{g};
-
-parseeditoptions $opts{t}
- if defined $opts{t};
-
-print_editoptions
- if $opts{e};
-
-print_dialogoptions
- if $opts{d};
-
-print_options
- if $opts{o};
diff --git a/ports-mgmt/portmk/scripts/options.sh b/ports-mgmt/portmk/scripts/options.sh
deleted file mode 100644
index ce3115e5d72a..000000000000
--- a/ports-mgmt/portmk/scripts/options.sh
+++ /dev/null
@@ -1,299 +0,0 @@
-#!/bin/sh -e
-#
-# Copyright (c) 2004 Oliver Eikemeier. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-# 1. Redistributions of source code must retain the above copyright notice
-# this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright
-# notice, this list of conditions and the following disclaimer in the
-# documentation and/or other materials provided with the distribution.
-#
-# 3. Neither the name of the author nor the names of its contributors may be
-# used to endorse or promote products derived from this software without
-# specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
-# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
-# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# $FreeBSD$
-#
-# MAINTAINER= eik@FreeBSD.org
-#
-# These variables are referenced and must be exported from the Makefile:
-#
-# CURDIR
-# OBJDIR
-# MASTERDIR
-# OPTIONS_MASTER
-# OPTIONS_OVERRIDE
-# OPTIONS_FILE
-# OPTIONS_CMD
-# PKGNAME
-#
-
-# utilities
-
-LOCALBASE="${LOCALBASE:-/usr/local}"
-
-AWK=/usr/bin/awk
-CAT=/bin/cat
-CHMOD=/bin/chmod
-CP=/bin/cp
-CUT=/usr/bin/cut
-DIALOG=/usr/bin/dialog
-EXPR=/bin/expr
-FETCH=/usr/bin/fetch
-GREP=/usr/bin/grep
-LS=/bin/ls
-MKDIR='/bin/mkdir -p'
-MKTEMP=/usr/bin/mktemp
-MV=/bin/mv
-REALPATH=/bin/realpath
-RM=/bin/rm
-SED=/usr/bin/sed
-SETENV=/usr/bin/env
-SORT=/usr/bin/sort
-TR=/usr/bin/tr
-WC=/usr/bin/wc
-
-# global constants
-
-### utility functions ###
-
-###
-# do_create generates default options for a master (or override) options files
-###
-
-do_create()
-{
- local rc
-
- if [ -n "$OPTIONS_OVERRIDE" ]; then
- OVERRIDEFILE="$OPTIONS_DEFAULT"
- elif [ "$CURDIR" != `$REALPATH "$MASTERDIR"` ]; then
- if [ -f "$CURDIR/options" ]; then
- OVERRIDEFILE="$CURDIR/options"
- elif [ -n "$PKGNAMESUFFIX" -a -f "$MASTERDIR/options.${PKGNAMESUFFIX#-}" ]; then
- OVERRIDEFILE="$MASTERDIR/options.${PKGNAMESUFFIX#-}"
- else
- OVERRIDEFILE=
- fi
- else
- OVERRIDEFILE=
- fi
-
- if [ -n "$OPTIONS_MASTER" ]; then
- MASTERFILE="$OPTIONS_MASTER"
- elif [ -f "$MASTERDIR/options" ]; then
- MASTERFILE="$MASTERDIR/options"
- else
- echo ">> makeconfig: Can't find $MASTERDIR/options" >&2
- return 1
- fi
-
- if [ -n "$OVERRIDEFILE" ]; then
- SRCFILE="$OVERRIDEFILE"
- else
- SRCFILE="$MASTERFILE"
- fi
-
- if ! TMP_OPTIONS=`$MKTEMP -q "$SRCFILE.XXXXXX"`; then
- echo ">> makeconfig: Can't create temporary options file"
- return 1
- fi
-
- $SED -e '/^##/,$d' "$SRCFILE" > "$TMP_OPTIONS"
-
- echo "## AUTOMATICALLY GENERATED FILE - DO NOT CHANGE ANYTHING BELOW THIS LINE ##" >> "$TMP_OPTIONS"
- echo "# use \`make config' to edit the local configuration" >> "$TMP_OPTIONS"
- echo "# use \`make makeconfig' to edit the defaults (MAINTAINER only)" >> "$TMP_OPTIONS"
- echo >> "$TMP_OPTIONS"
-
- if $OPTIONS_CMD -p "default" -M "$MASTERFILE" -O "$OVERRIDEFILE" -o >> "$TMP_OPTIONS"; then
- $MV -f "$TMP_OPTIONS" "$SRCFILE"
- $CHMOD a+r "$SRCFILE"
- else
- $RM -f "$TMP_OPTIONS"
- fi
-
- return $rc
-}
-
-###
-# do_delete removes a saved configuration
-###
-
-do_delete()
-{
- local rc
-
- $RM -f "$OPTIONS_FILE"
-
- return $rc
-}
-
-###
-# do_edit edits a custom configuration
-###
-
-do_edit()
-{
- local rc
-
- OPTIONS_DIR="${OPTIONS_FILE%/*}"
- if [ ! -d "$OPTIONS_DIR" ] && ! $MKDIR "$OPTIONS_DIR"; then
- echo ">> config: Can't create $OPTIONS_DIR." 2>&1
- return 1
- fi
-
- if [ -n "$OPTIONS_OVERRIDE" ]; then
- OVERRIDE="$OPTIONS_DEFAULT"
- elif [ "$CURDIR" != `$REALPATH "$MASTERDIR"` ]; then
- if [ -f "$CURDIR/options" ]; then
- OVERRIDE="$CURDIR/options"
- elif [ -n "$PKGNAMESUFFIX" -a -f "$MASTERDIR/options.${PKGNAMESUFFIX#-}" ]; then
- OVERRIDE="$MASTERDIR/options.${PKGNAMESUFFIX#-}"
- else
- OVERRIDE=
- fi
- else
- OVERRIDE=
- fi
-
- if [ -n "$OPTIONS_MASTER" ]; then
- MASTER="$OPTIONS_MASTER"
- elif [ -f "$MASTERDIR/options" ]; then
- MASTER="$MASTERDIR/options"
- else
- echo ">> makeconfig: Can't find $MASTERDIR/options" >&2
- return 1
- fi
-
- TMP_OPTIONS=`$MKTEMP -t options`
-
- $OPTIONS_CMD -p "$PKGNAME" -M "$MASTER" -O "$OVERRIDE" -g "$OPTIONS_FILE" -e > "$TMP_OPTIONS"
-
- ${EDITOR:-/usr/bin/vi} "$TMP_OPTIONS"
-
- TMP_OPTIONS_FILE=`$MKTEMP -q "$OPTIONS_FILE.XXXXXX"`
- echo "## AUTOMATICALLY GENERATED FILE - DO NOT EDIT ##" > "$TMP_OPTIONS_FILE"
- $OPTIONS_CMD -p "$PKGNAME" -M "$MASTER" -O "$OVERRIDE" -g "$OPTIONS_FILE" -t "$TMP_OPTIONS" -o >> "$TMP_OPTIONS_FILE"
- $RM -f "$TMP_OPTIONS"
-
- $MV -f "$TMP_OPTIONS_FILE" "$OPTIONS_FILE"
- $CHMOD a+r "$OPTIONS_FILE"
-
- return $rc
-}
-
-###
-# do_graphical displays a menu to generate a custom configuration
-###
-
-do_graphical()
-{
- local rc
-
- if [ -n "$OPTIONS_OVERRIDE" ]; then
- OVERRIDE="$OPTIONS_DEFAULT"
- elif [ "$CURDIR" != `$REALPATH "$MASTERDIR"` ]; then
- if [ -f "$CURDIR/options" ]; then
- OVERRIDE="$CURDIR/options"
- elif [ -n "$PKGNAMESUFFIX" -a -f "$MASTERDIR/options.${PKGNAMESUFFIX#-}" ]; then
- OVERRIDE="$MASTERDIR/options.${PKGNAMESUFFIX#-}"
- else
- OVERRIDE=
- fi
- else
- OVERRIDE=
- fi
-
- if [ -n "$OPTIONS_MASTER" ]; then
- MASTER="$OPTIONS_MASTER"
- elif [ -f "$MASTERDIR/options" ]; then
- MASTER="$MASTERDIR/options"
- else
- echo ">> makeconfig: Can't find $MASTERDIR/options" >&2
- return 1
- fi
-
- TMP_OPTIONS=`$MKTEMP -t options`
-
- DIALOGRC=`$OPTIONS_CMD -p "$PKGNAME" -M "$MASTER" -O "$OVERRIDE" -g "$OPTIONS_FILE" -d`
-
- /bin/sh -c "$DIALOG --checklist \"Options for $PKGNAME\" 21 70 15 $DIALOGRC 2>\"$TMP_OPTIONS\""
-
- #TMP_OPTIONS_FILE=`$MKTEMP -q "$OPTIONS_FILE.XXXXXX"`
- #echo "## AUTOMATICALLY GENERATED FILE - DO NOT EDIT ##" > "$TMP_OPTIONS_FILE"
- #$OPTIONS_CMD -p "$PKGNAME" -M "$MASTER" -O "$OVERRIDE" -g "$OPTIONS_FILE" -t "$TMP_OPTIONS" -o >> "$TMP_OPTIONS_FILE"
- $CAT "$TMP_OPTIONS"
-
- $RM -f "$TMP_OPTIONS"
- #$MV -f "$TMP_OPTIONS_FILE" "$OPTIONS_FILE"
-
- return $rc
-}
-
-###
-# do_list lists the current configuration
-###
-
-do_list()
-{
- local rc
-
- return $rc
-}
-
-###
-# main
-###
-
-opt_create=false
-opt_delete=false
-opt_edit=false
-opt_graphical=false
-opt_list=false
-
-while getopts "cdegl" opt; do
- case "$opt" in
- c) opt_create=true;;
- d) opt_delete=true;;
- e) opt_edit=true;;
- g) opt_graphical=true;;
- l) opt_list=true;;
- ?) echo "Usage: $0 -cdegl"; exit 1;;
- esac
-done
-
-shift $(($OPTIND-1))
-
-$opt_create &&
- { do_create || exit 1; }
-
-$opt_delete &&
- { do_delete || exit 1; }
-
-$opt_edit &&
- { do_edit || exit 1; }
-
-$opt_graphical &&
- { do_graphical || exit 1; }
-
-$opt_list &&
- { do_list || exit 1; }
-
-exit 0
diff --git a/ports-mgmt/portmk/scripts/ranksites-fping.pl b/ports-mgmt/portmk/scripts/ranksites-fping.pl
deleted file mode 100644
index db399548b22c..000000000000
--- a/ports-mgmt/portmk/scripts/ranksites-fping.pl
+++ /dev/null
@@ -1,139 +0,0 @@
-#!/usr/bin/perl -w
-#
-# Copyright (c) 2004 Oliver Eikemeier. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-# 1. Redistributions of source code must retain the above copyright notice
-# this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright
-# notice, this list of conditions and the following disclaimer in the
-# documentation and/or other materials provided with the distribution.
-#
-# 3. Neither the name of the author nor the names of its contributors may be
-# used to endorse or promote products derived from this software without
-# specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
-# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
-# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# $FreeBSD$
-#
-# MAINTAINER= eik@FreeBSD.org
-#
-
-require 5.005;
-use strict;
-
-my $dbdir = $ENV{RANKDIR} ? $ENV{RANKDIR} : '/var/db/distrank';
-
-my $fping = $ENV{FPING} ? $ENV{FPING} : '/usr/local/sbin/fping';
-
--x $fping
- or die "fping required\n";
-
--d $dbdir || mkdir $dbdir, 0777
- or die "Can't create $dbdir\n";
-
-my $rankfile = "$dbdir/ranks-fping";
-
-my $now = time;
-
-my %distance;
-
-if (-r $rankfile) {
- open RANKS, "<$rankfile";
- while (<RANKS>) {
- chomp;
- my ($host, $d, $e) = split;
- $distance{$host} = [$d, $e]
- if defined $e && $e >= $now;
- }
- close RANKS;
-}
-
-my %mastersites;
-my %newdistance;
-
-my $distgood = 0;
-my $distdefault = 5000;
-my $distbad = 10000;
-
-my $expgood = $now + 14 * 86400;
-my $expdefault = $now + 7 * 86400;
-
-my $hostcount = 0;
-
-while (<>) {
- chomp;
- next
- if exists $mastersites{$_};
- if (m'^(?:ftp|https?)://(?:[^/]*@)?([^/:]+\.[^/:]+)(?::\d+)?(?:/|$)'i) {
- my $host = lc $1;
- $mastersites{$_} = $host;
- if (!defined $distance{$host}) {
- $distance{$host} = [$distdefault, $expdefault];
- $newdistance{$host} = undef
- }
- $hostcount++;
- } elsif (m'^file:'i) {
- $mastersites{$_} = 'FILE';
- } else {
- $mastersites{$_} = 'UNKNOWN';
- }
-}
-
-if (%newdistance && $hostcount > 1) {
- if (!open FPING, '-|') {
- if (!open FPINGIN, '|-') {
- open STDERR, '>&STDOUT';
- exec $fping, '-q', '-C', '3';
- die
- }
- foreach (keys %newdistance) {
- print FPINGIN $_, "\n";
- }
- close FPINGIN;
- exit;
- }
-
- while(<FPING>) {
- /([^\s:]+)\s*:\s*([\s\d.-]*)/ or next;
- my $sum = 0.0;
- my $num = 0;
- foreach my $val (split ' ', $2) {
- $val ne '-' || next;
- $sum += $val;
- $num++;
- }
- if ($num > 0) {
- $distance{$1} = [$sum/$num, $expgood];
- }
- }
- close FPING;
-
- open RANKS, ">$rankfile";
- while (my ($host, $val) = each %distance) {
- printf RANKS "%s\t%.2f\t%d\n", $host, $val->[0], $val->[1]
- if defined $val;
- }
- close RANKS;
-}
-
-$distance{FILE} = [$distgood, 0];
-$distance{UNKNOWN} = [$distbad, 0];
-
-foreach (sort {$distance{$mastersites{$a}}->[0] <=> $distance{$mastersites{$b}}->[0]} keys %mastersites) {
- print $_, "\n";
-}
diff --git a/ports-mgmt/portmk/scripts/ranksites-geoip.pl b/ports-mgmt/portmk/scripts/ranksites-geoip.pl
deleted file mode 100644
index 0777c744982f..000000000000
--- a/ports-mgmt/portmk/scripts/ranksites-geoip.pl
+++ /dev/null
@@ -1,393 +0,0 @@
-#!/usr/bin/perl -w
-#
-# Copyright (c) 2004 Oliver Eikemeier. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-# 1. Redistributions of source code must retain the above copyright notice
-# this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright
-# notice, this list of conditions and the following disclaimer in the
-# documentation and/or other materials provided with the distribution.
-#
-# 3. Neither the name of the author nor the names of its contributors may be
-# used to endorse or promote products derived from this software without
-# specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
-# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
-# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# $FreeBSD$
-#
-# MAINTAINER= eik@FreeBSD.org
-#
-
-require 5.005;
-use strict;
-use Geo::IP;
-use constant PI => 3.14159265358979323846;
-
-my $home = $ENV{CC_HOME} ? lc $ENV{CC_HOME} : 'eu';
-
-my $dbdir = $ENV{RANKDIR} ? $ENV{RANKDIR} : '/var/db/distrank';
-
--d $dbdir || mkdir $dbdir, 0777 or die "Can't create $dbdir\n";
-
-my $rankfile = "$dbdir/ranks-geoip";
-
-my $now = time;
-
-my %distance;
-
-if (-r $rankfile) {
- open RANKS, "<$rankfile";
- while (<RANKS>) {
- chomp;
- my ($host, $d, $e) = split;
- $distance{$host} = [$d, $e]
- if defined $e && $e >= $now;
- }
- close RANKS;
-}
-
-my %mastersites;
-my %newdistance;
-
-my $distgood = -1;
-my $distdefault = PI/2;
-my $distbad = 2;
-
-my $expgood = $now + 14 * 86400;
-my $expdefault = $now + 7 * 86400;
-
-my $hostcount = 0;
-
-while (<>) {
- chomp;
- next
- if exists $mastersites{$_};
- if (m'^(?:ftp|https?)://(?:[^/]*@)?([^/:]+\.[^/:]+)(?::\d+)?(?:/|$)'i) {
- my $host = lc $1;
- $mastersites{$_} = $host;
- if (!defined $distance{$host}) {
- $distance{$host} = [$distdefault, $expdefault];
- $newdistance{$host} = undef
- }
- $hostcount++;
- } elsif (m'^file:'i) {
- $mastersites{$_} = 'FILE';
- } else {
- $mastersites{$_} = 'UNKNOWN';
- }
-}
-
-# calculate_distance and the associated table is from Geo::Mirror, and therefore
-# Copyright (c) 2002, T.J. Mather, tjmather@tjmather.com, New York, NY, USA
-
-my (%lat, %lon);
-
-sub getlatlon {
- my ($cc) = @_;
- my ($lat_cc, $lon_cc) = ($lat{$cc}, $lon{$cc});
-
- # Convert all the degrees to radians
- $lat_cc *= PI/180
- if defined $lat_cc;
- $lon_cc *= PI/180
- if defined $lon_cc;
- return ($lat_cc, $lon_cc);
-}
-
-if (%newdistance && $hostcount > 1) {
- while (<main::DATA>) {
- my ($country, $lat, $lon) = split(':');
-
- $lat{$country} = $lat;
- $lon{$country} = $lon;
- }
- close main::DATA;
-
- my $gi = Geo::IP->new(GEOIP_MEMORY_CACHE);
-
- my ($lat_home, $lon_home) = getlatlon($home);
-
- foreach (keys %newdistance) {
- my $dist;
- my $cc = lc $gi->country_code_by_name($_);
-
- if ($cc) {
- my ($lat_cc, $lon_cc) = getlatlon($cc)
- if defined $cc;
-
- # Find the deltas
- my $delta_lat = $lat_cc - $lat_home;
- my $delta_lon = $lon_cc - $lon_home;
-
- # Find the Great Circle distance
- my $temp = sin($delta_lat/2.0)**2 + cos($lat_home) * cos($lat_cc) * sin($delta_lon/2.0)**2;
- $dist = atan2(sqrt($temp),sqrt(1-$temp));
-
- $distance{$_} = [$dist, $expgood]
- if defined $dist;
- }
- }
-
- open RANKS, ">$rankfile";
- while (my ($host, $val) = each %distance) {
- printf RANKS "%s\t%.4f\t%d\n", $host, $val->[0], $val->[1]
- if defined $val;
- }
- close RANKS;
-}
-
-$distance{FILE} = [$distgood, 0];
-$distance{UNKNOWN} = [$distbad, 0];
-
-foreach (sort {$distance{$mastersites{$a}}->[0] <=> $distance{$mastersites{$b}}->[0]} keys %mastersites) {
- print $_, "\n";
-}
-
-__END__
-af:33:65
-al:41:20
-dz:28:3
-as:-14:-170
-ad:42:1
-ao:-12:18
-ai:18:-63
-aq:-90:0
-ag:17:-61
-ar:-34:-64
-am:40:45
-aw:12:-69
-au:-27:133
-at:47:13
-az:40:47
-bs:24:-76
-bh:26:50
-bd:24:90
-bb:13:-59
-by:53:28
-be:50:4
-bz:17:-88
-bj:9:2
-bm:32:-64
-bt:27:90
-bo:-17:-65
-ba:44:18
-bw:-22:24
-bv:-54:3
-br:-10:-55
-io:-6:71
-vg:18:-64
-bg:43:25
-bf:13:-2
-bi:-3:30
-kh:13:105
-cm:6:12
-ca:60:-95
-cv:16:-24
-ky:19:-80
-cf:7:21
-td:15:19
-cl:-30:-71
-cn:35:105
-cx:-10:105
-cc:-12:96
-co:4:-72
-km:-12:44
-cd:0:25
-cg:-1:15
-ck:-21:-159
-cr:10:-84
-ci:8:-5
-hr:45:15
-cu:21:-80
-cy:35:33
-cz:49:15
-dk:56:10
-dj:11:43
-dm:15:-61
-do:19:-70
-ec:-2:-77
-eg:27:30
-sv:13:-88
-gq:2:10
-er:15:39
-ee:59:26
-et:8:38
-fk:-51:-59
-fo:62:-7
-fj:-18:175
-fi:64:26
-fr:46:2
-gf:4:-53
-pf:-15:-140
-ga:-1:11
-gm:13:-16
-ge:42:43
-de:51:9
-eu:48:10
-gh:8:-2
-gi:36:-5
-gr:39:22
-gl:72:-40
-gd:12:-61
-gp:16:-61
-gu:13:144
-gt:15:-90
-gn:11:-10
-gw:12:-15
-gy:5:-59
-ht:19:-72
-hm:-53:72
-va:41:12
-hn:15:-86
-hk:22:114
-hu:47:20
-is:65:-18
-in:20:77
-id:-5:120
-ir:32:53
-iq:33:44
-ie:53:-8
-il:31:34
-it:42:12
-jm:18:-77
-sj:71:-8
-jp:36:138
-jo:31:36
-ke:1:38
-ki:1:173
-kp:40:127
-kr:37:127
-kw:29:45
-kg:41:75
-lv:57:25
-lb:33:35
-ls:-29:28
-lr:6:-9
-ly:25:17
-li:47:9
-lt:56:24
-lu:49:6
-mo:22:113
-mk:41:22
-mg:-20:47
-mw:-13:34
-my:2:112
-mv:3:73
-ml:17:-4
-mt:35:14
-mh:9:168
-mq:14:-61
-mr:20:-12
-mu:-20:57
-yt:-12:45
-mx:23:-102
-fm:6:158
-mc:43:7
-mn:46:105
-ms:16:-62
-ma:32:-5
-mz:-18:35
-na:-22:17
-nr:-0:166
-np:28:84
-nl:52:5
-an:12:-68
-nc:-21:165
-nz:-41:174
-ni:13:-85
-ne:16:8
-ng:10:8
-nu:-19:-169
-nf:-29:167
-mp:15:145
-no:62:10
-om:21:57
-pk:30:70
-pw:7:134
-pa:9:-80
-pg:-6:147
-py:-23:-58
-pe:-10:-76
-ph:13:122
-pn:-25:-130
-pl:52:20
-pt:39:-8
-pr:18:-66
-qa:25:51
-re:-21:55
-ro:46:25
-ru:60:100
-rw:-2:30
-sh:-15:-5
-kn:17:-62
-lc:13:-60
-pm:46:-56
-vc:13:-61
-ws:-13:-172
-sm:43:12
-st:1:7
-sa:25:45
-sn:14:-14
-sc:-4:55
-sl:8:-11
-sg:1:103
-sk:48:19
-si:46:15
-sb:-8:159
-so:10:49
-za:-29:24
-gs:-54:-37
-es:40:-4
-lk:7:81
-sd:15:30
-sr:4:-56
-sj:78:20
-sz:-26:31
-se:62:15
-ch:47:8
-sy:35:38
-tj:39:71
-tz:-6:35
-th:15:100
-tg:8:1
-tk:-9:-172
-to:-20:-175
-tt:11:-61
-tn:34:9
-tr:39:35
-tm:40:60
-tc:21:-71
-tv:-8:178
-ug:1:32
-ua:49:32
-ae:24:54
-gb:54:-2
-us:38:-97
-uy:-33:-56
-uz:41:64
-vu:-16:167
-ve:8:-66
-vn:16:106
-vi:18:-64
-wf:-13:-176
-eh:24:-13
-ye:15:48
-yu:44:21
-zm:-15:30
-zw:-20:30
-tw:23:121