aboutsummaryrefslogtreecommitdiff
path: root/x11/xmotd/Makefile
blob: 750999c9fe7b8f18ce0d0d37fd80f29d6c4d667b (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
51
52
53
54
55
# Created by: Matthew West <mwest@uct.ac.za>
# $FreeBSD$

PORTNAME=	xmotd
DISTVERSION=	1.17.3b
PORTREVISION=	2
CATEGORIES=	x11
MASTER_SITES=	http://www.ee.ryerson.ca/~elf/pub/

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Message-of-the-day browser for X11 and dumb-terminals

LICENSE=	GPLv2+
LICENSE_FILE=	${WRKSRC}/GNU

USES=		imake:noman xorg
USE_XORG=	ice sm x11 xaw xext xmu xt

PLIST_FILES=	bin/xmotd \
		man/man8/xmotd.8.gz

OPTIONS_DEFINE=	HTML MOTIF XPM

HTML_DESC=		Use HTML widget instead of ASCII text
HTML_MAKE_ARGS=		-DHAVE_HTML
HTML_BROKEN=		Does not compile when WITH_HTML is set

MOTIF_MAKE_ARGS=	-DMOTIF
MOTIF_USES=		motif

XPM_USE=		XORG=xpm

post-extract:
	@${TOUCH} ${WRKSRC}/xmotd.man

post-patch:
	@${REINPLACE_CMD} -e 's:/usr/local/bin/::g' ${WRKSRC}/xmotd.8
.for file in libhtmlw/HTML-PSformat.c main.c textmode.c xmotd.c
	@${REINPLACE_CMD} -e 's:malloc.h:stdlib.h:' ${WRKSRC}/${file}
.endfor

post-patch-HTML-on:
	@${REINPLACE_CMD} -e 's:XCOMM #define HAVE_HTML:#define HAVE_HTML:g' ${WRKSRC}/Imakefile

post-patch-MOTIF-on:
	@${REINPLACE_CMD} -e 's:XCOMM #define MOTIF:#define MOTIF:g' ${WRKSRC}/Imakefile

post-patch-XPM-on:
	@${REINPLACE_CMD} -e 's:XCOMM #define HAVE_XPM:#define HAVE_XPM:g' ${WRKSRC}/Imakefile

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/xmotd ${STAGEDIR}${LOCALBASE}/bin/xmotd
	${INSTALL_MAN} ${WRKSRC}/xmotd.8 ${STAGEDIR}${MANPREFIX}/man/man8

.include <bsd.port.mk>