pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/aspic Add aspic 1.05



details:   https://anonhg.NetBSD.org/pkgsrc/rev/d090bc5ec24c
branches:  trunk
changeset: 309319:d090bc5ec24c
user:      prlw1 <prlw1%pkgsrc.org@localhost>
date:      Fri Jun 15 13:15:26 2018 +0000

description:
Add aspic 1.05

Aspic is a program that processes a textual description of a line
art graphic, and converts it into a form that is suitable for
inclusion in another document. The default output format is
Encapsulated PostScript, but there is also support for Scalable
Vector Graphics (SVG), and there is legacy support for the SGCAL
text processor.

diffstat:

 textproc/aspic/DESCR                     |   6 ++++++
 textproc/aspic/Makefile                  |  18 ++++++++++++++++++
 textproc/aspic/PLIST                     |   3 +++
 textproc/aspic/distinfo                  |   7 +++++++
 textproc/aspic/patches/patch-Makefile.in |  30 ++++++++++++++++++++++++++++++
 5 files changed, 64 insertions(+), 0 deletions(-)

diffs (84 lines):

diff -r 181c8ef3ab5f -r d090bc5ec24c textproc/aspic/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/aspic/DESCR      Fri Jun 15 13:15:26 2018 +0000
@@ -0,0 +1,6 @@
+Aspic is a program that processes a textual description of a line
+art graphic, and converts it into a form that is suitable for
+inclusion in another document. The default output format is
+Encapsulated PostScript, but there is also support for Scalable
+Vector Graphics (SVG), and there is legacy support for the SGCAL
+text processor.
diff -r 181c8ef3ab5f -r d090bc5ec24c textproc/aspic/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/aspic/Makefile   Fri Jun 15 13:15:26 2018 +0000
@@ -0,0 +1,18 @@
+# $NetBSD: Makefile,v 1.1 2018/06/15 13:15:26 prlw1 Exp $
+
+DISTNAME=      aspic-1.05
+CATEGORIES=    textproc
+MASTER_SITES=  ftp://ftp.csx.cam.ac.uk/pub/software/wordprocessing/unix/aspic/
+
+MAINTAINER=    prlw1%cam.ac.uk@localhost
+HOMEPAGE=      ftp://ftp.csx.cam.ac.uk/pub/software/wordprocessing/unix/aspic/
+COMMENT=       Textual description of line art to EPS or SVG converter
+LICENSE=       gnu-gpl-v2
+
+GNU_CONFIGURE= yes
+
+MAKE_ENV+=     SHELL=${SH}
+
+BUILD_TARGET=  build
+
+.include "../../mk/bsd.pkg.mk"
diff -r 181c8ef3ab5f -r d090bc5ec24c textproc/aspic/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/aspic/PLIST      Fri Jun 15 13:15:26 2018 +0000
@@ -0,0 +1,3 @@
+@comment $NetBSD: PLIST,v 1.1 2018/06/15 13:15:26 prlw1 Exp $
+bin/aspic
+man/man1/aspic.1
diff -r 181c8ef3ab5f -r d090bc5ec24c textproc/aspic/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/aspic/distinfo   Fri Jun 15 13:15:26 2018 +0000
@@ -0,0 +1,7 @@
+$NetBSD: distinfo,v 1.1 2018/06/15 13:15:26 prlw1 Exp $
+
+SHA1 (aspic-1.05.tar.gz) = d7e83fcd0a0322e2fcb263485b3f82f6bb95e4d9
+RMD160 (aspic-1.05.tar.gz) = dc7d7767b81ca4e78277390651f2407eb2aff1bb
+SHA512 (aspic-1.05.tar.gz) = 3a3757a8f82dc4faa89441cedfe99ebfb5375457204bff3dd220c643ba3bb6e3c63872f308db34a4941ea83dbf6101b5594af0abef21fae349a8c1152d3c9079
+Size (aspic-1.05.tar.gz) = 246999 bytes
+SHA1 (patch-Makefile.in) = a38027c30132b528d64cc613ac8d078e9fd8814c
diff -r 181c8ef3ab5f -r d090bc5ec24c textproc/aspic/patches/patch-Makefile.in
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/aspic/patches/patch-Makefile.in  Fri Jun 15 13:15:26 2018 +0000
@@ -0,0 +1,30 @@
+$NetBSD: patch-Makefile.in,v 1.1 2018/06/15 13:15:26 prlw1 Exp $
+
+Add destdir support.
+
+--- Makefile.in.orig   2011-03-04 09:07:16.000000000 +0000
++++ Makefile.in
+@@ -14,7 +14,7 @@ INSTALL = @INSTALL@
+ INSTALL_DATA = @INSTALL_DATA@
+ 
+ BINDIR=@prefix@/bin
+-MANDIR=@prefix@/man
++MANDIR=@mandir@
+ 
+ # BINDIR is the directory in which the command is installed.
+ # MANDIR is the directory in which the man pages are installed.
+@@ -46,9 +46,9 @@ distclean:;     rm Makefile config.cache
+ test:; cd testing; ./RunTests
+ 
+ install:        build
+-              $(mkinstalldirs) $(BINDIR)
+-              $(mkinstalldirs) $(MANDIR)
+-              $(mkinstalldirs) $(MANDIR)/man1
+-              $(INSTALL) src/aspic $(BINDIR)/aspic
+-              $(INSTALL_DATA) doc/aspic.1 $(MANDIR)/man1
++              $(mkinstalldirs) $(DESTDIR)$(BINDIR)
++              $(mkinstalldirs) $(DESTDIR)$(MANDIR)
++              $(mkinstalldirs) $(DESTDIR)$(MANDIR)/man1
++              $(INSTALL) src/aspic $(DESTDIR)$(BINDIR)/aspic
++              $(INSTALL_DATA) doc/aspic.1 $(DESTDIR)$(MANDIR)/man1
+ # End



Home | Main Index | Thread Index | Old Index