diff options
author | miwi <miwi@FreeBSD.org> | 2011-02-13 19:07:12 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2011-02-13 19:07:12 +0800 |
commit | 4e68474ccc4d0971fef5aa4c794da19e71a61ab0 (patch) | |
tree | 2d35538ae96fa3adda6352169169cedbada28fd9 /audio/quimup | |
parent | 3ca9867c9d9c66fd70d114a2b0ae522d1e7a7c19 (diff) | |
download | freebsd-ports-gnome-4e68474ccc4d0971fef5aa4c794da19e71a61ab0.tar.gz freebsd-ports-gnome-4e68474ccc4d0971fef5aa4c794da19e71a61ab0.tar.zst freebsd-ports-gnome-4e68474ccc4d0971fef5aa4c794da19e71a61ab0.zip |
QUIMUP is a 'graphical' client for the music player daemon (MPD)
written in C++ and QT4.
Features include:
* Support for (locally stored) albumart.
* Support for audio streams (url).
* Drag & drop playlist management.
* Database browser (artist, album, genre, folder & playlist mode)
* Database search (artist, album, genre & title mode).
* Quick search-and-select in the playlist.
* Mini-mode interface for basic control only.
* Open folder in external programs to edit tags etc.
* Generally a quick and clean application.
WWW: http://coonsden.com/?page_id=145
PR: ports/154702
Submitted by: Cezary Morga <cm at therek.net>
Diffstat (limited to 'audio/quimup')
-rw-r--r-- | audio/quimup/Makefile | 59 | ||||
-rw-r--r-- | audio/quimup/distinfo | 2 | ||||
-rw-r--r-- | audio/quimup/pkg-descr | 16 |
3 files changed, 77 insertions, 0 deletions
diff --git a/audio/quimup/Makefile b/audio/quimup/Makefile new file mode 100644 index 000000000000..7b9e31b55b3d --- /dev/null +++ b/audio/quimup/Makefile @@ -0,0 +1,59 @@ +# New ports collection makefile for: quimup +# Date created: 2011-02-08 +# Whom: Cezary Morga <cm@therek.net> +# +# $FreeBSD$ +# + +PORTNAME= quimup +PORTVERSION= 1.2.0 +CATEGORIES= audio +MASTER_SITES= SF +MASTER_SITE_SUBDIR=musicpd/Quimup/${PORTVERSION} +DISTNAME= ${PORTNAME}_${DISTVERSION}_source + +MAINTAINER= cm@therek.net +COMMENT= QT4 Client for MPD (the Music Player Daemon) + +LIB_DEPENDS= mpdclient.2:${PORTSDIR}/audio/libmpdclient + +USE_QT_VER= 4 +QT_COMPONENTS= corelib gui network \ + qmake_build moc_build rcc_build uic_build +QMAKE_ARGS= PREFIX=${PREFIX} + +WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION} + +PLIST_FILES= bin/${PORTNAME} \ + share/icons/hicolor/32x32/apps/${PORTNAME}.png \ + share/icons/hicolor/48x48/apps/${PORTNAME}.png \ + share/icons/hicolor/64x64/apps/${PORTNAME}.png +PLIST_DIRS= share/icons/hicolor/32x32/apps \ + share/icons/hicolor/32x32 \ + share/icons/hicolor/48x48/apps \ + share/icons/hicolor/48x48 \ + share/icons/hicolor/64x64/apps \ + share/icons/hicolor/64x64 \ + share/icons/hicolor \ + share/icons + +.include <bsd.port.pre.mk> + +do-configure: + ${REINPLACE_CMD} -e 's|/usr/lib/libmpdclient.so|${LOCALBASE}/lib/libmpdclient.so|' \ + ${WRKSRC}/${PORTNAME}.pro + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${QMAKE} ${QMAKE_ARGS} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${MKDIR} ${PREFIX}/share/icons/hicolor/32x32/apps + ${MKDIR} ${PREFIX}/share/icons/hicolor/48x48/apps + ${MKDIR} ${PREFIX}/share/icons/hicolor/64x64/apps + ${INSTALL_DATA} ${WRKSRC}/Icons/${PORTNAME}32.png \ + ${PREFIX}/share/icons/hicolor/32x32/apps/${PORTNAME}.png + ${INSTALL_DATA} ${WRKSRC}/Icons/${PORTNAME}48.png \ + ${PREFIX}/share/icons/hicolor/48x48/apps/${PORTNAME}.png + ${INSTALL_DATA} ${WRKSRC}/Icons/${PORTNAME}64.png \ + ${PREFIX}/share/icons/hicolor/64x64/apps/${PORTNAME}.png + +.include <bsd.port.post.mk> diff --git a/audio/quimup/distinfo b/audio/quimup/distinfo new file mode 100644 index 000000000000..25372cb6ade7 --- /dev/null +++ b/audio/quimup/distinfo @@ -0,0 +1,2 @@ +SHA256 (quimup_1.2.0_source.tar.gz) = 194632a593df5c326222d61cd12fd2d0fa96438e25bf79efc82877070e12ebac +SIZE (quimup_1.2.0_source.tar.gz) = 231147 diff --git a/audio/quimup/pkg-descr b/audio/quimup/pkg-descr new file mode 100644 index 000000000000..081a44251ca7 --- /dev/null +++ b/audio/quimup/pkg-descr @@ -0,0 +1,16 @@ +QUIMUP is a 'graphical' client for the music player daemon (MPD) +written in C++ and QT4. + +Features include: + +* Support for (locally stored) albumart. +* Support for audio streams (url). +* Drag & drop playlist management. +* Database browser (artist, album, genre, folder & playlist mode) +* Database search (artist, album, genre & title mode). +* Quick search-and-select in the playlist. +* Mini-mode interface for basic control only. +* Open folder in external programs to edit tags etc. +* Generally a quick and clean application. + +WWW: http://coonsden.com/?page_id=145 |