122 lines
3 KiB
Makefile
122 lines
3 KiB
Makefile
# $NetBSD: pgsql.buildlink3.mk,v 1.28 2010/02/10 19:33:54 joerg Exp $
|
|
#
|
|
# User-settable variables:
|
|
#
|
|
# PGSQL_VERSION_DEFAULT
|
|
#
|
|
# Package-settable variables:
|
|
#
|
|
# PGSQL_VERSIONS_ACCEPTED
|
|
#
|
|
# Variables set by this file:
|
|
#
|
|
# PG_LIB_EXT
|
|
# PGSQL_TYPE
|
|
# PGPKGSRCDIR
|
|
#
|
|
|
|
.if !defined(PGVERSION_MK)
|
|
PGVERSION_MK= defined
|
|
|
|
_VARGROUPS+= pgsql
|
|
_USER_VARS.pgsql= PGSQL_VERSION_DEFAULT
|
|
_PKG_VARS.pgsql= PGSQL_VERSIONS_ACCEPTED
|
|
_SYS_VARS.pgsql= PG_LIB_EXT PGSQL_TYPE PGPKGSRCDIR
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
PGSQL_VERSION_DEFAULT?= 84
|
|
PGSQL_VERSIONS_ACCEPTED?= 84 83 82
|
|
|
|
# transform the list into individual variables
|
|
.for pv in ${PGSQL_VERSIONS_ACCEPTED}
|
|
_PGSQL_VERSION_${pv}_OK= yes
|
|
.endfor
|
|
|
|
.if ${_OPSYS_SHLIB_TYPE} == "dylib"
|
|
PG_LIB_EXT=dylib
|
|
.else
|
|
PG_LIB_EXT=so
|
|
.endif
|
|
|
|
# check what is installed
|
|
.if ${OPSYS} == "Darwin"
|
|
.if exists(${LOCALBASE}/lib/libecpg.6.0.1.dylib)
|
|
_PGSQL_VERSION_84_INSTALLED= yes
|
|
.endif
|
|
.if exists(${LOCALBASE}/lib/libecpg.6.0.0.dylib)
|
|
_PGSQL_VERSION_83_INSTALLED= yes
|
|
.endif
|
|
.if exists(${LOCALBASE}/lib/libecpg.5.0.2.dylib)
|
|
_PGSQL_VERSION_82_INSTALLED= yes
|
|
.endif
|
|
.else
|
|
.if exists(${LOCALBASE}/lib/libecpg.so.6.0.1)
|
|
_PGSQL_VERSION_84_INSTALLED= yes
|
|
.endif
|
|
.if exists(${LOCALBASE}/lib/libecpg.so.6.0.0)
|
|
_PGSQL_VERSION_83_INSTALLED= yes
|
|
.endif
|
|
.if exists(${LOCALBASE}/lib/libecpg.so.5.0.2)
|
|
_PGSQL_VERSION_82_INSTALLED= yes
|
|
.endif
|
|
.endif
|
|
|
|
# if a version is explicitely required, take it
|
|
.if defined(PGSQL_VERSION_REQD)
|
|
_PGSQL_VERSION= ${PGSQL_VERSION_REQD}
|
|
.endif
|
|
# if the default is already installed, it is first choice
|
|
.if !defined(_PGSQL_VERSION)
|
|
.if defined(_PGSQL_VERSION_${PGSQL_VERSION_DEFAULT}_OK)
|
|
.if defined(_PGSQL_VERSION_${PGSQL_VERSION_DEFAULT}_INSTALLED)
|
|
_PGSQL_VERSION= ${PGSQL_VERSION_DEFAULT}
|
|
.endif
|
|
.endif
|
|
.endif
|
|
# prefer an already installed version, in order of "accepted"
|
|
.if !defined(_PGSQL_VERSION)
|
|
.for pv in ${PGSQL_VERSIONS_ACCEPTED}
|
|
.if defined(_PGSQL_VERSION_${pv}_INSTALLED)
|
|
_PGSQL_VERSION?= ${pv}
|
|
.else
|
|
# keep information as last resort - see below
|
|
_PGSQL_VERSION_FIRSTACCEPTED?= ${pv}
|
|
.endif
|
|
.endfor
|
|
.endif
|
|
# if the default is OK for the addon pkg, take this
|
|
.if !defined(_PGSQL_VERSION)
|
|
.if defined(_PGSQL_VERSION_${PGSQL_VERSION_DEFAULT}_OK)
|
|
_PGSQL_VERSION= ${PGSQL_VERSION_DEFAULT}
|
|
.endif
|
|
.endif
|
|
# take the first one accepted by the package
|
|
.if !defined(_PGSQL_VERSION)
|
|
_PGSQL_VERSION= ${_PGSQL_VERSION_FIRSTACCEPTED}
|
|
.endif
|
|
|
|
#
|
|
# set variables for the version we decided to use:
|
|
#
|
|
.if ${_PGSQL_VERSION} == "84"
|
|
PGSQL_TYPE= postgresql84-client
|
|
PGPKGSRCDIR= ../../databases/postgresql84-client
|
|
.elif ${_PGSQL_VERSION} == "83"
|
|
PGSQL_TYPE= postgresql83-client
|
|
PGPKGSRCDIR= ../../databases/postgresql83-client
|
|
.elif ${_PGSQL_VERSION} == "82"
|
|
PGSQL_TYPE= postgresql82-client
|
|
PGPKGSRCDIR= ../../databases/postgresql82-client
|
|
.else
|
|
# force an error
|
|
PGSQL_TYPE= none
|
|
PKG_FAIL_REASON+= "${_PGSQL_VERSION} is not a valid package"
|
|
.endif
|
|
|
|
.include "${PGPKGSRCDIR}/buildlink3.mk"
|
|
PGSQL_PREFIX= ${BUILDLINK_PREFIX.${PGSQL_TYPE}}
|
|
|
|
PGSQL_VERSION= ${_PGSQL_VERSION}
|
|
|
|
.endif # PGVERSION_MK
|