diff options
author | Jean-Marc Zucconi <jmz@FreeBSD.org> | 1994-11-22 18:21:47 +0000 |
---|---|---|
committer | Jean-Marc Zucconi <jmz@FreeBSD.org> | 1994-11-22 18:21:47 +0000 |
commit | 4309f1b2f061741f320ceb1b1ae499c8c5db8ffb (patch) | |
tree | 20c43f793ebb93ad02b5c4ae3c7a2252fa62ead5 /games/xjewel/Makefile | |
parent | c93c2f1b19bb131a28ccf728d9695301f6bf9a08 (diff) |
Notes
Diffstat (limited to 'games/xjewel/Makefile')
-rw-r--r-- | games/xjewel/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/games/xjewel/Makefile b/games/xjewel/Makefile new file mode 100644 index 000000000000..211c45e57151 --- /dev/null +++ b/games/xjewel/Makefile @@ -0,0 +1,21 @@ +DISTNAME= xjewel-1.6 +DISTFILES= xjewel-1.6.tar.z +MASTER_SITES= ftp://ftp.warwick.ac.uk/pub/x11/ +USE_IMAKE= yes + +pre-install: + @mkdir -p ${PREFIX}/bin + @mkdir -p ${PREFIX}/lib/xjewel.font + @mkdir -p ${PREFIX}/man/man6 + @(cd ${WRKSRC}; ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} install.man) + @(cd ${WRKSRC}/bitmaps/; install -c seven_seg.pcf.Z fonts.dir \ + ${PREFIX}/lib/xjewel.font) + +.include <bsd.port.mk> + +install: + @(mv ${PREFIX}/bin/xjewel ${PREFIX}/bin/xjewel_; \ + echo "#!/bin/sh" >${PREFIX}/bin/xjewel; \ + echo "xset +fp ${PREFIX}/lib/xjewel.font" >>${PREFIX}/bin/xjewel; \ + echo "xjewel_" >>${PREFIX}/bin/xjewel; \ + chmod ugo+x ${PREFIX}/bin/xjewel) |