4da13b8f8e
Approved by: bapt kwm Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D12643
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xvattr
|
|
PORTVERSION= 1.3
|
|
PORTREVISION= 9
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://xvattr.sourcearchive.com/downloads/1.3/
|
|
DISTFILES= xvattr_1.3.orig.tar.gz
|
|
|
|
MAINTAINER= cy@FreeBSD.org
|
|
COMMENT= Getting and setting Xv attributes
|
|
|
|
USE_XORG= x11 xv
|
|
USES= pkgconfig
|
|
|
|
PLIST_FILES= bin/${PORTNAME} bin/g${PORTNAME} \
|
|
man/man1/${PORTNAME}.1.gz
|
|
|
|
CFLAGS+= -DVERSION=\"${PORTVERSION}\"
|
|
|
|
OPTIONS_DEFINE= GTK1
|
|
GTK1_DESC= GTK1 support (Default is GTK2)
|
|
GTK1_USE= GNOME=gtk12
|
|
GTK1_VARS= GTK_PC=gtk+
|
|
GTK1_USE_OFF= GNOME=gtk20
|
|
GTK1_VARS_OFF= GTK_PC=gtk+-2.0
|
|
|
|
post-extract:
|
|
@${RM} ${WRKSRC}/getopt.h
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${CC} ${CFLAGS} ${PORTNAME}.c -o ${PORTNAME} \
|
|
`pkg-config --cflags --libs xv x11`
|
|
cd ${WRKSRC} && ${CC} ${CFLAGS} g${PORTNAME}.c -o g${PORTNAME} \
|
|
`pkg-config --cflags --libs ${GTK_PC} xv x11`
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/g${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|