91c3b180c1
Add USES=xorg, USES=gl and in a few cases USES=gnome to ports in categories starting with 'a'.
32 lines
771 B
Makefile
32 lines
771 B
Makefile
# Created by: Konstantinos Konstantinidis <kkonstan@daemon.gr>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= wmix
|
|
PORTVERSION= 3.1
|
|
PORTREVISION= 3
|
|
CATEGORIES= audio windowmaker
|
|
MASTER_SITES= http://www.ne.jp/asahi/linux/timecop/software/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Audio mixer for the WindowMaker dock with TV-like OSD
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
PLIST_FILES= bin/wmix
|
|
ALL_TARGET= ${PORTNAME}
|
|
USES= xorg
|
|
USE_XORG= xpm
|
|
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \
|
|
LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib"
|
|
|
|
PORTDOCS= AUTHORS BUGS INSTALL NEWS README
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/wmix ${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|