diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2007-10-03 23:00:29 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2007-10-03 23:00:29 +0000 |
commit | 9aaccaed7d0e000844966e72551a5375ac718636 (patch) | |
tree | 7a73157d6acb1999d85f31a3d7393c7d9af5e39f /editors | |
parent | bf149172eb4bde1861d3e54d83615ff8c27b0925 (diff) |
Notes
Diffstat (limited to 'editors')
-rw-r--r-- | editors/biew/Makefile | 6 | ||||
-rw-r--r-- | editors/mp/Makefile | 6 | ||||
-rw-r--r-- | editors/ne/Makefile | 8 |
3 files changed, 2 insertions, 18 deletions
diff --git a/editors/biew/Makefile b/editors/biew/Makefile index 8a31b48be1b9..1344f9e80b86 100644 --- a/editors/biew/Makefile +++ b/editors/biew/Makefile @@ -34,12 +34,6 @@ PLIST_DIRS= share/biew .include <bsd.port.pre.mk> -.if ${OSVERSION} < 400010 -LIB_DEPENDS= ncurses.5:${PORTSDIR}/devel/ncurses -HOST_CFLAGS+= -D__FreeBSD_version=${OSVERSION} -I${LOCALBASE}/include -HOST_LD+= -L${LOCALBASE}/lib -.endif - OST_CFLAGS= ${CFLAGS} -DPREFIX="\'\"${PREFIX}\"\'" MAKEFILE= makefile diff --git a/editors/mp/Makefile b/editors/mp/Makefile index a3d842456739..68392de7c198 100644 --- a/editors/mp/Makefile +++ b/editors/mp/Makefile @@ -27,11 +27,7 @@ MAN1= mp.1 .include <bsd.port.pre.mk> -.if defined(WITH_CURSES) -.if ${OSVERSION} < 400010 -LIB_DEPENDS+= ncurses.5:${PORTSDIR}/devel/ncurses -.endif -.else +.if !defined(WITH_CURSES) CONFIGURE_ARGS+= --without-curses .endif diff --git a/editors/ne/Makefile b/editors/ne/Makefile index 859d5dbefd94..cb9fd7b20203 100644 --- a/editors/ne/Makefile +++ b/editors/ne/Makefile @@ -23,12 +23,6 @@ ALL_TARGET= ne MAKE_ARGS= CFLAGS="${CFLAGS} -DNOWCHAR" CC="${CC}" \ GLOBALDIR="${DATADIR}" -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 400010 -LIB_DEPENDS+= ncurses:${PORTSDIR}/devel/ncurses -.endif - WRKSRC= ${WRKDIR}/${DISTNAME}/src MAN1= ne.1 @@ -48,4 +42,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC:S/src//}doc/ne.txt ${DOCSDIR} .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> |