mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
6f6fbe4bdf
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav
34 lines
616 B
Makefile
34 lines
616 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>
|