mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
951bb0c949
Comparator functions must return NSComparisonResult, not an integer.
Fixes: 944d53ea8c
29 lines
641 B
Makefile
29 lines
641 B
Makefile
PORTNAME= expense
|
|
PORTVERSION= 0.1
|
|
PORTREVISION= 12
|
|
CATEGORIES= finance gnustep
|
|
MASTER_SITES= http://www.eskimo.com/~pburns/Expense/files/
|
|
DISTNAME= Expense-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Application to track your expense under GNUstep
|
|
WWW= https://www.eskimo.com/~pburns/Expense/
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= gnustep
|
|
USE_GNUSTEP= back build
|
|
|
|
WRKSRC= ${WRKDIR}/Expense
|
|
|
|
PORTSCOUT= ignore:1
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Expense.app/Expense
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/_recordSort/s,^int,NSComparisonResult,' \
|
|
${WRKSRC}/LedgerModel.[hm]
|
|
|
|
.include <bsd.port.mk>
|