diff options
author | jfieber <jfieber@FreeBSD.org> | 1997-07-07 10:43:46 +0800 |
---|---|---|
committer | jfieber <jfieber@FreeBSD.org> | 1997-07-07 10:43:46 +0800 |
commit | 0567e2a26049a6359325854ddfb9f13d90cfae6f (patch) | |
tree | 7494d5ea932964b10c3f08865f159e9dc077c754 /textproc/openjade/Makefile | |
parent | 56d5c79c362eea23d71a2cd33265828833f5c003 (diff) | |
download | freebsd-ports-gnome-0567e2a26049a6359325854ddfb9f13d90cfae6f.tar.gz freebsd-ports-gnome-0567e2a26049a6359325854ddfb9f13d90cfae6f.tar.zst freebsd-ports-gnome-0567e2a26049a6359325854ddfb9f13d90cfae6f.zip |
Unbreak this. Sort of. Shared libraries are still disabled
until I can figure out what is going on with them.
An assortment of other small messes were cleaned up.
Diffstat (limited to 'textproc/openjade/Makefile')
-rw-r--r-- | textproc/openjade/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/textproc/openjade/Makefile b/textproc/openjade/Makefile index 45ac15a73f0d..6bd4526d88fa 100644 --- a/textproc/openjade/Makefile +++ b/textproc/openjade/Makefile @@ -3,7 +3,7 @@ # Date created: June 19, 1997 # Whom: jfieber # -# $Id: Makefile,v 1.2 1997/06/29 09:49:49 obrien Exp $ +# $Id: Makefile,v 1.3 1997/07/06 02:54:02 jfieber Exp $ # DISTNAME= jade0_8 @@ -14,8 +14,6 @@ EXTRACT_SUFX= .zip MAINTAINER= jfieber@FreeBSD.ORG -BROKEN= C++ library problems on pre and post 2.2.1 systems - BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip EXTRACT_CMD= unzip @@ -25,11 +23,11 @@ NO_WRKSUBDIR= yes # Unfortunately, jade needs a more modern C++ compiler than # comes with FreeBSD 2.1.x. .if !exists(/usr/lib/libstdc++.a) -BROKEN= yes +BROKEN= Requires FreeBSD 2.2 or later. .endif - -post-install: - /sbin/ldconfig -m ${PREFIX}/lib +# Shared libraries are currently broken for this port. +# post-install: +# /sbin/ldconfig -m ${PREFIX}/lib .include <bsd.port.mk> |