Date: Wed, 27 Aug 2014 20:55:31 +0000 (UTC) From: Olivier Duchateau <olivierd@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r366354 - in head/audio: . siren Message-ID: <201408272055.s7RKtVoJ080417@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: olivierd Date: Wed Aug 27 20:55:30 2014 New Revision: 366354 URL: http://svnweb.freebsd.org/changeset/ports/366354 QAT: https://qat.redports.org/buildarchive/r366354/ Log: Siren is a text-based audio player for UNIX-like operating systems. It supports Ogg Vorbis, MP3, FLAC, WavPack, WAVE, AIFF and a few other file formats. WWW: http://www.kariliq.nl/siren/ Added: head/audio/siren/ head/audio/siren/Makefile (contents, props changed) head/audio/siren/distinfo (contents, props changed) head/audio/siren/pkg-descr (contents, props changed) head/audio/siren/pkg-plist (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Wed Aug 27 20:51:26 2014 (r366353) +++ head/audio/Makefile Wed Aug 27 20:55:30 2014 (r366354) @@ -669,6 +669,7 @@ SUBDIR += sidplay2 SUBDIR += sidplayer SUBDIR += simplemod + SUBDIR += siren SUBDIR += slv2 SUBDIR += smasher SUBDIR += snack Added: head/audio/siren/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/siren/Makefile Wed Aug 27 20:55:30 2014 (r366354) @@ -0,0 +1,45 @@ +# Created by: Olivier Duchateau +# $FreeBSD$ + +PORTNAME= siren +PORTVERSION= 0.4 +CATEGORIES= audio +MASTER_SITES= http://www.kariliq.nl/${PORTNAME}/dist/ + +MAINTAINER= olivierd@FreeBSD.org +COMMENT= Text-based audio player + +LICENSE= ISCL + +LIB_DEPENDS= libFLAC.so:${PORTSDIR}/audio/flac \ + libid3tag.so:${PORTSDIR}/audio/libid3tag \ + libmad.so:${PORTSDIR}/audio/libmad \ + libvorbis.so:${PORTSDIR}/audio/libvorbis \ + libwavpack.so:${PORTSDIR}/audio/wavpack + +USES= ncurses pkgconfig +HAS_CONFIGURE= yes +USE_CSTD= c99 + +OPTIONS_DEFINE= PULSEAUDIO + +CONFIGURE_ARGS= sndfile=no \ + alsa=no \ + ao=no \ + sndio=no \ + sun=no + +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MPULSEAUDIO} +LIB_DEPENDS+= libpulse.so:${PORTSDIR}/audio/pulseaudio +CONFIGURE_ARGS+=oss=no pulse=yes +PLIST_SUB+= OSS="@comment " \ + PULSE="" +.else +CONFIGURE_ARGS+=oss=yes pulse=no +PLIST_SUB+= OSS="" \ + PULSE="@comment " +.endif + +.include <bsd.port.mk> Added: head/audio/siren/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/siren/distinfo Wed Aug 27 20:55:30 2014 (r366354) @@ -0,0 +1,2 @@ +SHA256 (siren-0.4.tar.gz) = 9f7cb6cfcafe2325d79d9f27015e67a7afd4470c8e029ecf922667816d1ccd44 +SIZE (siren-0.4.tar.gz) = 87451 Added: head/audio/siren/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/siren/pkg-descr Wed Aug 27 20:55:30 2014 (r366354) @@ -0,0 +1,5 @@ +Siren is a text-based audio player for UNIX-like operating systems. It +supports Ogg Vorbis, MP3, FLAC, WavPack, WAVE, AIFF and a few other file +formats. + +WWW: http://www.kariliq.nl/siren/ Added: head/audio/siren/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/siren/pkg-plist Wed Aug 27 20:55:30 2014 (r366354) @@ -0,0 +1,11 @@ +bin/siren +lib/siren/ip/flac.so +lib/siren/ip/mad.so +lib/siren/ip/vorbis.so +lib/siren/ip/wavpack.so +%%OSS%%lib/siren/op/oss.so +%%PULSE%%lib/siren/op/pulse.so +man/man1/siren.1.gz +@dirrm lib/siren/op +@dirrm lib/siren/ip +@dirrm lib/siren
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201408272055.s7RKtVoJ080417>