aboutsummaryrefslogtreecommitdiff
path: root/x11/buttonbox/Makefile
blob: 3dac8044c74ae8dc91d84742b9385c7399d643e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# New ports collection makefile for:	buttonbox
# Date created:				2000-12-17
# Whom:					trevor
#
# $FreeBSD$
#

PORTNAME=	buttonbox
PORTVERSION=	0.03
PORTREVISION=	1
CATEGORIES=	x11
MASTER_SITES=	${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR=	trevor
DISTNAME=	${PORTNAME:S/b/B/g}-${PORTVERSION}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Xlib-based application launcher

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>