# $NetBSD: Makefile,v 1.10 2005/02/07 11:35:41 jlam Exp $ PKGNAME= postgresql73-server-${BASE_VERS} PKGREVISION= # empty SVR4_PKGNAME= pstgs COMMENT= PostgreSQL database server programs DEPENDS+= postgresql73-client>=${BASE_VERS}:../../databases/postgresql73-client # mips has no TAS implementation NOT_FOR_PLATFORM= *-*-mips USE_BUILDLINK3= yes .include "../../databases/postgresql73/Makefile.common" USE_PKGINSTALL= yes DEINSTALL_EXTRA_TMPL+= ${.CURDIR}/DEINSTALL CONFIGURE_ARGS+= --with-openssl=${SSLBASE} BUILD_DIRS= ${WRKSRC}/src/backend BUILD_DIRS+= ${WRKSRC}/src/backend/utils/mb/conversion_procs # PostgreSQL has loadable server-side language modules. # XXX this breaks PostgreSQL server - see PR pkg/28729 #.include "../../mk/dlopen.buildlink3.mk" PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql73-server PKG_SUPPORTED_OPTIONS= PAM .include "../../mk/bsd.options.mk" .if !empty(PKG_OPTIONS:MPAM) . include "../../mk/pam.buildlink3.mk" CONFIGURE_ARGS+= --with-pam .endif # PGUSER username of the database administrator # PGGROUP group of the database administrator # PGHOME home directory of the database administrator and location of # the databases # PGUSER?= pgsql PGGROUP?= pgsql PGHOME?= ${PREFIX}/${PGUSER} FILES_SUBST+= PGUSER=${PGUSER} FILES_SUBST+= PGGROUP=${PGGROUP} FILES_SUBST+= PGHOME=${PGHOME} BUILD_DEFS= PGUSER PGGROUP PGHOME PKG_USERS= ${PGUSER}:${PGGROUP}::PostgreSQL\\ database\\ administrator:${PGHOME}:${SH} PKG_GROUPS= ${PGGROUP} RCD_SCRIPTS= pgsql post-wrapper: # # Avoid conflict between "${LOCALBASE}/include/openssl/des.h" and # "/usr/include/crypt.h" -- we want the definitions in the former. # .if (${OPSYS} == "SunOS") ${TOUCH} ${BUILDLINK_DIR}/include/crypt.h .endif pre-install: @case "X${PGUSER}" in \ Xbin|Xetc|Xinclude|Xinfo|Xlib|Xlibdata|Xlibexec|Xman|Xsbin|Xshare) \ ${ECHO} "You have chosen PGUSER=${PGUSER} which will"; \ ${ECHO} "cause trouble, because the postgres home directory"; \ ${ECHO} "would be ${PGHOME}. Please"; \ ${ECHO} "set PGUSER to something more reasonable"; \ ${ECHO} "like pgsql."; \ ${ECHO} ""; \ ${FALSE}; \ ;; \ esac post-install: ${GTAR} zxCf ${PREFIX}/man ${WRKSRC}/doc/man.tar.gz \ `${SED} -e "s|^#.*||" ${FILESDIR}/man.server` .include "../../databases/postgresql73-lib/buildlink3.mk" .include "../../mk/bsd.pkg.mk"