diff options
author | steve <steve@FreeBSD.org> | 1998-07-26 05:36:10 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1998-07-26 05:36:10 +0800 |
commit | 4be9b6cef5f39823481297744a72055e0f64ad51 (patch) | |
tree | 5fb5cc638f7cbc8de7bcee203931cf6b272c3917 /audio/play | |
parent | 3ec6774a2302954b727e8f3d5c21c96ab1745a71 (diff) | |
download | freebsd-ports-gnome-4be9b6cef5f39823481297744a72055e0f64ad51.tar.gz freebsd-ports-gnome-4be9b6cef5f39823481297744a72055e0f64ad51.tar.zst freebsd-ports-gnome-4be9b6cef5f39823481297744a72055e0f64ad51.zip |
A simple audio file player. Moved from ports/japanese.
Diffstat (limited to 'audio/play')
-rw-r--r-- | audio/play/Makefile | 18 | ||||
-rw-r--r-- | audio/play/distinfo | 1 | ||||
-rw-r--r-- | audio/play/files/patch-aa | 12 | ||||
-rw-r--r-- | audio/play/files/patch-ab | 15 | ||||
-rw-r--r-- | audio/play/files/patch-ac | 13 | ||||
-rw-r--r-- | audio/play/pkg-comment | 1 | ||||
-rw-r--r-- | audio/play/pkg-descr | 2 | ||||
-rw-r--r-- | audio/play/pkg-plist | 2 |
8 files changed, 64 insertions, 0 deletions
diff --git a/audio/play/Makefile b/audio/play/Makefile new file mode 100644 index 000000000000..d15c6c11ac4a --- /dev/null +++ b/audio/play/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: play +# Version required: 1.0 +# Date created: 20 May 1998 +# Whom: Masanori Kiriake <seiken@nbs.co.jp> +# +# $Id: Makefile,v 1.1.1.1 1998/07/20 04:03:16 steve Exp $ +# + +DISTNAME= play-1.0 +CATEGORIES= audio +MASTER_SITES= ftp://jaz.jp.FreeBSD.org/pub/incoming/PUT-here/ + +MAINTAINER= seiken@nbs.co.jp + +MANLANG= ja +MAN1= play.1 +MANCOMPRESSED = YES +.include <bsd.port.mk> diff --git a/audio/play/distinfo b/audio/play/distinfo new file mode 100644 index 000000000000..9f04e07e5d71 --- /dev/null +++ b/audio/play/distinfo @@ -0,0 +1 @@ +MD5 (play-1.0.tar.gz) = c9a14a7647d58d1cbdbecc281df7a051 diff --git a/audio/play/files/patch-aa b/audio/play/files/patch-aa new file mode 100644 index 000000000000..6f11414e8534 --- /dev/null +++ b/audio/play/files/patch-aa @@ -0,0 +1,12 @@ +*** play.c.orig Wed May 20 11:42:42 1998 +--- play.c Wed May 20 13:21:15 1998 +*************** +*** 4,9 **** +--- 4,10 ---- + + #include <stdio.h> + #include <stdlib.h> ++ #include <unistd.h> + #include <fcntl.h> + #include <err.h> + #include <signal.h> diff --git a/audio/play/files/patch-ab b/audio/play/files/patch-ab new file mode 100644 index 000000000000..0b3574323d0e --- /dev/null +++ b/audio/play/files/patch-ab @@ -0,0 +1,15 @@ +*** Makefile.orig Wed Mar 26 00:29:45 1997 +--- Makefile Wed May 20 13:27:36 1998 +*************** +*** 10,14 **** + CFLAGS = -O + DESTDIR = /usr/local + BINDIR = /bin +! MANDIR = /man/ja_JP.EUC/man + +--- 10,14 ---- + CFLAGS = -O + DESTDIR = /usr/local + BINDIR = /bin +! MANDIR = /man/ja/man + diff --git a/audio/play/files/patch-ac b/audio/play/files/patch-ac new file mode 100644 index 000000000000..b2fbef870046 --- /dev/null +++ b/audio/play/files/patch-ac @@ -0,0 +1,13 @@ +*** encode_riff.c.orig Wed Mar 26 00:25:07 1997 +--- encode_riff.c Wed May 20 22:45:03 1998 +*************** +*** 163,168 **** +--- 163,170 ---- + warn("read"); + stat = FAIL; goto failplay2; + } ++ /* printf("len = %10d, len = %10d\n", stat, len); */ ++ stat = (len < stat)? len : stat; + if (write(devfd, bufp, stat) < 0) { + warn("write"); + stat = FAIL; goto failplay2; diff --git a/audio/play/pkg-comment b/audio/play/pkg-comment new file mode 100644 index 000000000000..9441d7306e92 --- /dev/null +++ b/audio/play/pkg-comment @@ -0,0 +1 @@ +a simple audio file player diff --git a/audio/play/pkg-descr b/audio/play/pkg-descr new file mode 100644 index 000000000000..78bb4437982d --- /dev/null +++ b/audio/play/pkg-descr @@ -0,0 +1,2 @@ +play is a command-line based audio player. +support format: RIFF and U-Law diff --git a/audio/play/pkg-plist b/audio/play/pkg-plist new file mode 100644 index 000000000000..de13e1f45c3f --- /dev/null +++ b/audio/play/pkg-plist @@ -0,0 +1,2 @@ +bin/play +man/ja/man1/play.1.gz |