diff options
author | miwi <miwi@FreeBSD.org> | 2008-11-16 05:37:56 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-11-16 05:37:56 +0800 |
commit | 873261aff9d15eef7f662a38248bb397c77a4436 (patch) | |
tree | 5fc33a4e917474a14bbbffafd90113c10469f6b7 /audio | |
parent | bc6c72093950cead735ded049f06d83e7ef87d68 (diff) | |
download | freebsd-ports-gnome-873261aff9d15eef7f662a38248bb397c77a4436.tar.gz freebsd-ports-gnome-873261aff9d15eef7f662a38248bb397c77a4436.tar.zst freebsd-ports-gnome-873261aff9d15eef7f662a38248bb397c77a4436.zip |
mpdas is an AudioScrobbler client for MPD written in C++.
It uses libcurl and libmpd.
It supports the latest AudioScrobbler protocol (1.21).
In case of a downtime or connectivity problems,
mpdas will cache the played songs to ~/.mpdascache.
Please read the README at:
http://github.com/hrkfrd/mpdas/tree/master/README
WWW: http://50hz.ws/mpdas/
PR: ports/128798
Submitted by: hrkfrd at googlemail.com
Diffstat (limited to 'audio')
-rw-r--r-- | audio/Makefile | 1 | ||||
-rw-r--r-- | audio/mpdas/Makefile | 24 | ||||
-rw-r--r-- | audio/mpdas/distinfo | 3 | ||||
-rw-r--r-- | audio/mpdas/pkg-descr | 10 |
4 files changed, 38 insertions, 0 deletions
diff --git a/audio/Makefile b/audio/Makefile index afafced5a4bf..9f6617724c64 100644 --- a/audio/Makefile +++ b/audio/Makefile @@ -441,6 +441,7 @@ SUBDIR += mp3unicode SUBDIR += mp3wrap SUBDIR += mpc + SUBDIR += mpdas SUBDIR += mpdcon SUBDIR += mpdscribble SUBDIR += mpegaudio diff --git a/audio/mpdas/Makefile b/audio/mpdas/Makefile new file mode 100644 index 000000000000..3164696c16a1 --- /dev/null +++ b/audio/mpdas/Makefile @@ -0,0 +1,24 @@ +# Ports collection makefile for: mpdas +# Date created: Nov 11, 2008 +# Whom: hrkfrd@googlemail.com +# +# $FreeBSD$ +# + +PORTNAME= mpdas +PORTVERSION= 0.2.1 +CATEGORIES= audio +MASTER_SITES= http://50hz.ws/mpdas/ + +MAINTAINER= hrkfrd@googlemail.com +COMMENT= MPD AudioScrobbler written in C++ supporting the latest protocol + +LIB_DEPENDS= curl.4:${PORTSDIR}/ftp/curl \ + mpd:${PORTSDIR}/audio/libmpd + +USE_GNOME= pkgconfig +USE_BZIP2= yes + +PLIST_FILES= bin/mpdas + +.include <bsd.port.mk> diff --git a/audio/mpdas/distinfo b/audio/mpdas/distinfo new file mode 100644 index 000000000000..bb3330cdfbef --- /dev/null +++ b/audio/mpdas/distinfo @@ -0,0 +1,3 @@ +MD5 (mpdas-0.2.1.tar.bz2) = c8f981b46a22bf44d8e38a339f102d89 +SHA256 (mpdas-0.2.1.tar.bz2) = b95ffd2380eb345b8f263c56d95780091095d5feb47ed7b622275229bb905e1d +SIZE (mpdas-0.2.1.tar.bz2) = 11253 diff --git a/audio/mpdas/pkg-descr b/audio/mpdas/pkg-descr new file mode 100644 index 000000000000..7005407ed41c --- /dev/null +++ b/audio/mpdas/pkg-descr @@ -0,0 +1,10 @@ +mpdas is an AudioScrobbler client for MPD written in C++. +It uses libcurl and libmpd. +It supports the latest AudioScrobbler protocol (1.21). +In case of a downtime or connectivity problems, +mpdas will cache the played songs to ~/.mpdascache. + +Please read the README at: +http://github.com/hrkfrd/mpdas/tree/master/README + +WWW: http://50hz.ws/mpdas/ |