diff options
author | grant <grant@pkgsrc.org> | 2004-05-02 04:30:09 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-05-02 04:30:09 +0000 |
commit | d0621b948ed24556351463657e4eb1d2361c627b (patch) | |
tree | a6035b599328a772b771495d2da6e0215f4da9ad /audio/kmp | |
parent | acf79c6eb8f6a78bf353dd8f86863fa3b5a36db4 (diff) | |
download | pkgsrc-d0621b948ed24556351463657e4eb1d2361c627b.tar.gz |
Initial import of kmp 0.01 into the NetBSD packages collection.
KMP is an Music Player Daemon client that uses the QT GUI toolkit so
it will comfortably fit in with your KDE desktop, although only QT is
required. MPD is a daemon that runs in the background and accepts
connections from clients which can then tell MPD what to do. KMP aims
to be a full featured and easy-to-use client. KMP will allow you to
browse the server's collection, add songs to the playlist, change the
volume, etc.
from pkgsrc-wip by pkg@burningsoda.com.
Diffstat (limited to 'audio/kmp')
-rw-r--r-- | audio/kmp/DESCR | 7 | ||||
-rw-r--r-- | audio/kmp/Makefile | 20 | ||||
-rw-r--r-- | audio/kmp/PLIST | 2 | ||||
-rw-r--r-- | audio/kmp/distinfo | 5 | ||||
-rw-r--r-- | audio/kmp/patches/patch-aa | 12 |
5 files changed, 46 insertions, 0 deletions
diff --git a/audio/kmp/DESCR b/audio/kmp/DESCR new file mode 100644 index 00000000000..e8730fb547c --- /dev/null +++ b/audio/kmp/DESCR @@ -0,0 +1,7 @@ +KMP is an Music Player Daemon client that uses the QT GUI toolkit so +it will comfortably fit in with your KDE desktop, although only QT is +required. MPD is a daemon that runs in the background and accepts +connections from clients which can then tell MPD what to do. KMP aims +to be a full featured and easy-to-use client. KMP will allow you to +browse the server's collection, add songs to the playlist, change the +volume, etc. diff --git a/audio/kmp/Makefile b/audio/kmp/Makefile new file mode 100644 index 00000000000..52093631fe9 --- /dev/null +++ b/audio/kmp/Makefile @@ -0,0 +1,20 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/05/02 04:30:09 grant Exp $ + +DISTNAME= kmp-0.01 +CATEGORIES= audio +MASTER_SITES= http://www.threadbox.net/files/KMP/ +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= pkg@burningsoda.com +HOMEPAGE= http://www.threadbox.net/kmp.php +COMMENT= Qt client for the Music Player Daemon + +USE_BUILDLINK3= yes +USE_LANGUAGES= c++ +USE_LIBTOOL= yes +HAS_CONFIGURE= yes +CONFIGURE_ARGS+= ${PREFIX} + +.include "../../x11/qt3-libs/buildlink3.mk" +.include "../../x11/qt3-tools/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/audio/kmp/PLIST b/audio/kmp/PLIST new file mode 100644 index 00000000000..93520d5d6d8 --- /dev/null +++ b/audio/kmp/PLIST @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2004/05/02 04:30:09 grant Exp $ +bin/kmp diff --git a/audio/kmp/distinfo b/audio/kmp/distinfo new file mode 100644 index 00000000000..99fb37e2276 --- /dev/null +++ b/audio/kmp/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2004/05/02 04:30:09 grant Exp $ + +SHA1 (kmp-0.01.tar.bz2) = 7da2b6b71b9c41ca7429479c683cbbfc62d980c1 +Size (kmp-0.01.tar.bz2) = 486474 bytes +SHA1 (patch-aa) = 8ca65b5df3b68b18773ca0b9c34b3e5cde21bdd6 diff --git a/audio/kmp/patches/patch-aa b/audio/kmp/patches/patch-aa new file mode 100644 index 00000000000..4478ca734fe --- /dev/null +++ b/audio/kmp/patches/patch-aa @@ -0,0 +1,12 @@ +$NetBSD: patch-aa,v 1.1.1.1 2004/05/02 04:30:09 grant Exp $ + +--- configure.orig Thu Jan 1 03:53:34 2004 ++++ configure +@@ -1,5 +1,5 @@ + #!/bin/sh +-qmake kmp.pro ++$1/qt3/bin/qmake kmp.pro + echo "install: +- install --owner=root --group=root --mode=755 kmp /usr/local/bin" >> Makefile ++ install kmp $1/bin" >> Makefile + echo "Configured! Now run 'make'" |