diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2000-11-02 21:09:57 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2000-11-02 21:09:57 +0000 |
commit | 831d00c5d433a892491502ec7d7870599683267d (patch) | |
tree | f6a644ff7068c32517aad135e0175cff74a7a858 /audio | |
parent | End without a period (diff) |
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>
Notes
Notes:
svn path=/head/; revision=34666
Diffstat (limited to 'audio')
-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 a0e73aa99526..d6394aeb830d 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 000000000000..e10f2cc079e1 --- /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 000000000000..2ad17de8f331 --- /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 000000000000..a91d8777c6c3 --- /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 000000000000..155341e5f5ba --- /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 000000000000..6be152b63306 --- /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 000000000000..3cb0b71160f8 --- /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 |