diff options
author | itojun <itojun@FreeBSD.org> | 1998-10-21 00:41:49 +0000 |
---|---|---|
committer | itojun <itojun@FreeBSD.org> | 1998-10-21 00:41:49 +0000 |
commit | b4e8662def0ac49b4333760bb23f0126696922fa (patch) | |
tree | 97b8837c28a8bd9d8eef52de821aa7bd9ab09556 /misc/crosspad/Makefile | |
parent | 1ca44d39d6b0051948069b0ee075768840af07cd (diff) | |
download | FreeBSD-ports-b4e8662def0ac49b4333760bb23f0126696922fa.zip FreeBSD-ports-b4e8662def0ac49b4333760bb23f0126696922fa.tar.gz |
import misc/crosspad, which is:
This package contains following two utilities:
padload - crosspad downloder
crosspad2ps - crosspad -> postscript converter
more information on CrossPad digitizing notepad: http://www.cross-pcg.com/
Submitted by: Jun-ichiro Itoh <itojun@itojun.org>
Diffstat (limited to 'misc/crosspad/Makefile')
-rw-r--r-- | misc/crosspad/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/misc/crosspad/Makefile b/misc/crosspad/Makefile new file mode 100644 index 0000000..f79814f --- /dev/null +++ b/misc/crosspad/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: crosspad +# Version required: 981015a +# Date created: 23 September 1998 +# Whom: itojun@itojun.org +# +# $Id: Makefile,v 1.6 1998/09/14 06:38:04 itojun Exp $ +# + +DISTNAME= crosspad-981015a +CATEGORIES= misc +MASTER_SITES= ftp://ftp.itojun.org/pub/misc/ + +MAINTAINER= itojun@itojun.org + +GNU_CONFIGURE= yes +WRKSRC= ${WRKDIR}/crosspad/build + +MAN1= crosspad2ps.1 crosspad2eps.1 crosspad2tgif.1 crosspad2idraw.1 \ + padload.1 + +DOCS= PROTOCOL README.english README.japanese + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/crosspad + for i in $(DOCS); do \ + ${INSTALL_DATA} ${WRKSRC}/../$$i ${PREFIX}/share/doc/crosspad; \ + done +.endif + +.include <bsd.port.mk> |