diff options
author | mi <mi@FreeBSD.org> | 2001-07-04 00:10:41 +0800 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2001-07-04 00:10:41 +0800 |
commit | 43cfae46919e65bd511334dfc13de14f4bd1a32e (patch) | |
tree | c5f2e3c5c1c0524e6058af77cea6d0ba92173eab /graphics/gdtclft | |
parent | bc17b68fa1503747184012ef279c8817c5fc597b (diff) | |
download | freebsd-ports-gnome-43cfae46919e65bd511334dfc13de14f4bd1a32e.tar.gz freebsd-ports-gnome-43cfae46919e65bd511334dfc13de14f4bd1a32e.tar.zst freebsd-ports-gnome-43cfae46919e65bd511334dfc13de14f4bd1a32e.zip |
Package building for this port was broken, when `n' was removed from the
list of recognized MAN-sections in bsd.man.mk. The port's Makefile.bsd
simply declared MANN=gdtclft.n and the included bsd.lib.mk was doing the
right thing.
Now I had to add an explicit post-install target to the main Makefile.
Diffstat (limited to 'graphics/gdtclft')
-rw-r--r-- | graphics/gdtclft/Makefile | 4 | ||||
-rw-r--r-- | graphics/gdtclft/files/Makefile.bsd | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/graphics/gdtclft/Makefile b/graphics/gdtclft/Makefile index 047feb0f0971..9342f0112d22 100644 --- a/graphics/gdtclft/Makefile +++ b/graphics/gdtclft/Makefile @@ -27,7 +27,9 @@ MAKE_ENV= TCL_VER=${TCL_VER} MKDIR="${MKDIR}" \ ALL_TARGET= all MANN= gdtclft.n -MANCOMPRESSED= maybe + +post-install: + ${INSTALL_MAN} ${WRKSRC}/${MANN} ${PREFIX}/man/mann/ .include <bsd.port.mk> diff --git a/graphics/gdtclft/files/Makefile.bsd b/graphics/gdtclft/files/Makefile.bsd index da8d1a98b4e6..2949a54eea69 100644 --- a/graphics/gdtclft/files/Makefile.bsd +++ b/graphics/gdtclft/files/Makefile.bsd @@ -25,7 +25,6 @@ CFLAGS +=-I${PREFIX}/include/tcl${TCL_VER} -I${PREFIX}/include/gd CFLAGS +=-DNDEBUG -Wall -I. -DUSE_TCL_STUBS -I${PREFIX}/include CFLAGS +=-DVERSION=\"${VERSION}\" -MANn = gdtclft.n INTERNALLIB = don't build the useless static version all: ${SHLIB_NAME} pkgIndex.tcl |