diff options
author | pav <pav@FreeBSD.org> | 2006-01-24 15:11:08 +0000 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2006-01-24 15:11:08 +0000 |
commit | 526d8a29396d66ee79c02f4094b3dbe4dd5fcc23 (patch) | |
tree | eaca713581ffba4577e6173d1b05953e633b668f /graphics/xfig | |
parent | 19d7c383915b9957133da3c2b695291b2e4ebf37 (diff) | |
download | FreeBSD-ports-526d8a29396d66ee79c02f4094b3dbe4dd5fcc23.zip FreeBSD-ports-526d8a29396d66ee79c02f4094b3dbe4dd5fcc23.tar.gz |
- Fix runtime; new_string prototype was not defined
PR: ports/92223
Submitted by: Steven G. Kargl <kargl@troutmask.apl.washington.edu>
Diffstat (limited to 'graphics/xfig')
-rw-r--r-- | graphics/xfig/Makefile | 5 | ||||
-rw-r--r-- | graphics/xfig/files/patch-w_drawprim.c | 10 |
2 files changed, 12 insertions, 3 deletions
diff --git a/graphics/xfig/Makefile b/graphics/xfig/Makefile index 3e04cdf..726f8445 100644 --- a/graphics/xfig/Makefile +++ b/graphics/xfig/Makefile @@ -7,9 +7,9 @@ PORTNAME= xfig PORTVERSION= 3.2.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics -MASTER_SITES= http://www.xfig.org/xfigdist/ \ +MASTER_SITES= http://xfig.org/software/xfig/${PORTVERSION}/ \ ftp://www-epb.lbl.gov/xfig/%SUBDIR%/ MASTER_SITE_SUBDIR= . previous_versions DISTNAME= ${PORTNAME}.${PORTVERSION}.full @@ -26,7 +26,6 @@ CONFLICTS= xfig-3.2.5* WRKSRC= ${WRKDIR}/${PORTNAME}.${PORTVERSION} -USE_REINPLACE= yes USE_IMAKE= yes USE_XPM= yes MAN1= xfig.1 diff --git a/graphics/xfig/files/patch-w_drawprim.c b/graphics/xfig/files/patch-w_drawprim.c new file mode 100644 index 0000000..568c9e322 --- /dev/null +++ b/graphics/xfig/files/patch-w_drawprim.c @@ -0,0 +1,10 @@ +--- w_drawprim.c.orig Mon Jan 23 11:45:22 2006 ++++ w_drawprim.c Mon Jan 23 11:45:40 2006 +@@ -35,6 +35,7 @@ + #include "paintop.h" + #include "mode.h" + #include "object.h" ++#include "u_create.h" + #include "u_fonts.h" + #include "w_canvas.h" + #include "w_drawprim.h" |