mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
91c3b180c1
Add USES=xorg, USES=gl and in a few cases USES=gnome to ports in categories starting with 'a'.
38 lines
916 B
Makefile
38 lines
916 B
Makefile
# Created by: Mike Makonnen <mtm@identd.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= asmixer
|
|
PORTVERSION= 0.5
|
|
PORTREVISION= 3
|
|
CATEGORIES= audio afterstep
|
|
MASTER_SITES= http://tigr.net/afterstep/download/asmixer/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Mixer control for AfterStep window manager
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= xorg
|
|
USE_XORG= xpm x11
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-xpm \
|
|
--with-xpm-includes=${LOCALBASE}/include \
|
|
--with-xpm-library=${LOCALBASE}/lib
|
|
|
|
PLIST_FILES= bin/asmixer man/man1/asmixer.1.gz
|
|
|
|
post-patch:
|
|
.for i in asmixer.c configure autoconf/config.h.in
|
|
@${REINPLACE_CMD} -e \
|
|
's|machine/soundcard.h|sys/soundcard.h| ; \
|
|
s|MACHINE_SOUNDCARD_H|SYS_SOUNDCARD_H| ; \
|
|
/sys\/syslimits.h/d' ${WRKSRC}/${i}
|
|
.endfor
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/asmixer ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/asmixer.man \
|
|
${STAGEDIR}${MANPREFIX}/man/man1/asmixer.1
|
|
|
|
.include <bsd.port.mk>
|