diff options
author | tg <tg@FreeBSD.org> | 2000-12-13 20:03:22 +0800 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 2000-12-13 20:03:22 +0800 |
commit | 1f29edaf90929ed2dcaa9ed9ba6d9f6d13755dd1 (patch) | |
tree | f85866eecd611f75bd2a66df83bb729feb518eb6 /games | |
parent | 1638d56a4cfa7ea74692629cf55940956a518b00 (diff) | |
download | freebsd-ports-gnome-1f29edaf90929ed2dcaa9ed9ba6d9f6d13755dd1.tar.gz freebsd-ports-gnome-1f29edaf90929ed2dcaa9ed9ba6d9f6d13755dd1.tar.zst freebsd-ports-gnome-1f29edaf90929ed2dcaa9ed9ba6d9f6d13755dd1.zip |
Fix manpage installation with XFree86-4.
PR: 23424
Submitted by: FUJISHIMA Satsuki <k5@cheerful.com>
Diffstat (limited to 'games')
-rw-r--r-- | games/awele/Makefile | 6 | ||||
-rw-r--r-- | games/awele/files/patch-aa | 29 |
2 files changed, 27 insertions, 8 deletions
diff --git a/games/awele/Makefile b/games/awele/Makefile index 0cbd0948db93..bbe2266a5c1b 100644 --- a/games/awele/Makefile +++ b/games/awele/Makefile @@ -17,13 +17,9 @@ LIB_DEPENDS= tk82.1:${PORTSDIR}/x11-toolkits/tk82 WRKSRC= ${WRKDIR}/awele USE_IMAKE= yes -NO_INSTALL_MANPAGES= yes MAN6= xawele.6 post-patch: - @/usr/bin/perl -pi -e "s|\@\@LOCALBASE\@\@|${LOCALBASE}|g;" ${WRKSRC}/Imakefile - -post-install: - ${INSTALL_DATA} ${WRKSRC}/xawele.man ${PREFIX}/man/man6/xawele.6 + ${PERL} -pi -e "s|\@\@LOCALBASE\@\@|${LOCALBASE}|g;" ${WRKSRC}/Imakefile .include <bsd.port.mk> diff --git a/games/awele/files/patch-aa b/games/awele/files/patch-aa index 49b3146ec235..873a72ece4bf 100644 --- a/games/awele/files/patch-aa +++ b/games/awele/files/patch-aa @@ -1,6 +1,6 @@ ---- Imakefile.orig Fri Dec 8 16:35:38 1995 -+++ Imakefile Fri May 1 09:44:16 1998 -@@ -2,14 +2,14 @@ +--- Imakefile.orig Sat Dec 9 00:35:38 1995 ++++ Imakefile Wed Nov 1 06:58:15 2000 +@@ -2,31 +2,31 @@ XCOMM install directory @@ -18,3 +18,26 @@ DEFINES = $(TK_INCLUDE) LOCAL_LIBRARIES = $(TK_LIB) -lX11 -lm XCOMM ANSI-C compiler +- CC = gcc ++XCOMM CC = gcc + + XCOMM Please don't change anything below this point + + DEPLIBS = $(DEPXLIB) + +- SRCS1 = tkAppInit.c awelewish.c alphabeta.c move.c util.c +- OBJS1 = tkAppInit.o awelewish.o alphabeta.o move.o util.o ++ SRCS = tkAppInit.c awelewish.c alphabeta.c move.c util.c ++ OBJS = tkAppInit.o awelewish.o alphabeta.o move.o util.o + + PROGRAMS = awelewish ++ MANSUFFIX = 6 + +-all:: $(PROGRAMS) +- +-ComplexProgramTarget_1($(PROGRAMS), $(LOCAL_LIBRARIES), ) ++ComplexProgramTargetNoMan($(PROGRAMS)) ++InstallManPage(xawele,$(MANDIR)) + + install:: $(PROGRAMS) $(AWELE_SCRIPT) + @echo "AWELE directory is " $(AWELE_DIR) |