blob: 50eb7a455e5fba10a61cc103474b3947d27d22f4 (
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
56
57
58
59
60
61
62
|
# New ports collection makefile for: xmotd
# Date created: 29 January 2001
# Whom: Matthew West <mwest@uct.ac.za>
#
# $FreeBSD$
#
PORTNAME= xmotd
PORTVERSION= 1.16
CATEGORIES= x11
MASTER_SITES= http://www.ee.ryerson.ca/~elf/pub/
MAINTAINER= mwest@uct.ac.za
COMMENT= A message-of-the-day browser for X11 and dumb-terminals
USE_IMAKE= yes
USE_PERL5_BUILD=yes
NO_INSTALL_MANPAGES= yes
XFREE86_HTML_MAN= no
MAN8= xmotd.8
.if defined(USE_HTML)
MAKE_ARGS+= -DHAVE_HTML
.endif
.if defined(USE_MOTIF)
MAKE_ARGS+= -DMOTIF
.endif
pre-fetch:
@${ECHO} ""
@${ECHO} "You may use the following build options:"
@${ECHO} ""
@${ECHO} " USE_HTML=yes uses HTML widget instead of ASCII text"
@${ECHO} " USE_MOTIF=yes uses Motif widget library"
@${ECHO} " USE_XPM=yes allows colour XPM pixmaps"
@${ECHO} ""
post-extract:
@${TOUCH} ${WRKSRC}/xmotd.man
post-patch:
@${PERL} -pi -e 's:/usr/local/bin/::g' ${WRKSRC}/xmotd.8
.for file in libhtmlw/HTML-PSformat.c main.c textmode.c xmotd.c
@${PERL} -pi -e 's:malloc.h:stdlib.h:' ${WRKSRC}/${file}
.endfor
.if defined(USE_HTML)
@${PERL} -pi.orig -e 's:XCOMM #define HAVE_HTML:#define HAVE_HTML:g' ${WRKSRC}/Imakefile
.endif
.if defined (USE_MOTIF)
@${PERL} -pi.orig -e 's:XCOMM #define MOTIF:#define MOTIF:g' ${WRKSRC}/Imakefile
.endif
.if defined(USE_XPM)
@${PERL} -pi.orig -e 's:XCOMM #define HAVE_XPM:#define HAVE_XPM:g' ${WRKSRC}/Imakefile
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/xmotd ${X11BASE}/bin/xmotd
${INSTALL_MAN} ${WRKSRC}/xmotd.8 ${MANPREFIX}/man/man8
.include <bsd.port.mk>
|