diff options
author | asami <asami@FreeBSD.org> | 1995-05-31 14:01:49 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-05-31 14:01:49 +0800 |
commit | 10a48d6c5153bb4817c0034edf8f9517b3fc81eb (patch) | |
tree | 2466e4f96f22b8fc9179ff45101833b69a63a69a /x11-toolkits/iv | |
parent | b775d64812b24843332829da1da87db7c146a71f (diff) | |
download | freebsd-ports-gnome-10a48d6c5153bb4817c0034edf8f9517b3fc81eb.tar.gz freebsd-ports-gnome-10a48d6c5153bb4817c0034edf8f9517b3fc81eb.tar.zst freebsd-ports-gnome-10a48d6c5153bb4817c0034edf8f9517b3fc81eb.zip |
Add post-install target to make symbolic links for shared libraries
(to make ldconfig happy) and gzip manpages.
Diffstat (limited to 'x11-toolkits/iv')
-rw-r--r-- | x11-toolkits/iv/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/x11-toolkits/iv/Makefile b/x11-toolkits/iv/Makefile index 110a71f6a47a..baa51e136302 100644 --- a/x11-toolkits/iv/Makefile +++ b/x11-toolkits/iv/Makefile @@ -3,7 +3,7 @@ # Date created: 23.sept.1994 # Whom: adam # -# $Id: Makefile,v 1.6 1995/04/16 15:33:42 ache Exp $ +# $Id: Makefile,v 1.7 1995/05/29 12:42:41 asami Exp $ # VERSION= 3.1 @@ -28,4 +28,10 @@ pre-fetch: fi .endif +post-install: + cd ${PREFIX}/interviews/man/mann; gzip -9nf *.n +# need these in ${PREFIX}/lib so that ldconfig can find them + ln -fs ../interviews/lib/FREEBSD/libIV.so.3.1 ${PREFIX}/lib + ln -fs ../interviews/lib/FREEBSD/libUnidraw.so.3.1 ${PREFIX}/lib + .include <bsd.port.mk> |