Artist is an Emacs lisp package that allows you to draw lines,
rectangles and ellipses by using your mouse and/or keyboard. The shapes are made up with the ascii characters |, -, / and \. Provided by Hiramatsu Yoshifumi in pkg/13799
This commit is contained in:
parent
aa1ea853d0
commit
74cbaefee8
5 changed files with 56 additions and 0 deletions
3
graphics/artist/DESCR
Normal file
3
graphics/artist/DESCR
Normal file
|
@ -0,0 +1,3 @@
|
|||
Artist is an Emacs lisp package that allows you to draw lines,
|
||||
rectangles and ellipses by using your mouse and/or keyboard. The
|
||||
shapes are made up with the ascii characters |, -, / and \.
|
25
graphics/artist/Makefile
Normal file
25
graphics/artist/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2001/11/29 08:59:48 martti Exp $
|
||||
#
|
||||
|
||||
DISTNAME= artist-1.2.4
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= http://www.lysator.liu.se/~tab/artist/
|
||||
|
||||
MAINTAINER= packages@netbsd.org
|
||||
HOMEPAGE= http://www.lysator.liu.se/~tab/artist/
|
||||
COMMENT= Elisp drawing package with mouse and keyboard support
|
||||
|
||||
DEPENDS+= emacs>=19.29:../../editors/emacs
|
||||
|
||||
GNU_CONFIGURE= YES
|
||||
|
||||
DOCS= BUGS COPYING ChangeLog INSTALL README TODO
|
||||
DOCDIR= ${PREFIX}/share/doc/artist
|
||||
|
||||
post-install:
|
||||
${INSTALL_DATA_DIR} ${DOCDIR}
|
||||
.for f in ${DOCS}
|
||||
${INSTALL_DATA} ${WRKSRC}/$f ${DOCDIR}
|
||||
.endfor
|
||||
|
||||
.include "../../mk/bsd.pkg.mk"
|
11
graphics/artist/PLIST
Normal file
11
graphics/artist/PLIST
Normal file
|
@ -0,0 +1,11 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2001/11/29 08:59:48 martti Exp $
|
||||
share/emacs/site-lisp/artist/artist.el
|
||||
share/emacs/site-lisp/artist/artist.elc
|
||||
share/doc/artist/BUGS
|
||||
share/doc/artist/COPYING
|
||||
share/doc/artist/ChangeLog
|
||||
share/doc/artist/INSTALL
|
||||
share/doc/artist/README
|
||||
share/doc/artist/TODO
|
||||
@dirrm share/emacs/site-lisp/artist
|
||||
@dirrm share/doc/artist
|
5
graphics/artist/distinfo
Normal file
5
graphics/artist/distinfo
Normal file
|
@ -0,0 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2001/11/29 08:59:48 martti Exp $
|
||||
|
||||
SHA1 (artist-1.2.4.tar.gz) = af5bebcc769cb6ad58e3a9b7a925fd9925d1061d
|
||||
Size (artist-1.2.4.tar.gz) = 65715 bytes
|
||||
SHA1 (patch-aa) = 14ed347849a2126c92eb1ddc897d6625dde8fa45
|
12
graphics/artist/patches/patch-aa
Normal file
12
graphics/artist/patches/patch-aa
Normal file
|
@ -0,0 +1,12 @@
|
|||
$NetBSD: patch-aa,v 1.1.1.1 2001/11/29 08:59:48 martti Exp $
|
||||
--- Makefile.in.orig Tue Aug 28 00:17:46 2001
|
||||
+++ Makefile.in Tue Aug 28 00:17:42 2001
|
||||
@@ -11,7 +11,7 @@
|
||||
datadir = $(prefix)/share
|
||||
|
||||
# Where to put the .el and .elc files
|
||||
-lispdir=$(datadir)/emacs/site-lisp
|
||||
+lispdir=$(datadir)/emacs/site-lisp/artist
|
||||
|
||||
# Installation command
|
||||
INSTALL = @INSTALL@
|
Loading…
Reference in a new issue