4e259be86e
- New menu-based ncurses interface, replacing function keys. - Additional support for other languages. - Miscellaneous improvements all over.
32 lines
693 B
Makefile
32 lines
693 B
Makefile
# $OpenBSD: Makefile,v 1.8 2003/10/03 20:51:39 naddy Exp $
|
|
|
|
COMMENT= "interactive typing tutor"
|
|
|
|
DISTNAME= gtypist-2.7
|
|
CATEGORIES= education
|
|
HOMEPAGE= http://www.gnu.org/software/gtypist/
|
|
|
|
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=gtypist/}
|
|
|
|
# work around an optimizer bug in gcc 2.95
|
|
.if ${MACHINE_ARCH} == "sparc64"
|
|
PATCH_LIST= patch-* gcc-patch-*
|
|
.endif
|
|
|
|
MODULES= gettext
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib" \
|
|
MAKEINFO="makeinfo --no-split"
|
|
|
|
.include <bsd.port.mk>
|