diff options
author | mi <mi@FreeBSD.org> | 2015-03-09 02:52:47 +0000 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2015-03-09 02:52:47 +0000 |
commit | 9a05a1830c0c2ca0c6af4f3b23faab3a14c355a4 (patch) | |
tree | 2a153ea2bdd68f1a04d65f7443bc5ee9041b42b6 | |
parent | edfd5dfb761aad24e63b1940e89a86f28a02d840 (diff) | |
download | FreeBSD-ports-9a05a1830c0c2ca0c6af4f3b23faab3a14c355a4.zip FreeBSD-ports-9a05a1830c0c2ca0c6af4f3b23faab3a14c355a4.tar.gz |
Fix a typo, which broke -- among other things -- port graphics/xfpovray.
Upstream notified...
-rw-r--r-- | x11-toolkits/xforms/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/x11-toolkits/xforms/Makefile b/x11-toolkits/xforms/Makefile index 263f1e1..bc35adf 100644 --- a/x11-toolkits/xforms/Makefile +++ b/x11-toolkits/xforms/Makefile @@ -3,7 +3,7 @@ PORTNAME= xforms DISTVERSION= 1.2.4 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= x11-toolkits graphics MASTER_SITES= ${MASTER_SITE_SAVANNAH} @@ -27,6 +27,10 @@ CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip +post-patch: + ${REINPLACE_CMD} 's|#define fl_draw_box|#define fl_drw_box|' \ + ${WRKSRC}/lib/include/Basic.h + BROKEN_ia64= Does not compile on ia64 .include <bsd.port.mk> |