2a288a66b1
August is a very simple, free HTML editor for the UNIX platform. It is a non-WYSIWYG editor like Aswedit or Hotdog. It has buttons to insert standard HTML tags and other common simple text editor commands. August is written with the Tcl/TK scripting language and graphical toolkit. It's distributed as a single script, which means that if you know Tcl/Tk you can very easily customize August yourself. (This is old and out-dated but I am loking for something that will be real easy for children to use.)
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2006/10/20 20:25:04 reed Exp $
|
|
#
|
|
|
|
DISTNAME= august0.63b.src
|
|
PKGNAME= august-0.63b
|
|
CATEGORIES= www editors
|
|
MASTER_SITES= http://www.bostream.nu/johanb/august/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.bostream.nu/johanb/august/
|
|
COMMENT= Simple Tk-based HTML editor
|
|
|
|
NO_BUILD= yes
|
|
USE_LANGUAGES= # none
|
|
|
|
USE_TOOLS+= wish:run
|
|
|
|
INSTALLATION_DIRS= bin share/doc/august
|
|
|
|
# needs Tcl/Tk version 8.0 or better
|
|
REPLACE_INTERPRETER+= wish
|
|
REPLACE.wish.old= /usr/bin/wish
|
|
REPLACE.wish.new= ${WISH}
|
|
REPLACE_FILES.wish= august
|
|
|
|
# ImageMagick and Weblint is also recommended (but not necessary).
|
|
# August uses ImageMagick commands to determine width and
|
|
# height of images, and Weblint to check html syntax.
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/august ${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/license.txt ${PREFIX}/share/doc/august/
|
|
${INSTALL_MAN} ${WRKSRC}/readme.txt ${PREFIX}/share/doc/august/
|
|
${INSTALL_MAN} ${WRKSRC}/specchars.txt ${PREFIX}/share/doc/august/
|
|
${INSTALL_MAN} ${WRKSRC}/keyname.tcl ${PREFIX}/share/doc/august/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|