0f1223101e
- Cleanup Makefile header Changes: - Add "Multi-Arch: foreign" control field to permit any installable architecture to satisfy a build dependency when cross-building packages (closes: #694586). Feature safe: yes
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= help2man
|
|
PORTVERSION= 1.40.13
|
|
CATEGORIES= misc
|
|
MASTER_SITES= GNU/${PORTNAME}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Automatically generating simple manual pages from program output
|
|
|
|
LICENSE= GPLv3
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
|
|
CFLAGS+= -L${LOCALBASE}/lib
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
USE_PERL5= yes
|
|
|
|
INFO= ${PORTNAME}
|
|
MAN1= ${PORTNAME}.1
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
BUILD_DEPENDS+= p5-Locale-gettext>=0:${PORTSDIR}/devel/p5-Locale-gettext
|
|
RUN_DEPENDS+= p5-Locale-gettext>=0:${PORTSDIR}/devel/p5-Locale-gettext
|
|
|
|
CFLAGS+= -lintl
|
|
MANLANG= "" ${LANGS} ${LANGS_MTREE}
|
|
USE_GETTEXT= yes
|
|
|
|
LANGS= de el eo fi fr hr it pl pt_BR ru sr sv uk vi
|
|
LANGS_MTREE= ja # languages that already exist in BSD.local.dist
|
|
|
|
PLIST_FILES+= lib/bindtextdomain.so
|
|
.for lang in ${LANGS} ${LANGS_MTREE}
|
|
PLIST_FILES+= share/locale/${lang}/LC_MESSAGES/${PORTNAME}.mo
|
|
.endfor
|
|
.for lang in ${LANGS}
|
|
PLIST_DIRSTRY+= man/${lang}/man1 man/${lang}
|
|
.endfor
|
|
.else
|
|
CONFIGURE_ARGS= --disable-nls
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/^pkglibdir/ s|/${PORTNAME}$$||' ${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|