diff options
author | trevor <trevor@FreeBSD.org> | 2000-11-02 21:09:57 +0000 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2000-11-02 21:09:57 +0000 |
commit | cb9014e734b294012c70b983e08e4186aad4d974 (patch) | |
tree | e4c23abf81aecc0ba67cd629274321e6a2981477 | |
parent | 31a1c74ecdd075c54d4f19560f87c4301a562923 (diff) | |
download | FreeBSD-ports-cb9014e734b294012c70b983e08e4186aad4d974.zip FreeBSD-ports-cb9014e734b294012c70b983e08e4186aad4d974.tar.gz |
Add new port of libao, a portable sound library used by some vorbis
tools.
PR: 22094
Submitted by: Theo van Klaveren <t.vanklaveren@student.utwente.nl>
-rw-r--r-- | audio/Makefile | 1 | ||||
-rw-r--r-- | audio/libao/Makefile | 30 | ||||
-rw-r--r-- | audio/libao/distinfo | 1 | ||||
-rw-r--r-- | audio/libao/files/patch-aa | 11 | ||||
-rw-r--r-- | audio/libao/pkg-comment | 1 | ||||
-rw-r--r-- | audio/libao/pkg-descr | 12 | ||||
-rw-r--r-- | audio/libao/pkg-plist | 8 |
7 files changed, 64 insertions, 0 deletions
diff --git a/audio/Makefile b/audio/Makefile index a0e73aa..d6394ae 100644 --- a/audio/Makefile +++ b/audio/Makefile @@ -74,6 +74,7 @@ SUBDIR += knapster SUBDIR += krio SUBDIR += lame + SUBDIR += libao SUBDIR += libaudiofile SUBDIR += libcdaudio SUBDIR += libmikmod diff --git a/audio/libao/Makefile b/audio/libao/Makefile new file mode 100644 index 0000000..e10f2cc --- /dev/null +++ b/audio/libao/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: libao +# Date created: 18 October 2000 +# Whom: t.vanklaveren@student.utwente.nl +# +# $FreeBSD$ +# + +PORTNAME= libao +PORTVERSION= 20001018 +CATEGORIES= audio +MASTER_SITES= http://home.student.utwente.nl/t.vanklaveren/distfiles/ +DISTNAME= ao-${PORTVERSION} + +MAINTAINER= t.vanklaveren@student.utwente.nl + +GNU_CONFIGURE= yes +USE_GMAKE= yes +USE_LIBTOOL= yes +WRKSRC= ${WRKDIR}/ao + +ACLOCAL?= ${LOCALBASE}/bin/aclocal +AUTOHEADER?= ${LOCALBASE}/bin/autoheader + +post-patch: + cd ${WRKSRC} && ${ACLOCAL} + cd ${WRKSRC} && ${AUTOHEADER} + cd ${WRKSRC} && ${AUTOMAKE} --add-missing + cd ${WRKSRC} && ${AUTOCONF} + +.include <bsd.port.mk> diff --git a/audio/libao/distinfo b/audio/libao/distinfo new file mode 100644 index 0000000..2ad17de --- /dev/null +++ b/audio/libao/distinfo @@ -0,0 +1 @@ +MD5 (ao-20001018.tar.gz) = c894601383dcb76f53510680bbdf57b5 diff --git a/audio/libao/files/patch-aa b/audio/libao/files/patch-aa new file mode 100644 index 0000000..a91d877 --- /dev/null +++ b/audio/libao/files/patch-aa @@ -0,0 +1,11 @@ +--- doc/Makefile.am.orig Wed Oct 18 23:19:13 2000 ++++ doc/Makefile.am Wed Oct 18 23:19:42 2000 +@@ -2,7 +2,7 @@ + + AUTOMAKE_OPTIONS = foreign + +-docdir = $(prefix)/doc/$(PACKAGE)-$(VERSION) ++docdir = $(prefix)/share/doc/$(PACKAGE)-$(VERSION) + + doc_DATA = index.html + diff --git a/audio/libao/pkg-comment b/audio/libao/pkg-comment new file mode 100644 index 0000000..155341e --- /dev/null +++ b/audio/libao/pkg-comment @@ -0,0 +1 @@ +Portable audio output library diff --git a/audio/libao/pkg-descr b/audio/libao/pkg-descr new file mode 100644 index 0000000..6be152b --- /dev/null +++ b/audio/libao/pkg-descr @@ -0,0 +1,12 @@ +Libao is a cross-platform audio library that allows programs to output +audio using a simple API on a wide variety of platforms. It currently +supports: + * Open Sound System (Linux, *BSD) + * ESounD + * Advanced Linux Sound Architecture + * Solaris (untested) + * IRIX (untested) + * WAV files + +- Theo van Klaveren +t.vanklaveren@student.utwente.nl diff --git a/audio/libao/pkg-plist b/audio/libao/pkg-plist new file mode 100644 index 0000000..3cb0b71 --- /dev/null +++ b/audio/libao/pkg-plist @@ -0,0 +1,8 @@ +include/ao/ao.h +include/ao/os_types.h +lib/libao.a +lib/libao.so +lib/libao.so.0 +share/doc/libao-1.0.0/index.html +@dirrm include/ao +@dirrm share/doc/libao-1.0.0 |