diff options
author | asami <asami@FreeBSD.org> | 1998-11-25 14:13:41 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-11-25 14:13:41 +0800 |
commit | 0fc820e20a9bef8c83a85006b8df3529fa33934f (patch) | |
tree | ec850ddde254570c759151f0e452143e759273d4 /graphics/tiff | |
parent | 5f7d35d9e68d85de8af09afbcdb789e58313ca25 (diff) | |
download | freebsd-ports-gnome-0fc820e20a9bef8c83a85006b8df3529fa33934f.tar.gz freebsd-ports-gnome-0fc820e20a9bef8c83a85006b8df3529fa33934f.tar.zst freebsd-ports-gnome-0fc820e20a9bef8c83a85006b8df3529fa33934f.zip |
Create libtiff.so symlink for a.out case.
Diffstat (limited to 'graphics/tiff')
-rw-r--r-- | graphics/tiff/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/graphics/tiff/Makefile b/graphics/tiff/Makefile index 6a0e40d83d5d..f175b3926147 100644 --- a/graphics/tiff/Makefile +++ b/graphics/tiff/Makefile @@ -5,7 +5,7 @@ # Mikhail Teterin <mi@aldan.ziplink.net> # Jun-ichiro itojun Itoh <itojun@itojun.org> # -# $Id: Makefile,v 1.10 1998/09/18 22:04:16 smace Exp $ +# $Id: Makefile,v 1.11 1998/11/25 05:06:25 jseger Exp $ # DISTNAME= tiff-v3.4 @@ -61,12 +61,17 @@ MAN3= TIFFCheckTile.3t TIFFClose.3t TIFFComputeStrip.3t TIFFComputeTile.3t \ DOCDIR= ${PREFIX}/share/doc/tiff +.include <bsd.port.pre.mk> + post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCDIR}/images ${INSTALL_DATA} ${WRKSRC}/html/*.html ${DOCDIR} ${INSTALL_DATA} ${WRKSRC}/html/images/* ${DOCDIR}/images .endif +.if ${PORTOBJFORMAT} == "aout" + ${LN} -sf libtiff.so.1.0 ${PREFIX}/lib/libtiff.so +.endif ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib -.include <bsd.port.mk> +.include <bsd.port.post.mk> |