5abef9be14
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
83 lines
2.8 KiB
Makefile
83 lines
2.8 KiB
Makefile
# $NetBSD: Makefile,v 1.30 2006/04/06 06:21:41 reed Exp $
|
|
#
|
|
|
|
DISTNAME= geneweb-4.10
|
|
PKGREVISION= 3
|
|
CATEGORIES= databases
|
|
MASTER_SITES= ftp://ftp.inria.fr/INRIA/Projects/cristal/geneweb/Src/
|
|
|
|
MAINTAINER= wulf@NetBSD.org
|
|
HOMEPAGE= http://cristal.inria.fr/~ddr/GeneWeb/
|
|
COMMENT= GeneWeb is a comprehensive genealogy database application
|
|
|
|
DIST_SUBDIR= ${PKGNAME_NOREV}nb1
|
|
USE_TOOLS+= gmake
|
|
|
|
RCD_SCRIPTS= geneweb
|
|
|
|
.if !exists(${LOCALBASE}/bin/ocamlc.opt)
|
|
BUILD_TARGET= out
|
|
.endif
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# needed for patch-ab to work:
|
|
# since 3.09.0, camlp4 uses _loc instead of loc
|
|
BUILDLINK_API_DEPENDS.ocaml+= ocaml>=3.09.0
|
|
|
|
# sysutils/coreutils a 'gwc' program, so conflict with it if
|
|
# ${GNU_PROGRAM_PREFIX} == "g"
|
|
.if ${GNU_PROGRAM_PREFIX} == "g"
|
|
CONFLICTS+= coreutils-[0-9]*
|
|
.endif
|
|
|
|
# Stripped OCAML binaries don't seem to work nolonger
|
|
# Installing unstripped binaries until this is fixed
|
|
INSTALL_PROGRAM = ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}
|
|
|
|
INSTALLATION_DIRS= bin libexec sbin
|
|
|
|
pre-configure:
|
|
if ! ${TEST} -x ${LOCALBASE}/bin/ocamlc.opt; then \
|
|
${ECHO} "No optimized ocaml binaries found"; \
|
|
cd ${WRKSRC}/tools/; \
|
|
${MV} Makefile.inc Makefile.inc.orig; \
|
|
${SED} -e "s/\.opt//g" Makefile.inc.orig > Makefile.inc; \
|
|
fi
|
|
|
|
post-build:
|
|
cd ${WRKSRC} && ${GMAKE} distrib
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/geneweb
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/geneweb
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/geneweb/etc
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/geneweb/gwtp_tmp
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/geneweb/images
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/geneweb/lang
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/geneweb/setup
|
|
cd ${WRKSRC}/distribution/gw && \
|
|
${INSTALL_PROGRAM} gwd ${PREFIX}/libexec && \
|
|
${INSTALL_PROGRAM} consang ${PREFIX}/bin && \
|
|
${INSTALL_PROGRAM} gwc ${PREFIX}/bin && \
|
|
${INSTALL_PROGRAM} gwtp_tmp/gwtp ${PREFIX}/bin && \
|
|
${INSTALL_PROGRAM} ged2gwb ${PREFIX}/bin && \
|
|
${INSTALL_PROGRAM} gwb2ged ${PREFIX}/bin && \
|
|
${INSTALL_PROGRAM} gwsetup ${PREFIX}/sbin && \
|
|
${INSTALL_PROGRAM} gwu ${PREFIX}/bin && \
|
|
${CP} -Rp doc/* ${PREFIX}/share/doc/geneweb && \
|
|
${CP} -Rp etc ${PREFIX}/share/geneweb && \
|
|
${CP} -Rp gwtp_tmp ${PREFIX}/share/geneweb && \
|
|
${CP} -Rp images ${PREFIX}/share/geneweb && \
|
|
${CP} -Rp lang ${PREFIX}/share/geneweb && \
|
|
${CP} -Rp setup ${PREFIX}/share/geneweb && \
|
|
${INSTALL_DATA} a.gwf ${PREFIX}/share/examples/geneweb && \
|
|
${INSTALL_DATA} only.txt ${PREFIX}/share/examples/geneweb
|
|
${TOUCH} ${PREFIX}/share/geneweb/gwtp_tmp/passwd
|
|
${TOUCH} ${PREFIX}/share/geneweb/gwtp_tmp/gwtp.log
|
|
${CHMOD} 600 ${PREFIX}/share/geneweb/gwtp_tmp/passwd
|
|
${CHMOD} 600 ${PREFIX}/share/geneweb/gwtp_tmp/gwtp.log
|
|
${CHOWN} -R nobody.${ROOT_GROUP} ${PREFIX}/share/geneweb
|
|
|
|
.include "../../lang/ocaml/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|