Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Apr 2014 00:26:01 +0000 (UTC)
From:      Nicola Vitale <nivit@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r350651 - in head/audio: . mps
Message-ID:  <201404090026.s390Q1aw020508@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nivit
Date: Wed Apr  9 00:26:00 2014
New Revision: 350651
URL: http://svnweb.freebsd.org/changeset/ports/350651
QAT: https://qat.redports.org/buildarchive/r350651/

Log:
  Terminal based MP3 search, playback and download.
  
   - Search and stream music
   - Create playlists
   - Download music
   - Works with Python 2.7 and 3.x
   - Works with Windows, Linux and Mac OS X
   - No Python dependencies
   - Requires mplayer or mpv
  
  WWW: http://github.com/np1/mps/

Added:
  head/audio/mps/
  head/audio/mps/Makefile   (contents, props changed)
  head/audio/mps/distinfo   (contents, props changed)
  head/audio/mps/pkg-descr   (contents, props changed)
Modified:
  head/audio/Makefile

Modified: head/audio/Makefile
==============================================================================
--- head/audio/Makefile	Tue Apr  8 23:34:06 2014	(r350650)
+++ head/audio/Makefile	Wed Apr  9 00:26:00 2014	(r350651)
@@ -489,6 +489,7 @@
     SUBDIR += mpg123.el
     SUBDIR += mpg321
     SUBDIR += mpiosh
+    SUBDIR += mps
     SUBDIR += msilbc
     SUBDIR += muine
     SUBDIR += mumble

Added: head/audio/mps/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/mps/Makefile	Wed Apr  9 00:26:00 2014	(r350651)
@@ -0,0 +1,36 @@
+# Created by: Nicola Vitale <nivit@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	mps
+PORTVERSION=	0.20.06
+#PORTREVISION=	0
+CATEGORIES=	audio
+MASTER_SITES=	CHEESESHOP
+
+MAINTAINER=	nivit@FreeBSD.org
+COMMENT=	Terminal based MP3 search, playback and download
+
+LICENSE=	GPLv3
+
+OPTIONS_DEFAULT=	MPLAYER
+OPTIONS_RADIO=	PLAYER
+OPTIONS_RADIO_PLAYER=	MPLAYER MPV
+
+MPV_DESC=	Mpv media player support
+
+# This port installs the following files in shared dirs
+# PLIST_FILES=	bin/mps
+PYDISTUTILS_AUTOPLIST=	yes
+
+USE_PYDISTUTILS=	yes
+USE_PYTHON=	yes
+
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MMPLAYER}
+RUN_DEPENDS=	mplayer:${PORTSDIR}/multimedia/mplayer
+.elif ${PORT_OPTIONS:MMPV}
+RUN_DEPENDS=	mpv:${PORTSDIR}/multimedia/mpv
+.endif
+
+.include <bsd.port.mk>

Added: head/audio/mps/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/mps/distinfo	Wed Apr  9 00:26:00 2014	(r350651)
@@ -0,0 +1,2 @@
+SHA256 (mps-0.20.06.tar.gz) = 3e6ec3b924af484d13d3c7f5ed5aa7003af53121a205ff6e69d7f10e8cd49201
+SIZE (mps-0.20.06.tar.gz) = 21080

Added: head/audio/mps/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/mps/pkg-descr	Wed Apr  9 00:26:00 2014	(r350651)
@@ -0,0 +1,11 @@
+Terminal based MP3 search, playback and download.
+
+ - Search and stream music
+ - Create playlists
+ - Download music
+ - Works with Python 2.7 and 3.x
+ - Works with Windows, Linux and Mac OS X
+ - No Python dependencies
+ - Requires mplayer or mpv
+
+WWW: http://github.com/np1/mps/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404090026.s390Q1aw020508>