diff options
author | jkh <jkh@FreeBSD.org> | 1994-09-24 11:54:41 +0800 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-09-24 11:54:41 +0800 |
commit | 853cc1d41ac76f4fd2c4c912defd026f3bb549f5 (patch) | |
tree | 49562fc7d60be0ea659bea2dd3e9eca82dab1e0b /games | |
parent | 07fb025f3be19fa09c8b7a9907494d5edb2deebc (diff) | |
download | freebsd-ports-gnome-853cc1d41ac76f4fd2c4c912defd026f3bb549f5.tar.gz freebsd-ports-gnome-853cc1d41ac76f4fd2c4c912defd026f3bb549f5.tar.zst freebsd-ports-gnome-853cc1d41ac76f4fd2c4c912defd026f3bb549f5.zip |
Update this to fix install problem.
Submitted by: jmz
Diffstat (limited to 'games')
-rw-r--r-- | games/jetpack/files/patch-ac | 34 |
1 files changed, 22 insertions, 12 deletions
diff --git a/games/jetpack/files/patch-ac b/games/jetpack/files/patch-ac index b8fd5e9bc2c4..11e8dcc09ae2 100644 --- a/games/jetpack/files/patch-ac +++ b/games/jetpack/files/patch-ac @@ -1,7 +1,7 @@ -*** Imakefile.orig Mon Nov 8 15:16:05 1993 ---- Imakefile Thu Sep 22 16:30:18 1994 +*** Imakefile.orig Mon Apr 6 12:59:31 1992 +--- Imakefile Fri Sep 23 18:24:11 1994 *************** -*** 1,44 **** +*** 1,54 **** ! SRCS = bitmap.c bonus.c collision.c demo.c draw.c erase.c events.c\ gameover.c initx.c main.c maze.c message.c normal.c quitx.c scores.c\ setinmaze.c setup.c special.c time.c update.c windowx.c @@ -46,7 +46,17 @@ ComplexProgramTarget(jetpack) ---- 1,45 ---- + DependTarget() + DependDependency() + + InstallNonExec(levels/000,$(LEVELFILE)000) + + # oops, I can't figure how to override the template default to install the + # man page as jetpack.1, so I install both and remove the bad one. + install.man:: jetpack.man +! $(INSTALL) -c $(INSTMANFLAGS) jetpack.man $(MANDIR)/jetpack.1 +! @rm -f $(MANDIR)/jetpack.n +--- 1,58 ---- ! SRCS = bitmap.c bonus.c collision.c demo.c draw.c erase.c events.c\ gameover.c initx.c main.c maze.c message.c normal.c quitx.c scores.c\ setinmaze.c setup.c special.c time.c update.c windowx.c @@ -92,14 +102,14 @@ ComplexProgramTarget(jetpack) -*************** -*** 50,54 **** - # oops, I can't figure how to override the template default to install the - # man page as jetpack.1, so I install both and remove the bad one. - install.man:: jetpack.man -! $(INSTALL) -c $(INSTMANFLAGS) jetpack.man $(MANDIR)/jetpack.1 -! @rm -f $(MANDIR)/jetpack.n ---- 51,55 ---- + DependTarget() + DependDependency() + ++ install:: ++ MakeDir($(LIBDIR)) ++ + InstallNonExec(levels/000,$(LEVELFILE)000) + # oops, I can't figure how to override the template default to install the # man page as jetpack.1, so I install both and remove the bad one. install.man:: jetpack.man |