From owner-svn-ports-all@FreeBSD.ORG Wed Aug 27 20:55:32 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 535E13D7; Wed, 27 Aug 2014 20:55:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3EFD03B48; Wed, 27 Aug 2014 20:55:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7RKtWtC080422; Wed, 27 Aug 2014 20:55:32 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7RKtVoJ080417; Wed, 27 Aug 2014 20:55:31 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201408272055.s7RKtVoJ080417@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Wed, 27 Aug 2014 20:55:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r366354 - in head/audio: . siren X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Aug 2014 20:55:32 -0000 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 + +.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 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