![cgd](/assets/img/avatar_default.png)
* Have 'fake' options for all offensive fortune files (fortunes2-o and limerick moved to fortunes2-o.real and limerick.real via repository copy). * build all offensive fortune data files, etc., in the same way. * Have installation of offensive fortunes controlled by one make variable. To disable build/install of offensive fortunes, set INSTALL_OFFENSIVE_FORTUNES to anything other than "YES" on the make command line, in bsd.own.mk, or in /etc/mk.conf or your ${MAKECONF} file. (If changing the setting, you should 'make clean' here and rebuild the fortunes before installing.) * Don't use variables that bsd.prog.mk thinks have certain meanings.
64 lines
1.8 KiB
Makefile
64 lines
1.8 KiB
Makefile
# $NetBSD: Makefile,v 1.17 1996/12/23 01:14:34 cgd Exp $
|
|
# @(#)Makefile 8.2 (Berkeley) 4/19/94
|
|
|
|
.include <bsd.own.mk> # for INSTALL_OFFENSIVE_FORTUNES
|
|
|
|
SRCFILES= fortunes fortunes2 startrek zippy
|
|
DATFILES= fortunes.dat fortunes2.dat startrek.dat zippy.dat \
|
|
fortunes-o fortunes-o.dat fortunes2-o fortunes2-o.dat \
|
|
limerick limerick.dat
|
|
|
|
# TO AVOID INSTALLIND THE POTENTIALLY OFFENSIVE FORTUNES, RUN 'make' with
|
|
# "INSTALL_OFFENSIVE_FORTUNES=NO", or set "INSTALL_OFFENSIVE_FORTUNES=NO"
|
|
# IN bsd.own.mk OR /etc/mk.conf.
|
|
|
|
INSTALL_OFFENSIVE_FORTUNES?= YES
|
|
.if (${INSTALL_OFFENSIVE_FORTUNES} == "YES")
|
|
TYPE= real
|
|
.else
|
|
TYPE= fake
|
|
.endif
|
|
|
|
CLEANFILES+=${DATFILES}
|
|
|
|
STRFILE!=cd $(.CURDIR)/../strfile; \
|
|
printf "xxx:\n\techo \$${.OBJDIR}/strfile\n" | \
|
|
${MAKE} -r -s -f - xxx | grep strfile
|
|
|
|
all: ${DATFILES}
|
|
|
|
install:
|
|
(cd ${.CURDIR} && ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \
|
|
${SRCFILES} ${DESTDIR}/usr/share/games/fortune)
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \
|
|
${DATFILES} ${DESTDIR}/usr/share/games/fortune
|
|
|
|
# Normal fortunes: build directly from data files.
|
|
|
|
fortunes.dat fortunes2.dat startrek.dat zippy.dat:
|
|
${STRFILE} -rs ${.CURDIR}/${.TARGET:R} ${.TARGET}
|
|
fortunes.dat: fortunes
|
|
fortunes2.dat: fortunes2
|
|
startrek.dat: startrek
|
|
zippy.dat: zippy
|
|
|
|
# Obscene fortunes: we have to build source and data files
|
|
|
|
fortunes-o: fortunes-o.${TYPE}
|
|
tr [a-zA-Z] [n-za-mN-ZA-M] < ${.ALLSRC} > ${.TARGET}
|
|
fortunes-o.dat: fortunes-o
|
|
${STRFILE} -rsx ${.ALLSRC} ${.TARGET}
|
|
|
|
fortunes2-o: fortunes2-o.${TYPE}
|
|
tr [a-zA-Z] [n-za-mN-ZA-M] < ${.ALLSRC} > ${.TARGET}
|
|
fortunes2-o.dat: fortunes2-o
|
|
${STRFILE} -rsx ${.ALLSRC} ${.TARGET}
|
|
|
|
limerick: limerick.${TYPE}
|
|
tr [a-zA-Z] [n-za-mN-ZA-M] < ${.ALLSRC} > ${.TARGET}
|
|
limerick.dat: limerick
|
|
${STRFILE} -rsx ${.ALLSRC} ${.TARGET}
|
|
|
|
|
|
.include <bsd.prog.mk>
|