From owner-svn-ports-head@FreeBSD.ORG Sun Apr 6 18:19:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F144CEB2; Sun, 6 Apr 2014 18:19:46 +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 DE694C59; Sun, 6 Apr 2014 18:19:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s36IJkDu019212; Sun, 6 Apr 2014 18:19:46 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s36IJkM2019209; Sun, 6 Apr 2014 18:19:46 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201404061819.s36IJkM2019209@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 6 Apr 2014 18:19:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r350397 - head/audio/herrie X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2014 18:19:47 -0000 Author: bapt Date: Sun Apr 6 18:19:46 2014 New Revision: 350397 URL: http://svnweb.freebsd.org/changeset/ports/350397 QAT: https://qat.redports.org/buildarchive/r350397/ Log: Support stage Use options helpers Modified: head/audio/herrie/Makefile head/audio/herrie/pkg-plist Modified: head/audio/herrie/Makefile ============================================================================== --- head/audio/herrie/Makefile Sun Apr 6 18:14:32 2014 (r350396) +++ head/audio/herrie/Makefile Sun Apr 6 18:19:46 2014 (r350397) @@ -9,77 +9,41 @@ MASTER_SITES= http://herrie.info/distfil http://www.stack.nl/~ed/projects/herrie/distfiles/ MAINTAINER= ed@FreeBSD.org -COMMENT= A small command line interface music player +COMMENT= Small command line interface music player HAS_CONFIGURE= yes CONFIGURE_ARGS+=verbose CONFIGURE_ENV+= PREFIX=${PREFIX} -USE_BZIP2= yes -NO_STAGE= yes +USES= tar:bzip2 USE_GNOME= glib20 -OPTIONS_DEFINE= MAD VORBIS SNDFILE MODPLUG HTTP LIBAO XCURSES XSPF +OPTIONS_DEFINE= MAD VORBIS SNDFILE MODPLUG HTTP LIBAO XCURSES XSPF NLS OPTIONS_DEFAULT= MAD VORBIS HTTP XSPF +OPTIONS_SUB= yes HTTP_DESC= HTTP streams and AudioScrobbler support LIBAO_DESC= LibAO support (breaks chroot) XCURSES_DESC= Build XCurses version -MAN1= herrie.1 -MANCOMPRESSED= yes - -.include - -.if ${OSVERSION} < 700033 -CONFIGURE_ARGS+=ncurses -.endif - -.if ${PORT_OPTIONS:MMAD} -LIB_DEPENDS+= libmad.so:${PORTSDIR}/audio/mad \ - libid3tag.so:${PORTSDIR}/audio/libid3tag -.else -CONFIGURE_ARGS+=no_mp3 -.endif -.if ${PORT_OPTIONS:MVORBIS} -LIB_DEPENDS+= libvorbis.so:${PORTSDIR}/audio/libvorbis -.else -CONFIGURE_ARGS+=no_vorbis -.endif -.if ${PORT_OPTIONS:MSNDFILE} -LIB_DEPENDS+= libsndfile.so:${PORTSDIR}/audio/libsndfile -.else -CONFIGURE_ARGS+=no_sndfile -.endif -.if ${PORT_OPTIONS:MMODPLUG} -LIB_DEPENDS+= libmodplug.so:${PORTSDIR}/audio/libmodplug -.else -CONFIGURE_ARGS+=no_modplug -.endif -.if ${PORT_OPTIONS:MHTTP} -LIB_DEPENDS+= libbcurl.so:${PORTSDIR}/ftp/curl -.else -CONFIGURE_ARGS+=no_http no_scrobbler -.endif -.if ${PORT_OPTIONS:MLIBAO} -LIB_DEPENDS+= libao.so:${PORTSDIR}/audio/libao -CONFIGURE_ARGS+=ao -.endif -.if ${PORT_OPTIONS:MXCURSES} -LIB_DEPENDS+= libXCurses.so:${PORTSDIR}/devel/pdcurses -CONFIGURE_ARGS+=xcurses -.endif -.if ${PORT_OPTIONS:MXSPF} -LIB_DEPENDS+= libxspf.so:${PORTSDIR}/multimedia/libxspf -.else -CONFIGURE_ARGS+=no_xspf -.endif -.if ${PORT_OPTIONS:MNLS} -PLIST_SUB+= NLS="" -USES+= gettext -.else -PLIST_SUB+= NLS="@comment " -CONFIGURE_ARGS+=no_nls -.endif +MAD_LIB_DEPENDS= libmad.so:${PORTSDIR}/audio/mad \ + libid3tag.so:${PORTSDIR}/audio/libid3tag +MAD_CONFIGURE_OFF=no_mp3 +VORBIS_LIB_DEPENDS= libvorbis.so:${PORTSDIR}/audio/libvorbis +VORBIS_CONFIGURE_OFF=no_vorbis +SNDFILE_LIB_DEPENDS= libsndfile.so:${PORTSDIR}/audio/libsndfile +SNDFILE_CONFIGURE_OFF=no_sndfile +MODPLUG_LIB_DEPENDS= libmodplug.so:${PORTSDIR}/audio/libmodplug +MODPLUG_CONFIGURE_OFF=no_modplug +HTTP_LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl +HTTP_CONFIGURE_OFF=no_http no_scrobbler +LIBAO_LIB_DEPENDS= libao.so:${PORTSDIR}/audio/libao +LIBAO_CONFIGURE_ON=ao +XCURSES_LIB_DEPENDS= libXCurses.so:${PORTSDIR}/devel/pdcurses +XCURSES_CONFIGURE_ON=xcurses +XSPF_LIB_DEPENDS= libxspf.so:${PORTSDIR}/multimedia/libxspf +XSPF_CONFIGURE_OFF=no_xspf +NLS_USES= gettext +NLS_CONFIGURE_OFF=no_nls .include Modified: head/audio/herrie/pkg-plist ============================================================================== --- head/audio/herrie/pkg-plist Sun Apr 6 18:14:32 2014 (r350396) +++ head/audio/herrie/pkg-plist Sun Apr 6 18:19:46 2014 (r350397) @@ -1,5 +1,6 @@ bin/herrie etc/herrie.conf.sample +man/man1/herrie.1.gz %%NLS%%share/locale/ca/LC_MESSAGES/herrie.mo %%NLS%%share/locale/da/LC_MESSAGES/herrie.mo %%NLS%%share/locale/de/LC_MESSAGES/herrie.mo