d88554c247
INCOMPAT_GETTEXT that are analogous to INCOMPAT_ICONV and contain lists of shell wildcards intended to match against ${MACHINE_PLATFORM}. These variables are used to note those platforms that have the named packages in the base system but are incompatible in some way from the pkgsrc version of the same package. Change INCOMPAT_CURSES to have the same sematics as above. These variables allow much greater precision in specifying which platforms have broken (for the purposes of pkgsrc) versions of software in the base system that must be ignored. The buildlink.mk files for these packages define private _INCOMPAT_* versions of these variables, and they contain the default lists of platforms that are known to have incompatible software bits. This addresses pkg/17775 submitted by Julien T. Letessier <julien.letessier at sun dot com>.
79 lines
2.2 KiB
Makefile
79 lines
2.2 KiB
Makefile
# $NetBSD: buildlink.mk,v 1.14 2002/08/07 06:10:33 jlam Exp $
|
|
#
|
|
# This Makefile fragment is included by packages that use gettext.
|
|
#
|
|
# To use this Makefile fragment, simply:
|
|
#
|
|
# (1) Optionally define BUILDLINK_DEPENDS.gettext to the dependency pattern
|
|
# for the version of gettext desired.
|
|
# (2) Include this Makefile fragment in the package Makefile,
|
|
# (3) Add ${BUILDLINK_DIR}/include to the front of the C preprocessor's header
|
|
# search path, and
|
|
# (4) Add ${BUILDLINK_DIR}/lib to the front of the linker's library search
|
|
# path.
|
|
|
|
.if !defined(GETTEXT_BUILDLINK_MK)
|
|
GETTEXT_BUILDLINK_MK= # defined
|
|
|
|
.include "../../mk/bsd.buildlink.mk"
|
|
|
|
BUILDLINK_DEPENDS.gettext?= gettext-lib>=0.10.35nb1
|
|
|
|
.if defined(USE_GNU_GETTEXT)
|
|
_NEED_GNU_GETTEXT= YES
|
|
.else
|
|
. if exists(/usr/include/libintl.h)
|
|
_NEED_GNU_GETTEXT= NO
|
|
. else
|
|
_NEED_GNU_GETTEXT= YES
|
|
. endif
|
|
#
|
|
# Solaris has broken (for the purposes of pkgsrc) version of zlib and
|
|
# gettext.
|
|
#
|
|
_INCOMPAT_GETTEXT= SunOS-*-*
|
|
INCOMPAT_GETTEXT?= # empty
|
|
. for _pattern_ in ${_INCOMPAT_GETTEXT} ${INCOMPAT_GETTEXT}
|
|
. if !empty(MACHINE_PLATFORM:M${_pattern_})
|
|
_NEED_GNU_GETTEXT= YES
|
|
. endif
|
|
. endfor
|
|
.endif
|
|
|
|
.if ${_NEED_GNU_GETTEXT} == "YES"
|
|
DEPENDS+= ${BUILDLINK_DEPENDS.gettext}:../../devel/gettext-lib
|
|
EVAL_PREFIX+= BUILDLINK_PREFIX.gettext=gettext-lib
|
|
BUILDLINK_PREFIX.gettext_DEFAULT= ${LOCALBASE}
|
|
.else
|
|
BUILDLINK_PREFIX.gettext= /usr
|
|
.endif
|
|
|
|
BUILDLINK_FILES.gettext= include/libintl.h
|
|
BUILDLINK_FILES.gettext+= lib/libintl.*
|
|
|
|
BUILDLINK_TARGETS.gettext= gettext-buildlink
|
|
BUILDLINK_TARGETS+= ${BUILDLINK_TARGETS.gettext}
|
|
|
|
# Add -lintl to LIBS in CONFIGURE_ENV to work around broken gettext.m4:
|
|
# gettext.m4 does not add -lintl where it should, and the resulting
|
|
# configure script fails to detect if libintl.a is the genuine GNU gettext
|
|
# or not.
|
|
#
|
|
_BLNK_INTLLIBS= # empty
|
|
.if ${_NEED_GNU_GETTEXT} == "YES"
|
|
_BLNK_INTLLIBS+= -L${BUILDLINK_DIR}/lib
|
|
. if ${_USE_RPATH} == "yes"
|
|
_BLNK_INTLLIBS+= -Wl,-R${BUILDLINK_PREFIX.gettext}/lib
|
|
. endif
|
|
.endif
|
|
_BLNK_INTLLIBS+= -lintl
|
|
.if defined(GNU_CONFIGURE)
|
|
INTLLIBS= ${_BLNK_INTLLIBS}
|
|
LIBS+= ${INTLLIBS}
|
|
CONFIGURE_ENV+= INTLLIBS="${INTLLIBS}"
|
|
.endif
|
|
|
|
pre-configure: ${BUILDLINK_TARGETS.gettext}
|
|
gettext-buildlink: _BUILDLINK_USE
|
|
|
|
.endif # GETTEXT_BUILDLINK_MK
|