diff options
author | Juergen Lock <nox@FreeBSD.org> | 2007-04-07 18:37:23 +0000 |
---|---|---|
committer | Juergen Lock <nox@FreeBSD.org> | 2007-04-07 18:37:23 +0000 |
commit | d119258ee1b6fffededbbf99312ef3dc4cdb5da3 (patch) | |
tree | 879c0f74ec464723afd07c845c98322b80b0490e /games | |
parent | f6bafd7cf9e71b9f546716533e4471b615b006a8 (diff) | |
download | ports-d119258ee1b6fffededbbf99312ef3dc4cdb5da3.tar.gz ports-d119258ee1b6fffededbbf99312ef3dc4cdb5da3.zip |
Notes
Diffstat (limited to 'games')
-rw-r--r-- | games/latrine/Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/games/latrine/Makefile b/games/latrine/Makefile index 752500575aa3..cfd34c9ab8d0 100644 --- a/games/latrine/Makefile +++ b/games/latrine/Makefile @@ -7,14 +7,13 @@ PORTNAME= latrine PORTVERSION= 0.9.0 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://www.godisch.de/debian/latrine/ MAINTAINER= nox@FreeBSD.org COMMENT= Curses-based LAnguage TRaINEr -LIB_DEPENDS+= ncursesw.5:${PORTSDIR}/devel/ncurses - GNU_CONFIGURE= yes CONFIGURE_ARGS= "CFLAGS=-I${LOCALBASE}/include -I${WRKDIR} -D_XOPEN_SOURCE_EXTENDED" LDFLAGS=-L${LOCALBASE}/lib --mandir=${PREFIX}/man USE_GMAKE= yes @@ -28,8 +27,17 @@ MAN1= latrine.1 IGNORE= needs libcursesw which doesnt work on this OSVERSION .endif -post-extract: +.if ${OSVERSION} < 602107 || (${OSVERSION} > 700000 && ${OSVERSION} < 700033) +LIB_DEPENDS+= ncursesw.5:${PORTSDIR}/devel/ncurses +.endif + +post-patch: +.if ${OSVERSION} < 602107 || (${OSVERSION} > 700000 && ${OSVERSION} < 700033) ${MKDIR} ${WRKDIR}/ncursesw ${LN} -s ${LOCALBASE}/include/ncurses/ncurses.h ${WRKDIR}/ncursesw/ncurses.h +.else + @${REINPLACE_CMD} -e 's,ncursesw/ncurses.h,ncurses.h,' \ + ${WRKSRC}/charset.h ${WRKSRC}/screen.c +.endif .include <bsd.port.post.mk> |