diff options
author | wiz <wiz@pkgsrc.org> | 2001-08-09 14:34:56 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2001-08-09 14:34:56 +0000 |
commit | ed7bab20f10f440e683a845702568e9cbedd73ca (patch) | |
tree | f4c50a5286f18351a6c58007cf5eb9bf8d42e473 /graphics/xfig/Makefile | |
parent | ac816dc41518246c591c1ecfd439bac3c89f94d8 (diff) | |
download | pkgsrc-ed7bab20f10f440e683a845702568e9cbedd73ca.tar.gz |
Update to 3.2.3d, provided by Jim Bernard in pkg/13325.
Extract of changes since 3.2.3:
o Lots of new libraries (UML objects, knitting symbols, network
devices, Chen's model of Entity Relations, widgets, aircraft, maps,
chemical process flowshooets, PMOS&NMOS FET, and others)
o Object library now shows icons of all objects. The size of the icons
is selectable from 40 pixels to 120 via a pulldown menu and resource
(Fig.library_icon_size). The the old "list" view is also available.
o Simplistic super/subscripting by typing Ctrl-^ for superscript and
Ctrl-_ for subscript. It creates a new string in the proper size
and position for super- or subscripting. May be nested. Does NOT
work for centered or right-justified text.
o New export shortcut Shift-Alt-x or Shift-Meta-x to export using
current settings without popping up the panel
o New print shortcut Shift-Alt-p or Shift-Meta-p to print using current
settings without popping up the panel
o Support for importing PNG image files added
o GIF transparency for imported images honored by fig2dev now
o New option to print only active layers when exporting or printing (see
printing/exporting section in html docs).
o When loading a compressed Fig file that is either read-only, or is on
a read-only file system (e.g. a CDROM), xfig uncompresses it into the
temp directory (env TMPDIR, or /tmp if TMPDIR environvment variable is
undefined).
o xfig recalculates the bounds of compound objects read in from the file,
ignoring the bounds values in the file. This makes it easier for Fig
file generators to produce compound objects since they don't have to
know how to calculate the bounds themselves. fig2dev doesn't even use
those values but recalculates them upon reading the file.
o Increased maximum number of libraries to 100
as well as countless bug fixes (see CHANGES file in distribution).
Diffstat (limited to 'graphics/xfig/Makefile')
-rw-r--r-- | graphics/xfig/Makefile | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/graphics/xfig/Makefile b/graphics/xfig/Makefile index b679ea7b45e..1da0c64fb6a 100644 --- a/graphics/xfig/Makefile +++ b/graphics/xfig/Makefile @@ -1,22 +1,24 @@ -# $NetBSD: Makefile,v 1.26 2001/08/07 11:58:41 tron Exp $ +# $NetBSD: Makefile,v 1.27 2001/08/09 14:34:56 wiz Exp $ # -DISTNAME= xfig.3.2.3a -PKGNAME= xfig-3.2.3a -WRKSRC= ${WRKDIR}/${DISTNAME} +DISTNAME= xfig.3.2.3d.full +PKGNAME= xfig-3.2.3.4 +WRKSRC= ${WRKDIR}/xfig.3.2.3d CATEGORIES= graphics -MASTER_SITES= ${MASTER_SITE_XCONTRIB:=applications/drawing_tools/xfig/} +MASTER_SITES= ${MASTER_SITE_XCONTRIB:=applications/drawing_tools/xfig/} \ + ftp://www-epb.lbl.gov/xfig/ MAINTAINER= root@garbled.net HOMEPAGE= http://epb1.lbl.gov/BVSmith/xfig/ -COMMENT= CAD-like drawing tool. Good for simple colorful scale drawings & ISO's +COMMENT= CAD-like 2D drawing tool, good for colorful scale drawings & ISOs -DEPENDS+= transfig>=3.2.3:../../print/transfig -DEPENDS+= jpeg-6b:../../graphics/jpeg +DEPENDS+= transfig>=3.2.3.4:../../print/transfig USE_IMAKE= YES USE_XAW= YES -USE_XPM= YES +NO_INSTALL_MANPAGES= YES # install.all does install.man +INSTALL_TARGET= install install.all +CFLAGS+= -I${BUILDLINK_DIR}/include/X11 .include "../../mk/bsd.prefs.mk" @@ -30,6 +32,7 @@ pre-configure: .endif XFIGEXAMPLES= ${PREFIX}/share/examples/xfig +XFIGDOCDIR= ${PREFIX}/share/doc/xfig post-install: ${INSTALL_DATA_DIR} ${XFIGEXAMPLES} @@ -38,5 +41,8 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/Examples/*.jpg ${XFIGEXAMPLES} ${INSTALL_DATA} ${WRKSRC}/Examples/*.xbm ${XFIGEXAMPLES} ${INSTALL_DATA} ${WRKSRC}/Examples/*.xpm ${XFIGEXAMPLES} + ${INSTALL_DATA} ${WRKSRC}/Doc/FORMAT* ${XFIGDOCDIR} +.include "../../graphics/jpeg/buildlink.mk" +.include "../../graphics/xpm/buildlink.mk" .include "../../mk/bsd.pkg.mk" |