mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
f935a609c5
supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run
90 lines
2.6 KiB
Makefile
90 lines
2.6 KiB
Makefile
# New ports collection makefile for: gettext
|
|
# Date created: 16 March 1998
|
|
# Whom: Yukihiro Nakai <Nakai@technologist.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gettext
|
|
PORTVERSION= 0.16.1
|
|
PORTREVISION= 3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= gettext
|
|
|
|
MAINTAINER= ade@FreeBSD.org
|
|
COMMENT= GNU gettext package
|
|
|
|
USE_ICONV= yes
|
|
LIBTOOLFILES= autoconf-lib-link/configure gettext-runtime/configure \
|
|
gettext-runtime/libasprintf/configure gettext-tools/configure
|
|
USE_AUTOTOOLS= libtool:15
|
|
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ENV= ACLOCAL="${TRUE}" \
|
|
AUTOCONF="${TRUE}" \
|
|
AUTOMAKE="${TRUE}" \
|
|
AUTOHEADER="${TRUE}" \
|
|
MAKEINFO="makeinfo --no-split" \
|
|
CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib" \
|
|
EMACS="no"
|
|
CONFIGURE_ARGS= --disable-csharp --disable-threads --disable-openmp
|
|
USE_LDCONFIG= yes
|
|
|
|
PLIST_SUB= VERSION=${PORTVERSION}
|
|
|
|
MAN1= autopoint.1 gettext.1 gettextize.1 msgattrib.1 msgcat.1 \
|
|
msgcmp.1 msgcomm.1 msgconv.1 msgen.1 msgexec.1 \
|
|
msgfilter.1 msgfmt.1 msggrep.1 msginit.1 msgmerge.1 \
|
|
msgunfmt.1 msguniq.1 ngettext.1 xgettext.1 envsubst.1
|
|
MAN3= bind_textdomain_codeset.3 bindtextdomain.3 dcgettext.3 \
|
|
dcngettext.3 dgettext.3 dngettext.3 gettext.3 ngettext.3 \
|
|
textdomain.3
|
|
INFO= autosprintf gettext
|
|
|
|
.ifdef USE_GETTEXT
|
|
.error USE_GETTEXT is defined as an environment variable, or in the arguments \
|
|
to "make". Please unset it and restart the build.
|
|
.endif
|
|
|
|
.if defined (NOPORTDOCS)
|
|
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-nodocs
|
|
.endif
|
|
|
|
pre-extract:
|
|
.if exists(${PREFIX}/bin/kaffe)
|
|
@${ECHO_MSG} "Gettext won't build with Kaffe's jar utility. Doing:"
|
|
-${MV} ${PREFIX}/bin/jar ${PREFIX}/bin/jar.backup
|
|
@${ECHO_MSG} "Be sure to mv" ${PREFIX}/bin/jar.backup ${PREFIX}/bin/jar
|
|
@${ECHO_MSG} "if you abandon your attempt to build gettext."
|
|
@sleep 5
|
|
.endif
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -name configure -print | ${XARGS} \
|
|
${REINPLACE_CMD} -e 's|mkdir gmkdir|mkdir|'
|
|
.if defined (NOPORTDOCS)
|
|
.for dir in runtime tools
|
|
@${REINPLACE_CMD} -e 's|^SUBDIRS = doc|SUBDIRS =|' \
|
|
${WRKSRC}/gettext-${dir}/Makefile.in
|
|
.endfor
|
|
.endif
|
|
|
|
post-build:
|
|
.if exists(${PREFIX}/bin/kaffe)
|
|
-${MV} ${PREFIX}/bin/jar.backup ${PREFIX}/bin/jar
|
|
@${ECHO_MSG}
|
|
@${ECHO_MSG} "Your" ${PREFIX}/bin/jar "has been restored."
|
|
@sleep 5
|
|
.endif
|
|
|
|
post-install:
|
|
.for f in po-compat.el po-mode.el
|
|
@${INSTALL_DATA} ${WRKSRC}/gettext-tools/misc/${f} \
|
|
${PREFIX}/share/emacs/site-lisp
|
|
.endfor
|
|
@${MKDIR} ${X11BASE}/share/locale
|
|
@cd ${WRKSRC}/gettext-tools/doc && make install-info-am
|
|
|
|
.include <bsd.port.mk>
|