diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2006-01-24 15:11:08 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2006-01-24 15:11:08 +0000 |
commit | dedfeb6928418d71e20659d89e21c1d687da382f (patch) | |
tree | ee1d8945f70e4bab4e45af84cb0ff4f2bdf6119f /graphics/xfig | |
parent | 858ea90f3845504b420b0d4f09ce1bff2e0ce543 (diff) | |
download | ports-dedfeb6928418d71e20659d89e21c1d687da382f.tar.gz ports-dedfeb6928418d71e20659d89e21c1d687da382f.zip |
- Fix runtime; new_string prototype was not defined
PR: ports/92223
Submitted by: Steven G. Kargl <kargl@troutmask.apl.washington.edu>
Notes
Notes:
svn path=/head/; revision=154355
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 3e04cdf3c89d..726f8445770b 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 000000000000..568c9e322513 --- /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" |