freebsd-ports/accessibility/yasr/Makefile

59 lines
1.2 KiB
Makefile
Raw Normal View History

# Created by: David K. Gerry
# $FreeBSD$
PORTNAME= yasr
PORTVERSION= 0.6.9
PORTREVISION= 2
CATEGORIES= accessibility
MASTER_SITES= SF
MAINTAINER= David.K.Gerry@GMail.com
COMMENT= General-purpose console screen reader
LICENSE= LGPL20
NO_STAGE= yes
USES= gmake
GNU_CONFIGURE= yes
MAN1= yasr.1
PORTDOCS= AUTHORS BUGS CREDITS ChangeLog NEWS README TODO \
README-br README-de README-es README-fr README-ru
SUB_FILES= pkg-message
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
CONFIGURE_ARGS+= --enable-nls
PLIST_SUB+= NLS=""
USES+= gettext
.else
CONFIGURE_ARGS+= --disable-nls
PLIST_SUB+= NLS="@comment "
.endif
PLIST_FILES= bin/yasr \
%%DATADIR%%/yasr.conf \
%%NLS%%share/locale/es/LC_MESSAGES/yasr.mo \
%%NLS%%share/locale/fr/LC_MESSAGES/yasr.mo
PLIST_DIRS= %%DATADIR%%
.include <bsd.port.pre.mk>
.if ${OSVERSION} > 900007
BROKEN= fails to build with new utmpx
.endif
post-patch:
@${REINPLACE_CMD} -e 's|/bin/bash|/bin/csh|' ${WRKSRC}/yasr.conf
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
.for doc in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
.endfor
.endif
@${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD}
.include <bsd.port.post.mk>