fb95c1bdf0
xmmsctrl is a small utility to control xmms from the command line. Its goal is to be used coupled with sh to test xmms state and perform an appropriate action, e.g. if playing then pause else play. The interest of this is to bind keys in a window manager to have control over xmms with keys that do play/next/pause, prev, control sound. by Gleydson Soares (MAINTAINER) with tweaks by me
34 lines
758 B
Makefile
34 lines
758 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/10/26 20:22:42 jasper Exp $
|
|
|
|
COMMENT= small utility to control XMMS from the command line
|
|
|
|
DISTNAME= xmmsctrl-1.9
|
|
CATEGORIES= audio
|
|
|
|
HOMEPAGE= http://www.cs.aau.dk/~adavid/utils/
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
MAINTAINER= Gleydson Soares <gsoares@trusted.com.br>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
LIB_DEPENDS= xmms::audio/xmms
|
|
WANTLIB= X11 Xext Xi c gdk glib gmodule gtk m
|
|
|
|
MODULES= devel/gettext
|
|
|
|
USE_GMAKE= Yes
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xmmsctrl ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/xmmsctrl
|
|
${INSTALL_DATA} ${WRKSRC}/samples/* ${PREFIX}/share/examples/xmmsctrl
|
|
|
|
.include <bsd.port.mk>
|