diff options
Diffstat (limited to 'misc/dvorakng/Makefile')
-rw-r--r-- | misc/dvorakng/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/misc/dvorakng/Makefile b/misc/dvorakng/Makefile new file mode 100644 index 0000000..697f069 --- /dev/null +++ b/misc/dvorakng/Makefile @@ -0,0 +1,34 @@ +# ex:ts=8 +# Ports collection makefile for: dvorakNG +# Date created: Mar 26, 2003 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= dvorakng +PORTVERSION= 0.5.0 +CATEGORIES= misc +MASTER_SITES= http://www.free.of.pl/n/nopik/ + +MAINTAINER= ports@FreeBSD.org +COMMENT= A Dvorak typing tutor + +USE_BZIP2= yes +WRKSRC= ${WRKDIR}/${PORTNAME} + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500041 +LIB_DEPENDS= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt +MAKE_ARGS= PROF="-I${LOCALBASE}/include ${CFLAGS}" \ + LDFLAGS="-L${LOCALBASE}/lib" \ + LIBS="-lncurses -lgnugetopt" +.else +MAKE_ARGS= PROF="${CFLAGS}" +.endif + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/dvorakng ${PREFIX}/bin + +.include <bsd.port.post.mk> |