pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/print/abc2ps Initial import of abc2ps-1.3.3, a music t...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/b80e4a1c61ad
branches:  trunk
changeset: 510626:b80e4a1c61ad
user:      ben <ben%pkgsrc.org@localhost>
date:      Sat Apr 01 14:32:48 2006 +0000

description:
Initial import of abc2ps-1.3.3, a music typesetting program for abc.

Abc2ps is a typesetting program for abc. It reads a file containing abc
code and outputs the music to another file in Postscript. The music can
then displayed (i.e. using ghostview) or printed on a Postscript
printer. The program is written in C and runs on most systems which have
a C compiler.

diffstat:

 print/abc2ps/DESCR            |   5 +++++
 print/abc2ps/Makefile         |  32 ++++++++++++++++++++++++++++++++
 print/abc2ps/PLIST            |  24 ++++++++++++++++++++++++
 print/abc2ps/distinfo         |   6 ++++++
 print/abc2ps/patches/patch-aa |  13 +++++++++++++
 5 files changed, 80 insertions(+), 0 deletions(-)

diffs (100 lines):

diff -r 8097054326db -r b80e4a1c61ad print/abc2ps/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/print/abc2ps/DESCR        Sat Apr 01 14:32:48 2006 +0000
@@ -0,0 +1,5 @@
+Abc2ps is a typesetting program for abc. It reads a file containing abc
+code and outputs the music to another file in Postscript. The music can
+then displayed (i.e. using ghostview) or printed on a Postscript
+printer. The program is written in C and runs on most systems which have
+a C compiler.
diff -r 8097054326db -r b80e4a1c61ad print/abc2ps/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/print/abc2ps/Makefile     Sat Apr 01 14:32:48 2006 +0000
@@ -0,0 +1,32 @@
+# $NetBSD: Makefile,v 1.1.1.1 2006/04/01 14:32:48 ben Exp $
+#
+
+DISTNAME=      ABC2PS-${ABC2PSVER}
+PKGNAME=       abc2ps-${ABC2PSVER}
+CATEGORIES=    print
+MASTER_SITES=  http://www.ihp-ffo.de/~msm/abc_src/
+EXTRACT_SUFX=  .tar.Z
+WRKSRC=                ${WRKDIR}
+
+MAINTAINER=    ben%NetBSD.org@localhost
+HOMEPAGE=      http://www.ihp-ffo.de/~msm/
+COMMENT=       Music typesetting program for abc
+
+ABC2PSVER=     1.3.3
+
+do-build:
+       cd ${WRKSRC} && ${CC} -o abc2ps abc2ps.c
+
+do-install:
+       ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/abc2ps
+       ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/abc2ps
+       ${INSTALL_PROGRAM} ${WRKSRC}/abc2ps ${PREFIX}/bin
+       cd ${WRKSRC} && ${INSTALL_DATA} Changes License New.Features \
+               ReadMe.abc2ps layout.txt ${PREFIX}/share/doc/abc2ps/
+       cd ${WRKSRC} && ${INSTALL_DATA} bach.abc blue_boy_bass.abc \
+               bran5.abc celloprelude.abc desafinado.abc fbook.fmt \
+               fonts.fmt journey.abc landscape.fmt mtunes1.abc \
+               newfeatures.abc sample.abc scotland.abc trio.abc \
+               voices.abc ${PREFIX}/share/examples/abc2ps/
+
+.include "../../mk/bsd.pkg.mk"
diff -r 8097054326db -r b80e4a1c61ad print/abc2ps/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/print/abc2ps/PLIST        Sat Apr 01 14:32:48 2006 +0000
@@ -0,0 +1,24 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2006/04/01 14:32:48 ben Exp $
+bin/abc2ps
+share/doc/abc2ps/Changes
+share/doc/abc2ps/License
+share/doc/abc2ps/New.Features
+share/doc/abc2ps/ReadMe.abc2ps
+share/doc/abc2ps/layout.txt
+share/examples/abc2ps/bach.abc
+share/examples/abc2ps/blue_boy_bass.abc
+share/examples/abc2ps/bran5.abc
+share/examples/abc2ps/celloprelude.abc
+share/examples/abc2ps/desafinado.abc
+share/examples/abc2ps/fbook.fmt
+share/examples/abc2ps/fonts.fmt
+share/examples/abc2ps/journey.abc
+share/examples/abc2ps/landscape.fmt
+share/examples/abc2ps/mtunes1.abc
+share/examples/abc2ps/newfeatures.abc
+share/examples/abc2ps/sample.abc
+share/examples/abc2ps/scotland.abc
+share/examples/abc2ps/trio.abc
+share/examples/abc2ps/voices.abc
+@dirrm share/doc/abc2ps
+@dirrm share/examples/abc2ps
diff -r 8097054326db -r b80e4a1c61ad print/abc2ps/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/print/abc2ps/distinfo     Sat Apr 01 14:32:48 2006 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2006/04/01 14:32:48 ben Exp $
+
+SHA1 (ABC2PS-1.3.3.tar.Z) = 0596e3c1c357767407d984b33103549b70009d93
+RMD160 (ABC2PS-1.3.3.tar.Z) = bd73aee0443e34e95377b6f3b036e3f83cd63b1c
+Size (ABC2PS-1.3.3.tar.Z) = 186611 bytes
+SHA1 (patch-aa) = 8f128d6ea0ef91cbe67126febf1d7959e63604f7
diff -r 8097054326db -r b80e4a1c61ad print/abc2ps/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/print/abc2ps/patches/patch-aa     Sat Apr 01 14:32:48 2006 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1.1.1 2006/04/01 14:32:48 ben Exp $
+
+--- buffer.h.orig      1999-03-17 09:49:21.000000000 -0800
++++ buffer.h
+@@ -103,7 +103,7 @@ void write_index_entry ()
+   }
+ 
+   
+-  if (strlen(info.comp)) fprintf (findex, "(   - %s) S\n", info.comp);
++  if (strlen(info.comp[0])) fprintf (findex, "(   - %s) S\n", info.comp[0]);
+   
+   if (cfmt.withxrefs) fprintf (findex, "(   [%s]) S\n", info.xref);
+ 



Home | Main Index | Thread Index | Old Index