diff options
author | xtraeme <xtraeme> | 2005-10-15 01:00:05 +0000 |
---|---|---|
committer | xtraeme <xtraeme> | 2005-10-15 01:00:05 +0000 |
commit | 395895a3c54f5833885a4d07d457e140598ade49 (patch) | |
tree | 80e7ff8a74c9dd10ae8c3584a6f732b7ad4154b0 /audio | |
parent | c185200fa9f470cf27259e7a7c32aec3dd87b3e6 (diff) | |
download | pkgsrc-395895a3c54f5833885a4d07d457e140598ade49.tar.gz |
Initial import of glurp-0.11.6 from pkgsrc-wip, packaged by
Leonard Schmidt.
A GTK2-based musicpd client with a simple and clean interface.
Features include:
* Support for loading/saving playlists
* A file browser
* Playlist quicksearch
* Supports streams in MPD (MPD 0.11.0 and newer)
* ID3 Information
* Single window interface, with possibility to hide the playlist
* Support for enabling and disabling MPD outputs (MPD 0.12.0 and newer)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/glurp/DESCR | 10 | ||||
-rw-r--r-- | audio/glurp/Makefile | 20 | ||||
-rw-r--r-- | audio/glurp/PLIST | 21 | ||||
-rw-r--r-- | audio/glurp/distinfo | 6 | ||||
-rw-r--r-- | audio/glurp/patches/patch-aa | 12 |
5 files changed, 69 insertions, 0 deletions
diff --git a/audio/glurp/DESCR b/audio/glurp/DESCR new file mode 100644 index 00000000000..3df9dfbb4a0 --- /dev/null +++ b/audio/glurp/DESCR @@ -0,0 +1,10 @@ +A GTK2-based musicpd client with a simple and clean interface. + +Features include: + * Support for loading/saving playlists + * A file browser + * Playlist quicksearch + * Supports streams in MPD (MPD 0.11.0 and newer) + * ID3 Information + * Single window interface, with possibility to hide the playlist + * Support for enabling and disabling MPD outputs (MPD 0.12.0 and newer) diff --git a/audio/glurp/Makefile b/audio/glurp/Makefile new file mode 100644 index 00000000000..f34a1cc1d92 --- /dev/null +++ b/audio/glurp/Makefile @@ -0,0 +1,20 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/10/15 01:00:05 xtraeme Exp $ +# + +DISTNAME= glurp-0.11.6 +CATEGORIES= audio +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=glurp/} + +MAINTAINER= lems@gmx.net +HOMEPAGE= http://www.musicpd.org/glurp.shtml +COMMENT= Graphical GTK+2 based client for musicpd + +GNU_CONFIGURE= yes +USE_DIRS+= xdg-1.1 +USE_TOOLS+= pkg-config + +.include "../../devel/glib2/buildlink3.mk" +.include "../../devel/libglade2/buildlink3.mk" +.include "../../textproc/intltool/buildlink3.mk" +.include "../../x11/gtk2/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/audio/glurp/PLIST b/audio/glurp/PLIST new file mode 100644 index 00000000000..8f9a7305256 --- /dev/null +++ b/audio/glurp/PLIST @@ -0,0 +1,21 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2005/10/15 01:00:05 xtraeme Exp $ +bin/glurp +share/glurp/glurp.glade +share/glurp/pixmaps/add.png +share/glurp/pixmaps/config.png +share/glurp/pixmaps/media-audiofile.png +share/glurp/pixmaps/offline.png +share/glurp/pixmaps/online.png +share/glurp/pixmaps/outputs.png +share/glurp/pixmaps/player-next.png +share/glurp/pixmaps/player-pause.png +share/glurp/pixmaps/player-play.png +share/glurp/pixmaps/player-prev.png +share/glurp/pixmaps/player-random.png +share/glurp/pixmaps/player-repeat.png +share/glurp/pixmaps/player-stop.png +share/glurp/pixmaps/playlist.png +share/glurp/pixmaps/playlists.png +share/glurp/pixmaps/remove.png +@dirrm share/glurp/pixmaps +@dirrm share/glurp diff --git a/audio/glurp/distinfo b/audio/glurp/distinfo new file mode 100644 index 00000000000..226768fb943 --- /dev/null +++ b/audio/glurp/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1.1.1 2005/10/15 01:00:05 xtraeme Exp $ + +SHA1 (glurp-0.11.6.tar.gz) = 5ded37b3573b4f486addd60f96875e52803d5434 +RMD160 (glurp-0.11.6.tar.gz) = 4f12249b5830374ec874e7ce28d92d317c03e142 +Size (glurp-0.11.6.tar.gz) = 138603 bytes +SHA1 (patch-aa) = d7f7a0d9aa8a46c1d711abf93cc3dbf6b250365f diff --git a/audio/glurp/patches/patch-aa b/audio/glurp/patches/patch-aa new file mode 100644 index 00000000000..ee2702003d6 --- /dev/null +++ b/audio/glurp/patches/patch-aa @@ -0,0 +1,12 @@ +$NetBSD: patch-aa,v 1.1.1.1 2005/10/15 01:00:05 xtraeme Exp $ + +--- src/comm.c.orig 2005-06-05 15:44:09.000000000 +0000 ++++ src/comm.c +@@ -20,6 +20,7 @@ + + */ + ++#include <stdlib.h> + #include <glib.h> + #include <gtk/gtk.h> + #include <glade/glade.h> |