freebsd-ports/x11/buttonbox/Makefile
Akinori MUSHA a80f0bd0dd Use ${ECHO_CMD} instead of ${ECHO} where you mean the echo command;
the ECHO macro is set to "echo" by default, but it is set to "true" if
make(1) is invoked with the -s option while ECHO_CMD is always set to
the echo command.
2002-01-29 12:14:18 +00:00

50 lines
1.2 KiB
Makefile

# New ports collection makefile for: buttonbox
# Date created: 2000-12-17
# Whom: trevor
#
# $FreeBSD$
#
PORTNAME= buttonbox
PORTVERSION= 0.03
CATEGORIES= x11
MASTER_SITES= http://www.sto-kerrig.org/buttonbox/ \
${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= trevor
DISTNAME= ${PORTNAME:S/b/B/g}-${PORTVERSION}
MAINTAINER= trevor@FreeBSD.org
DOCDIR= share/doc/${PORTNAME}
DOCS= COPYING ChangeLog DEDICATION README TODO
PLIST= ${WRKDIR}/pkg-plist
USE_X_PREFIX= yes
do-build:
cd ${WRKSRC} && ${CC} ${CFLAGS} -o buttonbox -L${X11BASE}/lib \
-I${X11BASE}/include -lX11 -lXext button.c configuration.c \
colour.c dispatcher.c main.c
pre-install:
${ECHO_CMD} bin/buttonbox > ${PLIST}
${ECHO_CMD} lib/X11/app-defaults/ButtonBox.ad >> ${PLIST}
.if !defined(NOPORTDOCS)
for i in ${DOCS}; \
do ${ECHO_CMD} ${DOCDIR}/$${i} >> ${PLIST}; \
done
${ECHO_CMD} @dirrm ${DOCDIR} >> ${PLIST}
.endif
do-install:
${INSTALL_DATA} ${WRKSRC}/ButtonBox.ad ${X11BASE}/lib/X11/app-defaults/
${INSTALL_PROGRAM} ${WRKSRC}/buttonbox ${X11BASE}/bin/
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/${DOCDIR}
for i in ${DOCS}; \
do ${INSTALL_DATA} ${WRKSRC}/$${i} ${PREFIX}/${DOCDIR}; \
done
.endif
.include <bsd.port.mk>