pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc/aspic



Module Name:    pkgsrc
Committed By:   prlw1
Date:           Fri Jun 15 13:15:26 UTC 2018

Added Files:
        pkgsrc/textproc/aspic: DESCR Makefile PLIST distinfo
        pkgsrc/textproc/aspic/patches: patch-Makefile.in

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/aspic/DESCR \
    pkgsrc/textproc/aspic/Makefile pkgsrc/textproc/aspic/PLIST \
    pkgsrc/textproc/aspic/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/aspic/patches/patch-Makefile.in

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Added files:

Index: pkgsrc/textproc/aspic/DESCR
diff -u /dev/null pkgsrc/textproc/aspic/DESCR:1.1
--- /dev/null   Fri Jun 15 13:15:26 2018
+++ pkgsrc/textproc/aspic/DESCR Fri Jun 15 13:15:26 2018
@@ -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.
Index: pkgsrc/textproc/aspic/Makefile
diff -u /dev/null pkgsrc/textproc/aspic/Makefile:1.1
--- /dev/null   Fri Jun 15 13:15:26 2018
+++ pkgsrc/textproc/aspic/Makefile      Fri Jun 15 13:15:26 2018
@@ -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"
Index: pkgsrc/textproc/aspic/PLIST
diff -u /dev/null pkgsrc/textproc/aspic/PLIST:1.1
--- /dev/null   Fri Jun 15 13:15:26 2018
+++ pkgsrc/textproc/aspic/PLIST Fri Jun 15 13:15:26 2018
@@ -0,0 +1,3 @@
+@comment $NetBSD: PLIST,v 1.1 2018/06/15 13:15:26 prlw1 Exp $
+bin/aspic
+man/man1/aspic.1
Index: pkgsrc/textproc/aspic/distinfo
diff -u /dev/null pkgsrc/textproc/aspic/distinfo:1.1
--- /dev/null   Fri Jun 15 13:15:26 2018
+++ pkgsrc/textproc/aspic/distinfo      Fri Jun 15 13:15:26 2018
@@ -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

Index: pkgsrc/textproc/aspic/patches/patch-Makefile.in
diff -u /dev/null pkgsrc/textproc/aspic/patches/patch-Makefile.in:1.1
--- /dev/null   Fri Jun 15 13:15:26 2018
+++ pkgsrc/textproc/aspic/patches/patch-Makefile.in     Fri Jun 15 13:15:26 2018
@@ -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