1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/deskutils/gcal/Makefile
Johan van Selst a5953c0017 - Enable stage support
- Fix perl shebang path
- Bump PORTREVISION
2013-12-28 21:33:14 +00:00

51 lines
1.2 KiB
Makefile

# Created by: Cyrille Lefevre <clefevre@citeweb.net>
# $FreeBSD$
PORTNAME= gcal
PORTVERSION= 3.6.3
PORTREVISION= 1
CATEGORIES= deskutils
MASTER_SITES= GNU
MAINTAINER= johans@FreeBSD.org
COMMENT= The GNU Gregorian calendar program
USE_XZ= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= MAKEINFO="makeinfo --no-split"
USES= shebangfix
SHEBANG_FILES= misc/gcalltx/gcalltxp.in misc/gcalltx/gcalltx.pl
INFO= gcal
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
USES+= gettext
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.endif
GCAL_SCRIPTS= daily/daily ddiff/ddiff ddiff/ddiffdrv dst/dst gcalltx/gcalltx \
gcalltx/gcalltxp moon/moon mrms/mrms srss/srss wloc/wlocdrv
post-patch:
.for p in ${GCAL_SCRIPTS}
@${REINPLACE_CMD} -e '/^ThisGcal=/s:=.*:=${PREFIX}/bin/gcal:' \
-e '/^packagedatamiscdir=/s:=.*:=${DATADIR}/misc/${p:H}:' \
${WRKSRC}/misc/${p}.in
.endfor
post-install:
@${TAR} -cf - -C ${WRKSRC} --exclude '*.in' --exclude '*.in.bak' \
--exclude '*.alias' misc | \
${TAR} -xpf - -C ${STAGEDIR}${DATADIR}
.for p in ${GCAL_SCRIPTS}
@${CHMOD} +x ${STAGEDIR}${DATADIR}/misc/${p}
@${LN} -s ${DATADIR}/misc/${p} ${STAGEDIR}${PREFIX}/bin/gcal-${p:T}
.endfor
.include <bsd.port.mk>