blob: 107fd115349fe1d51253baeb929a4ecfc4984f08 (
plain)
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
63
64
65
|
# $NetBSD: Makefile,v 1.21 2021/05/24 19:55:09 wiz Exp $
DISTNAME= xalarm-3.06
PKGREVISION= 5
CATEGORIES= time
MASTER_SITES= ${MASTER_SITE_XCONTRIB:=utilities/}
MAINTAINER= pkgsrc-users@NetBSD.org
COMMENT= X11 interactive alarm clock
DEPENDS+= skill>=4.0:../../sysutils/skill
USE_IMAKE= yes
FORTUNE= "Sorry, xfortune is unavailable - no fortune!"
YOW= "Sorry, xyow is unavailable - no yow!"
KILL= /bin/kill # should this be in bsd.pkg.mk ?
# does not directly support Xaw3d
BUILDLINK_TRANSFORM+= l:Xaw:Xaw3d
.PHONY: buildlink-Xaw3d-inc-hack
pre-configure: buildlink-Xaw3d-inc-hack
buildlink-Xaw3d-inc-hack: buildlink-directories
cd ${BUILDLINK_DIR}/include/X11 && ln -s Xaw3d Xaw
.include "../../mk/bsd.prefs.mk"
.if defined(XALARM_USE_YOW)
DEPENDS+= emacs20>=20.7:../../editors/emacs
.endif
.if ${OPSYS} == "NetBSD"
. if exists(/usr/games/fortune)
FORTUNE= `/usr/games/fortune`
. endif
MAKE_FLAGS+= EXTRA_DEFINES=-DFORKRETURNSPID_T
.endif
pre-configure:
.if defined(XALARM_USE_YOW)
# if multiple version emacs of emacs are there, take the higher one...
${RUN}YOW=`${FIND} ${LOCALBASE}/libexec/emacs -name yow -print 2>/dev/null | ${SORT} -rn | ${HEAD} -1` ; \
if ${TEST} "x$${YOW}" = "x" ; then \
YOW=${YOW:Q} ; \
fi ; ${SETENV} YOW="$${YOW}" \
${SED} -e "s|@PRG@|\`$${YOW}\`|" \
-e 's|@XPRG@|xyow|' \
${FILESDIR}/xprg > ${WRKSRC}/xyow
.else
${RUN}${SED} -e 's|@PRG@|${YOW}|' \
-e 's|@XPRG@|xyow|' \
${FILESDIR}/xprg > ${WRKSRC}/xyow
.endif
${RUN}${SED} -e 's|@PRG@|${FORTUNE}|' \
-e 's|@XPRG@|xfortune|' \
${FILESDIR}/xprg > ${WRKSRC}/xfortune
${RUN}${SED} -e 's|@SKILL@|${LOCALBASE}/bin/skill|' \
-e 's|@GREP@|${GREP}|' \
-e 's|@KILL@|${KILL}|' ${FILESDIR}/fns.h.in > ${WRKSRC}/fns.h
${RUN}${CP} ${FILESDIR}/XAlarm-color.ad ${WRKSRC}/
.include "../../x11/libXpm/buildlink3.mk"
.include "../../x11/libXaw3d/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|