diff options
author | sumikawa <sumikawa@FreeBSD.org> | 2003-10-13 17:29:32 +0800 |
---|---|---|
committer | sumikawa <sumikawa@FreeBSD.org> | 2003-10-13 17:29:32 +0800 |
commit | 68ecb94f0114eee2bc0b0e47705893a8a6cd84ad (patch) | |
tree | f7a895ba6157350fb6ae173833e7cb13deb60d66 /audio | |
parent | dee47cdec0e9ad76920c6406a23ed60e745dc495 (diff) | |
download | freebsd-ports-gnome-68ecb94f0114eee2bc0b0e47705893a8a6cd84ad.tar.gz freebsd-ports-gnome-68ecb94f0114eee2bc0b0e47705893a8a6cd84ad.tar.zst freebsd-ports-gnome-68ecb94f0114eee2bc0b0e47705893a8a6cd84ad.zip |
Add traymp 0.12, tray-aware GTK2 client for musicpd.
PR: 57905
Submitted by: Mark Reidel <ports@mark.reidel.info>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/Makefile | 1 | ||||
-rw-r--r-- | audio/gmpc/Makefile | 43 | ||||
-rw-r--r-- | audio/gmpc/distinfo | 1 | ||||
-rw-r--r-- | audio/gmpc/pkg-descr | 8 | ||||
-rw-r--r-- | audio/gmpc/pkg-message | 10 | ||||
-rw-r--r-- | audio/gmpc/pkg-plist | 13 | ||||
-rw-r--r-- | audio/traymp/Makefile | 43 | ||||
-rw-r--r-- | audio/traymp/distinfo | 1 | ||||
-rw-r--r-- | audio/traymp/pkg-descr | 8 | ||||
-rw-r--r-- | audio/traymp/pkg-message | 10 | ||||
-rw-r--r-- | audio/traymp/pkg-plist | 13 |
11 files changed, 151 insertions, 0 deletions
diff --git a/audio/Makefile b/audio/Makefile index 4cd8de7826c9..00ab31933dd4 100644 --- a/audio/Makefile +++ b/audio/Makefile @@ -313,6 +313,7 @@ SUBDIR += toolame SUBDIR += tosha SUBDIR += tracker + SUBDIR += traymp SUBDIR += trm SUBDIR += trommler SUBDIR += ufmcontrol-i18n diff --git a/audio/gmpc/Makefile b/audio/gmpc/Makefile new file mode 100644 index 000000000000..2c1929c9650a --- /dev/null +++ b/audio/gmpc/Makefile @@ -0,0 +1,43 @@ +# New ports collection makefile for: traymp +# Date created: Oct 09 2003 +# Whom: Mark Reidel <ports@mark.reidel.info> +# +# $FreeBSD$ +# + +PORTNAME= traymp +PORTVERSION= 0.12 +CATEGORIES= audio +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= musicpd + +MAINTAINER= ports@mark.reidel.info +COMMENT= Tray-aware GTK2 client for musicpd + +GNU_CONFIGURE= yes +USE_GNOME= glib20 gtk20 libglade2 +CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" \ + +CFLAGS+= -I${PREFIX}/include + +.include <bsd.port.pre.mk> + +.ifdef(WITH_XOSD) +CONFIGURE_ARGS+=--enable-xosd +LIB_DEPENDS+=xosd.4:${PORTSDIR}/misc/xosd +.endif + +pre-everything:: +.ifndef(WITH_XOSD) + @${ECHO} "You can build ${PKGNAME} with the following option:" + @${ECHO} + @${ECHO} "WITH_XOSD Make use of on-screen-display" + @${ECHO} + @sleep 3 +.endif + +post-install: + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.post.mk> diff --git a/audio/gmpc/distinfo b/audio/gmpc/distinfo new file mode 100644 index 000000000000..f07b92e62389 --- /dev/null +++ b/audio/gmpc/distinfo @@ -0,0 +1 @@ +MD5 (traymp-0.12.tar.gz) = 460ab9e72ff6ca522caa9a2c9e31a39b diff --git a/audio/gmpc/pkg-descr b/audio/gmpc/pkg-descr new file mode 100644 index 000000000000..632b7f76aefa --- /dev/null +++ b/audio/gmpc/pkg-descr @@ -0,0 +1,8 @@ +A tray-aware GTK2-client for MPD, the Music Player Daemon. +Traymp connects to a MPD running on a machine via a network. +Read more about MPD on http://www.musicpd.org + +You have to install musicpd somewhere in your network to +make use of this program. + +WWW: http://www.musicpd.org diff --git a/audio/gmpc/pkg-message b/audio/gmpc/pkg-message new file mode 100644 index 000000000000..4b0e1c40e126 --- /dev/null +++ b/audio/gmpc/pkg-message @@ -0,0 +1,10 @@ +************************************************************ + +The traymp package has been successfully installed. + +In order to connect to the MPD server, you need to set +MPD_HOST and MPD_PORT in your environment according to +where musicpd runs. + +************************************************************ + diff --git a/audio/gmpc/pkg-plist b/audio/gmpc/pkg-plist new file mode 100644 index 000000000000..ecf9b5755039 --- /dev/null +++ b/audio/gmpc/pkg-plist @@ -0,0 +1,13 @@ +bin/traymp +share/pixmaps/traymp/tray.png +share/pixmaps/traymp/tray-play.png +share/pixmaps/traymp/media-play.png +share/pixmaps/traymp/media-pause.png +share/pixmaps/traymp/media-next.png +share/pixmaps/traymp/media-prev.png +share/pixmaps/traymp/media-stop.png +share/pixmaps/traymp/tray-pause.png +share/traymp/playlist.glade +@dirrm share/pixmaps/traymp +@dirrm share/pixmaps +@dirrm share/traymp diff --git a/audio/traymp/Makefile b/audio/traymp/Makefile new file mode 100644 index 000000000000..2c1929c9650a --- /dev/null +++ b/audio/traymp/Makefile @@ -0,0 +1,43 @@ +# New ports collection makefile for: traymp +# Date created: Oct 09 2003 +# Whom: Mark Reidel <ports@mark.reidel.info> +# +# $FreeBSD$ +# + +PORTNAME= traymp +PORTVERSION= 0.12 +CATEGORIES= audio +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= musicpd + +MAINTAINER= ports@mark.reidel.info +COMMENT= Tray-aware GTK2 client for musicpd + +GNU_CONFIGURE= yes +USE_GNOME= glib20 gtk20 libglade2 +CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" \ + +CFLAGS+= -I${PREFIX}/include + +.include <bsd.port.pre.mk> + +.ifdef(WITH_XOSD) +CONFIGURE_ARGS+=--enable-xosd +LIB_DEPENDS+=xosd.4:${PORTSDIR}/misc/xosd +.endif + +pre-everything:: +.ifndef(WITH_XOSD) + @${ECHO} "You can build ${PKGNAME} with the following option:" + @${ECHO} + @${ECHO} "WITH_XOSD Make use of on-screen-display" + @${ECHO} + @sleep 3 +.endif + +post-install: + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.post.mk> diff --git a/audio/traymp/distinfo b/audio/traymp/distinfo new file mode 100644 index 000000000000..f07b92e62389 --- /dev/null +++ b/audio/traymp/distinfo @@ -0,0 +1 @@ +MD5 (traymp-0.12.tar.gz) = 460ab9e72ff6ca522caa9a2c9e31a39b diff --git a/audio/traymp/pkg-descr b/audio/traymp/pkg-descr new file mode 100644 index 000000000000..632b7f76aefa --- /dev/null +++ b/audio/traymp/pkg-descr @@ -0,0 +1,8 @@ +A tray-aware GTK2-client for MPD, the Music Player Daemon. +Traymp connects to a MPD running on a machine via a network. +Read more about MPD on http://www.musicpd.org + +You have to install musicpd somewhere in your network to +make use of this program. + +WWW: http://www.musicpd.org diff --git a/audio/traymp/pkg-message b/audio/traymp/pkg-message new file mode 100644 index 000000000000..4b0e1c40e126 --- /dev/null +++ b/audio/traymp/pkg-message @@ -0,0 +1,10 @@ +************************************************************ + +The traymp package has been successfully installed. + +In order to connect to the MPD server, you need to set +MPD_HOST and MPD_PORT in your environment according to +where musicpd runs. + +************************************************************ + diff --git a/audio/traymp/pkg-plist b/audio/traymp/pkg-plist new file mode 100644 index 000000000000..ecf9b5755039 --- /dev/null +++ b/audio/traymp/pkg-plist @@ -0,0 +1,13 @@ +bin/traymp +share/pixmaps/traymp/tray.png +share/pixmaps/traymp/tray-play.png +share/pixmaps/traymp/media-play.png +share/pixmaps/traymp/media-pause.png +share/pixmaps/traymp/media-next.png +share/pixmaps/traymp/media-prev.png +share/pixmaps/traymp/media-stop.png +share/pixmaps/traymp/tray-pause.png +share/traymp/playlist.glade +@dirrm share/pixmaps/traymp +@dirrm share/pixmaps +@dirrm share/traymp |