diff options
author | billf <billf@FreeBSD.org> | 2000-07-31 04:36:48 +0800 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 2000-07-31 04:36:48 +0800 |
commit | 272300da4fa1b9c39961def872adf3eb7043e444 (patch) | |
tree | 2c8ec747a89bc3b861d0a3c0b13490b1d19b96c0 /audio/btc | |
parent | 2d4c81d09d9df4473bd3a0adf425f99ab31f717c (diff) | |
download | freebsd-ports-graphics-272300da4fa1b9c39961def872adf3eb7043e444.tar.gz freebsd-ports-graphics-272300da4fa1b9c39961def872adf3eb7043e444.tar.zst freebsd-ports-graphics-272300da4fa1b9c39961def872adf3eb7043e444.zip |
The Bass Tab Creator is a program designed to help create bass tablature.
It was originally created to facilitate the reproduction of tab published
in many music magazines and books. It takes as input a file consisting of
note information, and builds the tab staffs.
Diffstat (limited to 'audio/btc')
-rw-r--r-- | audio/btc/Makefile | 29 | ||||
-rw-r--r-- | audio/btc/distinfo | 1 | ||||
-rw-r--r-- | audio/btc/files/patch-aa | 11 | ||||
-rw-r--r-- | audio/btc/pkg-comment | 1 | ||||
-rw-r--r-- | audio/btc/pkg-descr | 6 | ||||
-rw-r--r-- | audio/btc/pkg-plist | 2 |
6 files changed, 50 insertions, 0 deletions
diff --git a/audio/btc/Makefile b/audio/btc/Makefile new file mode 100644 index 00000000000..0dcac2a57e6 --- /dev/null +++ b/audio/btc/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: btc +# Date created: 1 August 2000 +# Whom: Bill Fumerola <billf@chimesnet.com> +# +# $FreeBSD$ +# + +PORTNAME= btc +PORTVERSION= 258 +CATEGORIES= audio +MASTER_SITES= http://www.harmony-central.com/Bass/ +DISTNAME= ${PORTNAME}${PORTVERSION}${EXTRACT_SUFX} + +MAINTAINER= billf@FreeBSD.org + +WRKSRC= ${WRKDIR} + +do-build: + + ${CC} ${CFLAGS} -o ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.c + +do-install: + + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${MKDIR} ${PREFIX}/share/doc/${PORTNAME} + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.doc \ + ${PREFIX}/share/doc/${PORTNAME} + +.include <bsd.port.mk> diff --git a/audio/btc/distinfo b/audio/btc/distinfo new file mode 100644 index 00000000000..6e66b853ee8 --- /dev/null +++ b/audio/btc/distinfo @@ -0,0 +1 @@ +MD5 (btc258.tar.gz) = d27e9fdd51dcd50a11d06e5de95c620e diff --git a/audio/btc/files/patch-aa b/audio/btc/files/patch-aa new file mode 100644 index 00000000000..ba07653b2f6 --- /dev/null +++ b/audio/btc/files/patch-aa @@ -0,0 +1,11 @@ +--- btc.c.orig Sun Jul 30 15:55:16 2000 ++++ btc.c Sun Jul 30 15:56:41 2000 +@@ -1583,7 +1583,7 @@ + + #if FONT == NO_CUSTOM_FONT + fprintf( outfile, "\ +- || Capitol notes are dotted notes (1.5 x duration)\n\ ++ || Capital notes are dotted notes (1.5 x duration)\n\ + ||\n" ); + #endif + diff --git a/audio/btc/pkg-comment b/audio/btc/pkg-comment new file mode 100644 index 00000000000..2d14c07291c --- /dev/null +++ b/audio/btc/pkg-comment @@ -0,0 +1 @@ +A tool for creating bass tablature diff --git a/audio/btc/pkg-descr b/audio/btc/pkg-descr new file mode 100644 index 00000000000..87c800ce1cf --- /dev/null +++ b/audio/btc/pkg-descr @@ -0,0 +1,6 @@ +The Bass Tab Creator is a program designed to help create bass tablature. +It was originally created to facilitate the reproduction of tab published +in many music magazines and books. It takes as input a file consisting of +note information, and builds the tab staffs. + +-- Bill Fumerola <billf@FreeBSD.org> diff --git a/audio/btc/pkg-plist b/audio/btc/pkg-plist new file mode 100644 index 00000000000..bd9475c5e53 --- /dev/null +++ b/audio/btc/pkg-plist @@ -0,0 +1,2 @@ +bin/btc +share/doc/btc/btc.doc |