123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- #-*- mode: Fundamental; tab-width: 4; -*-
- # ex:ts=4 sw=4 filetype=make:
- # $OpenBSD: gnu.port.mk,v 1.55 2016/04/26 10:56:59 sthen 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 += ${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 += ${SETENV} ${AUTOCONF_ENV} ${AUTOCONF};
- . if ${CONFIGURE_STYLE:L:Mautoheader}
- _MODGNU_loop += echo "Running autoheader-${AUTOCONF_VERSION} in $$d";
- _MODGNU_loop += ${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
|