mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
c32f72e68d
Change all ports to use USES=xorg-cat instead of the old XORG_CAT Add USES=xorg and USES=gl as needed to x11@ ports
29 lines
573 B
Makefile
29 lines
573 B
Makefile
# Created by: Bruce M Simpson <bms@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xvmcinfo
|
|
PORTVERSION= 0.1
|
|
CATEGORIES= x11
|
|
DISTFILES=
|
|
|
|
MAINTAINER= x11@FreeBSD.org
|
|
COMMENT= Print out XvMC extension adaptor information
|
|
|
|
USES= xorg
|
|
USE_XORG= xvmc xv x11
|
|
|
|
LDFLAGS+= -lXvMC -lXv -lX11
|
|
NO_WRKSUBDIR= defined
|
|
|
|
PLIST_FILES= bin/xvmcinfo
|
|
|
|
do-build:
|
|
${CC} ${CFLAGS} ${CPPFLAGS} \
|
|
-I${LOCALBASE}/include -L${LOCALBASE}/lib \
|
|
-o ${WRKSRC}/xvmcinfo ${FILESDIR}/xvmcinfo.c ${LDFLAGS}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xvmcinfo ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|