mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +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
44 lines
964 B
Makefile
44 lines
964 B
Makefile
# New ports collection makefile for: bbkeys
|
|
# Date created: 17 June 2000
|
|
# Whom: Patrick Seal <patseal@hyperhost.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bbkeys
|
|
PORTVERSION= 0.9.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11-wm
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= A.J.Caines@halplant.com
|
|
COMMENT= A keygrabber for the Blackbox window manager
|
|
|
|
BUILD_DEPENDS= blackbox:${PORTSDIR}/x11-wm/blackbox
|
|
|
|
USE_PERL5_BUILD= yes
|
|
USE_XORG= x11 xext
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= `pkg-config --cflags xft`
|
|
LDFLAGS+= `pkg-config --libs xft`
|
|
|
|
MAN1= bbkeys.1
|
|
MAN5= bbkeysrc.5
|
|
PORTDOCS= AUTHORS BUGS ChangeLog LICENSE NEWS README TODO
|
|
|
|
PLIST_FILES= bin/bbkeys %%DATADIR%%/bbkeysrc %%DATADIR%%/defaultStyle
|
|
PLIST_DIRS= %%DATADIR%%
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's#: install-docDATA#:#g' ${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}/
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|