freebsd-ports/x11/xvmcinfo/Makefile
Bruce M Simpson 657a207594 Add new port xvmcinfo, a simple tool to print XvMC extension info
for checking motion compensation capabilities for
installed video adapters in Xorg.
2008-12-06 07:51:32 +00:00

33 lines
615 B
Makefile

# New ports collection makefile for: xvmcinfo
# Date Created: 6 Dec 2008
# Whom: bms
#
# $FreeBSD$
#
PORTNAME= xvmcinfo
PORTVERSION= 0.1
CATEGORIES= x11
DISTFILES=
MAINTAINER= x11@FreeBSD.org
COMMENT= Print out XvMC extension adaptor information
USE_XORG= xvmc xv x11
LDFLAGS= -lXvMC -lXv -lX11
NO_WRKSUBDIR= defined
PLIST_FILES= bin/xvmcinfo
NO_MAN= defined
do-build:
${CC} ${CFLAGS} ${CPPFLAGS} \
-I${LOCALBASE}/include -L${LOCALBASE}/lib \
-o ${WRKSRC}/xvmcinfo ${FILESDIR}/xvmcinfo.c ${LDFLAGS}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/xvmcinfo ${PREFIX}/bin
.include <bsd.port.mk>