Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 31 Jan 2003 08:30:21 -0800 (PST)
From:      "Li-lun Wang (Leland Wang)" <llwang@infor.org>
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/47706: New port: misc/dvorak7min an ncurses-based Dvorak typing tutor
Message-ID:  <200301311630.h0VGULBP085684@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/47706; it has been noted by GNATS.

From: "Li-lun Wang (Leland Wang)" <llwang@infor.org>
To: Simon 'portlint' Schubert <corecode@corecode.ath.cx>
Cc: freebsd-gnats-submit@FreeBSD.org
Subject: Re: ports/47706: New port: misc/dvorak7min an ncurses-based Dvorak typing tutor
Date: Sat, 1 Feb 2003 00:28:59 +0800

 --bg08WKrSYDhXBjb5
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 Content-Transfer-Encoding: quoted-printable
 
 On Fri, Jan 31, 2003 at 02:09:01PM +0100, Simon 'portlint' Schubert wrote:
 > if you got specific questions, don't hesitate to contact me (privately
 > if you want)
 
 Ok. I've managed to honor your comments in the following archive:
 
 # This is a shell archive.  Save it in a file, remove anything before
 # this line, and then unpack it by entering "sh file".  Note, it may
 # create directories; files and directories will be owned by you and
 # have default permissions.
 #
 # This archive contains:
 #
 #	dvorak7min
 #	dvorak7min/pkg-plist
 #	dvorak7min/pkg-descr
 #	dvorak7min/pkg-comment
 #	dvorak7min/distinfo
 #	dvorak7min/Makefile
 #	dvorak7min/files
 #	dvorak7min/files/patch-Makefile
 #	dvorak7min/files/patch_dir-5
 #	dvorak7min/files/patch_dir-5/patch-Makefile
 #
 echo c - dvorak7min
 mkdir -p dvorak7min > /dev/null 2>&1
 echo x - dvorak7min/pkg-plist
 sed 's/^X//' >dvorak7min/pkg-plist << 'END-of-dvorak7min/pkg-plist'
 Xbin/dvorak7min
 END-of-dvorak7min/pkg-plist
 echo x - dvorak7min/pkg-descr
 sed 's/^X//' >dvorak7min/pkg-descr << 'END-of-dvorak7min/pkg-descr'
 XDvorak7min is an ncurses based dvorak typing tutor for those of you
 Xtrying to get fluent in this keyboard layout. It features well chosen
 Xlessons, color for easy visual feedback, and a real time characters per
 Xsecond display. It's called 7min because it originally was a personal
 Xhack written in 7 min.
 X
 XWWW:	http://lightside.eresmas.com/
 X	http://freshmeat.net/projects/dvorak7mintutor/
 X
 XAuthor:	Ragnar Hojland <ragnar@ragnar-hojland.com>
 END-of-dvorak7min/pkg-descr
 echo x - dvorak7min/pkg-comment
 sed 's/^X//' >dvorak7min/pkg-comment << 'END-of-dvorak7min/pkg-comment'
 XAn ncurses-based Dvorak typing tutor
 END-of-dvorak7min/pkg-comment
 echo x - dvorak7min/distinfo
 sed 's/^X//' >dvorak7min/distinfo << 'END-of-dvorak7min/distinfo'
 XMD5 (dvorak7min-1.6.tar.gz) =3D b8abfa4151e2f4e7d7785c111fe036c4
 END-of-dvorak7min/distinfo
 echo x - dvorak7min/Makefile
 sed 's/^X//' >dvorak7min/Makefile << 'END-of-dvorak7min/Makefile'
 X# New ports collection makefile for:	dvorak7min
 X# Date created:			31 Jan 2003
 X# Whom:				Leland Wang <llwang@infor.org>
 X#
 X# $FreeBSD$
 X#
 X
 XPORTNAME=3D	dvorak7min
 XPORTVERSION=3D	1.6
 XCATEGORIES=3D	misc
 XMASTER_SITES=3D	http://lightside.eresmas.com/
 X
 XMAINTAINER=3D	llwang@infor.org
 X
 X.include <bsd.port.pre.mk>
 X.if ${OSVERSION} < 500041
 XLIB_DEPENDS=3D	gnugetopt.1:${PORTSDIR}/devel/libgnugetopt
 X.endif
 X
 X.if ${OSVERSION} >=3D 500041
 XPATCHDIR=3D	${FILESDIR}/patch_dir-5
 X.endif
 X
 Xpre-build:
 X	@cd ${WRKSRC} ; ${MAKE} clean
 X.include <bsd.port.post.mk>
 END-of-dvorak7min/Makefile
 echo c - dvorak7min/files
 mkdir -p dvorak7min/files > /dev/null 2>&1
 echo x - dvorak7min/files/patch-Makefile
 sed 's/^X//' >dvorak7min/files/patch-Makefile << 'END-of-dvorak7min/files/p=
 atch-Makefile'
 X--- Makefile.orig	Sat May 29 01:14:23 1999
 X+++ Makefile	Fri Jan 31 23:31:54 2003
 X@@ -1,4 +1,4 @@
 X-INSTALL =3D /usr/local/games/bin
 X+INSTALL =3D ${PREFIX}/bin
 X=20
 X # Uncomment these lines if you want to change the defaults to something e=
 lse
 X=20
 X@@ -16,11 +16,11 @@
 X=20
 X #CC      =3D gcc
 X PROF    =3D -g0 -O2
 X-CFLAGS  =3D $(PROF) -Wall \
 X+CFLAGS  +=3D -Wall -I${LOCALBASE}/include \
 X 	$(PRETTINESS) $(NASTINESS) $(BEEPS) $(FLASHES) $(COLORS) \
 X 	$(LIMIT_LENGTH)
 X-LDFLAGS =3D $(PROF)
 X-LIBS    =3D -lncurses
 X+LDFLAGS +=3D -L${LOCALBASE}/lib
 X+LIBS    =3D -lncurses -lgnugetopt
 X=20
 X OBJECTS =3D dvorak7min.o lessons.o
 X HEADERS =3D lessons.h
 END-of-dvorak7min/files/patch-Makefile
 echo c - dvorak7min/files/patch_dir-5
 mkdir -p dvorak7min/files/patch_dir-5 > /dev/null 2>&1
 echo x - dvorak7min/files/patch_dir-5/patch-Makefile
 sed 's/^X//' >dvorak7min/files/patch_dir-5/patch-Makefile << 'END-of-dvorak=
 7min/files/patch_dir-5/patch-Makefile'
 X--- Makefile.orig	Sat May 29 01:14:23 1999
 X+++ Makefile	Fri Jan 31 23:31:54 2003
 X@@ -1,4 +1,4 @@
 X-INSTALL =3D /usr/local/games/bin
 X+INSTALL =3D ${PREFIX}/bin
 X=20
 X # Uncomment these lines if you want to change the defaults to something e=
 lse
 X=20
 X@@ -16,11 +16,11 @@
 X=20
 X #CC      =3D gcc
 X PROF    =3D -g0 -O2
 X-CFLAGS  =3D $(PROF) -Wall \
 X+CFLAGS  +=3D -Wall \
 X 	$(PRETTINESS) $(NASTINESS) $(BEEPS) $(FLASHES) $(COLORS) \
 X 	$(LIMIT_LENGTH)
 X-LDFLAGS =3D $(PROF)
 X+LDFLAGS ?=3D $(PROF)
 X LIBS    =3D -lncurses
 X=20
 X OBJECTS =3D dvorak7min.o lessons.o
 X HEADERS =3D lessons.h
 END-of-dvorak7min/files/patch_dir-5/patch-Makefile
 exit
 
 
 
 --=20
  /-------\      /-\     /--------\
  \--\ /--/      | |     \--\ /---/
     | |    /----/ \----\/--/ \---\
   /-/ \-\  \----/ /----/\--\ /---/
   \-\ /-/      /  \     /--/ \---\
     | |       / /\ \    \--\ /---/ /\
 /---/ \---\/-/ /  \ \---\  | \----/ |
 \---------/\--/    \----/  \--------/
   e-mail address: llwang@infor.org
 
 --bg08WKrSYDhXBjb5
 Content-Type: application/pgp-signature
 Content-Disposition: inline
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.0.6 (FreeBSD)
 
 iD8DBQE+OqRLCQM7t5B2mhARAo6mAJ48+WmvLIWyTNpMf47rP+Q3ehh6/wCeK7NN
 EZHJOiI51X19Ar0Md89wDmU=
 =+TLT
 -----END PGP SIGNATURE-----
 
 --bg08WKrSYDhXBjb5--

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports-bugs" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200301311630.h0VGULBP085684>