ee627ad0a6
textproc/gtk-doc is in BUILD_DEPENDS and force ac_cv_path_GTKDOC_* to null. Even when --disable-gtk-doc is passed, if the gtk-doc tools are present at configure time, they will be run (at a time where the gtk-doc package may have been removed; for e.g. during a bulk). This is what we've been doing under x11/gnome for a while now. sthen@ espie@ and jasper@ agree
154 lines
5.1 KiB
Makefile
154 lines
5.1 KiB
Makefile
#-*- mode: Fundamental; tab-width: 4; -*-
|
|
# ex:ts=4 sw=4 filetype=make:
|
|
# $OpenBSD: gnu.port.mk,v 1.54 2014/09/13 16:28:47 ajacoutot Exp $
|
|
# Based on bsd.port.mk, originally by Jordan K. Hubbard.
|
|
# This file is in the public domain.
|
|
|
|
MODGNU_AUTOCONF_DEPENDS = devel/metaauto \
|
|
devel/autoconf/${AUTOCONF_VERSION}
|
|
MODGNU_AUTOMAKE_DEPENDS = devel/metaauto \
|
|
devel/automake/${AUTOMAKE_VERSION}
|
|
|
|
AUTOMAKE_VERSION ?= 1.4
|
|
|
|
.if ${CONFIGURE_STYLE:L:Mautomake}
|
|
BUILD_DEPENDS += ${MODGNU_AUTOMAKE_DEPENDS}
|
|
MAKE_ENV += AUTOMAKE_VERSION=${AUTOMAKE_VERSION}
|
|
. if ${CONFIGURE_STYLE:L:Mautoupdate}
|
|
CONFIGURE_STYLE += autoconf
|
|
. endif
|
|
.endif
|
|
|
|
.if ${CONFIGURE_STYLE:L:Mautoconf}
|
|
AUTOCONF_VERSION ?= 2.13
|
|
BUILD_DEPENDS += ${MODGNU_AUTOCONF_DEPENDS}
|
|
AUTOCONF ?= autoconf
|
|
AUTOUPDATE ?= autoupdate
|
|
AUTOHEADER ?= autoheader
|
|
AUTOCONF_DIR ?= ${WRKSRC}
|
|
# missing ?= not an oversight
|
|
AUTOCONF_ENV = PATH=${PORTPATH} AUTOCONF_VERSION=${AUTOCONF_VERSION}
|
|
MAKE_ENV += AUTOCONF_VERSION=${AUTOCONF_VERSION}
|
|
. if !${CONFIGURE_STYLE:L:Mno-autoheader}
|
|
CONFIGURE_STYLE += autoheader
|
|
. endif
|
|
.endif
|
|
|
|
CONFIG_SITE_LIST += config.site
|
|
.for d name in \
|
|
sysutils/ggrep ggrep \
|
|
textproc/gsed gsed \
|
|
archivers/gtar* gtar \
|
|
lang/gawk gawk \
|
|
sysutils/coreutils coreutils
|
|
. if !defined(BUILD_DEPENDS) || !${BUILD_DEPENDS:M$d}
|
|
CONFIG_SITE_LIST += config.no-${name}
|
|
. endif
|
|
.endfor
|
|
|
|
_CONFIG_SITE = ${WRKDIR}/config.site
|
|
CONFIGURE_ENV += CONFIG_SITE='${_CONFIG_SITE}'
|
|
.if !defined(MODGNU_EMACS_YOURE_WEIRD)
|
|
MAKE_ENV += CONFIG_SITE='${_CONFIG_SITE}'
|
|
.endif
|
|
|
|
MODGNU_CONFIG_GUESS_DIRS ?=${WRKSRC}
|
|
MODGNU_SAVE_CACHE ?= No
|
|
MODGNU_SAVE_CACHE_LOCATION =${PORTSDIR}/config
|
|
|
|
MODGNU_configure = for d in ${MODGNU_CONFIG_GUESS_DIRS}; \
|
|
do \
|
|
cp -f ${PORTSDIR}/infrastructure/db/config.guess $$d; \
|
|
chmod a+rx $$d/config.guess; \
|
|
cp -f ${PORTSDIR}/infrastructure/db/config.sub $$d; \
|
|
chmod a+rx $$d/config.sub; \
|
|
done; ${MODSIMPLE_configure}
|
|
|
|
.if ${MODGNU_SAVE_CACHE:L} == "yes"
|
|
MODGNU_configure += ; mkdir -p ${MODGNU_SAVE_CACHE_LOCATION}; \
|
|
cp ${WRKBUILD}/config.cache ${MODGNU_SAVE_CACHE_LOCATION}/${FULLPKGNAME} \
|
|
|| true
|
|
.endif
|
|
|
|
.if ${CONFIGURE_STYLE:L:Mgnu}
|
|
CONFIGURE_ENV += MKDIR_P='mkdir -p'
|
|
# XXX Older versions of glib-gettext.m4 and intltool.m4 used to set
|
|
# DATADIRNAME to "lib" which resulted in locale files being installed
|
|
# under the wrong directory.
|
|
CONFIGURE_ENV += DATADIRNAME=share
|
|
. if ${MODGNU_SAVE_CACHE:L} == "yes"
|
|
CONFIGURE_ARGS += --cache-file=${WRKBUILD}/config.cache
|
|
. endif
|
|
. if ${CONFIGURE_STYLE:L:Mdest}
|
|
CONFIGURE_ARGS += --prefix='$${${DESTDIRNAME}}${PREFIX}'
|
|
. else
|
|
CONFIGURE_ARGS += --prefix='${PREFIX}'
|
|
. endif
|
|
|
|
. if empty(CONFIGURE_STYLE:L:Mold)
|
|
. if ${CONFIGURE_STYLE:L:Mdest}
|
|
CONFIGURE_ARGS += --sysconfdir='$${${DESTDIRNAME}}${SYSCONFDIR}'
|
|
CONFIGURE_ARGS += --mandir='$${${DESTDIRNAME}}${PREFIX}/man'
|
|
CONFIGURE_ARGS += --infodir='$${${DESTDIRNAME}}${PREFIX}/info'
|
|
CONFIGURE_ARGS += --localstatedir='$${${DESTDIRNAME}}${LOCALSTATEDIR}'
|
|
. else
|
|
CONFIGURE_ARGS += --sysconfdir='${SYSCONFDIR}'
|
|
CONFIGURE_ARGS += --mandir='${PREFIX}/man'
|
|
CONFIGURE_ARGS += --infodir='${PREFIX}/info'
|
|
CONFIGURE_ARGS += --localstatedir='${LOCALSTATEDIR}'
|
|
. endif
|
|
. endif
|
|
|
|
CONFIGURE_ARGS += --disable-silent-rules
|
|
# Unless explicitely requested, disable gtk-doc by default.
|
|
. if !defined(BUILD_DEPENDS) || !${BUILD_DEPENDS:Mtextproc/gtk-doc}
|
|
# If one of these tools is found at configure stage, it might be used,
|
|
# no matter whether we use --disable-gtk-doc or not.
|
|
CONFIGURE_ARGS += --disable-gtk-doc
|
|
CONFIGURE_ENV += ac_cv_path_GTKDOC_CHECK=""
|
|
CONFIGURE_ENV += ac_cv_path_GTKDOC_REBASE=""
|
|
CONFIGURE_ENV += ac_cv_path_GTKDOC_MKPDF=""
|
|
. endif
|
|
.endif
|
|
|
|
TEST_TARGET ?= check
|
|
|
|
# internal stuff to run on each directory.
|
|
MODGNU_post-patch = for d in ${AUTOCONF_DIR}; do cd $$d; ${_MODGNU_loop} done;
|
|
_MODGNU_loop =
|
|
|
|
PATCH_CHECK_ONLY ?= No
|
|
.if ${PATCH_CHECK_ONLY:L} != "yes"
|
|
. if ${CONFIGURE_STYLE:L:Mautoupdate}
|
|
_MODGNU_loop += echo "Running autoupdate-${AUTOCONF_VERSION} in $$d";
|
|
_MODGNU_loop += ${_SYSTRACE_CMD} ${SETENV} ${AUTOCONF_ENV} ${AUTOUPDATE};
|
|
. endif
|
|
. if ${CONFIGURE_STYLE:L:Mautoconf}
|
|
_MODGNU_loop += if test -f $$d/configure; then \
|
|
grep -iq 'Generated by.*autoconf.*${AUTOCONF_VERSION}' $$d/configure || { \
|
|
echo ">>> Can't find autoconf ${AUTOCONF_VERSION} signature in $$d/configure:"; \
|
|
grep -i 'Generated by.*autoconf' $$d/configure; }; \
|
|
fi;
|
|
_MODGNU_loop += echo "Running autoconf-${AUTOCONF_VERSION} in $$d";
|
|
_MODGNU_loop += ${_SYSTRACE_CMD} ${SETENV} ${AUTOCONF_ENV} ${AUTOCONF};
|
|
. if ${CONFIGURE_STYLE:L:Mautoheader}
|
|
_MODGNU_loop += echo "Running autoheader-${AUTOCONF_VERSION} in $$d";
|
|
_MODGNU_loop += ${_SYSTRACE_CMD} ${SETENV} ${AUTOCONF_ENV} ${AUTOHEADER};
|
|
. endif
|
|
. if !${CONFIGURE_STYLE:L:Mautomake}
|
|
REORDER_DEPENDENCIES += ${PORTSDIR}/infrastructure/mk/automake.dep
|
|
. endif
|
|
. endif
|
|
.endif
|
|
|
|
MAKE_FLAGS += mkdir_p='mkdir -p --'
|
|
# XXX to be killed
|
|
MODGNU_SHARED_LIBS ?=
|
|
.for _n _e in ${MODGNU_SHARED_LIBS}
|
|
. if defined(LIB${_n}_ALIAS)
|
|
MAKE_FLAGS += lib${LIB${_n}_ALIAS}_la_LDFLAGS='-version-info ${LIB${_n}_VERSION:S/./:/}:0 '${_e}
|
|
. else
|
|
MAKE_FLAGS += lib${_n}_la_LDFLAGS='-version-info ${LIB${_n}_VERSION:S/./:/}:0 '${_e}
|
|
. endif
|
|
.endfor
|