f856a9ae6e
Approved by: thierry (mentor)
54 lines
1.5 KiB
Makefile
54 lines
1.5 KiB
Makefile
# New ports collection makefile for: remind
|
|
# Date created: 10 April 2004
|
|
# Whom: Lewis Thompson <purple@lewiz.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= remind
|
|
PORTVERSION= 3.1.3
|
|
CATEGORIES= deskutils
|
|
MASTER_SITES= http://www.roaringpenguin.com/files/download/ \
|
|
http://freebsd.unixfreunde.de/sources/
|
|
DISTNAME= ${PORTNAME}-03.01.03
|
|
|
|
MAINTAINER= jadawin@FreeBSD.org
|
|
COMMENT= Sophisticated calendar and alarm program
|
|
|
|
GNU_CONFIGURE= yes
|
|
MAKE_ARGS= INSTALL_SCRIPT="${INSTALL_SCRIPT}"
|
|
|
|
MAN1= rem.1 rem2ps.1 remind.1 tkremind.1 cm2rem.1
|
|
|
|
PLIST_FILES= bin/cm2rem.tcl bin/rem bin/rem2ps bin/remind \
|
|
bin/tkremind
|
|
|
|
post-patch:
|
|
# This seems more than a little ugly.
|
|
.if defined(LAT_DEG)
|
|
@${REINPLACE_CMD} -e 's#LAT_DEG 45#LAT_DEG ${LAT_DEG}#' ${WRKSRC}/src/custom.h
|
|
.endif
|
|
.if defined(LAT_MIN)
|
|
@${REINPLACE_CMD} -e 's#LAT_MIN 24#LAT_MIN ${LAT_MIN}#' ${WRKSRC}/src/custom.h
|
|
.endif
|
|
.if defined(LAT_SEC)
|
|
@${REINPLACE_CMD} -e 's#LAT_SEC 0#LAT_SEC ${LAT_SEC}#' ${WRKSRC}/src/custom.h
|
|
.endif
|
|
.if defined(LON_DEG)
|
|
@${REINPLACE_CMD} -e 's#LON_DEG 75#LON_DEG ${LON_DEG}#' ${WRKSRC}/src/custom.h
|
|
.endif
|
|
.if defined(LON_MIN)
|
|
@${REINPLACE_CMD} -e 's#LON_MIN 39#LON_MIN ${LON_MIN}#' ${WRKSRC}/src/custom.h
|
|
.endif
|
|
.if defined(LON_SEC)
|
|
@${REINPLACE_CMD} -e 's#LON_SEC 0#LON_SEC ${LON_SEC}#' ${WRKSRC}/src/custom.h
|
|
.endif
|
|
.if defined(LOCATION)
|
|
@${REINPLACE_CMD} -e 's#Ottawa#${LOCATION}#' ${WRKSRC}/src/custom.h
|
|
.endif
|
|
.if defined(A4)
|
|
@${REINPLACE_CMD} -e 's#"Letter", 612, 792#"A4", 595, 842#' ${WRKSRC}/src/custom.h
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|