summaryrefslogtreecommitdiff
path: root/editors/abiword/Makefile
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2000-02-29 18:31:30 +0000
committerjlam <jlam@pkgsrc.org>2000-02-29 18:31:30 +0000
commit03efc6a5c58748af101034d74731112ec2bc495e (patch)
treedadfb2636ff0ba6d227550efe68c5e091bba26e2 /editors/abiword/Makefile
parente201752bc5d0d1e9730b22ded1829c5c57b22852 (diff)
downloadpkgsrc-03efc6a5c58748af101034d74731112ec2bc495e.tar.gz
Update AbiWord Personal to 0.7.8. Selected highlights since 0.7.5:
True WYSIWYG. Previously, we had subtle reformatting discrepancies when changing resolutions (such as printing and zooming). No more character dirt. Overline support. Minor display glitches. Insert Date and Time. Page-level navigation. Better support for non-English content. LaTeX exporter. Word importer. Justin and Caolan have fixed things so that tabstops, breaks, unicode conversion, page break before, widow/orphan control are all imported successfully now. RTF importer. Now handles negative values for margin-left and text-indent. Minor file format change. Error propagation. Unix stuff. By popular request, libstdc++ is no longer required. (We never really needed it anyhow.) PostScript emissions now use signed characters, as suggested by Bob Monaghan <bob@sbst.com>. With the latest fonts.dir, Symbol fonts should print properly now, too. First support for GNOME. Spelling speedup. The interactive spell check logic is now fast and smart like it should be, instead of woefully poky and dumb like it used to be. Subscript and superscript. View ruler. Stephen Hack <shack@uiuc.edu> implemented this menu item so that you can hide or show the ruler on a per-window basis. Compressed AbiWord files. The AbiWord file format (*.abw) was designed from the get-go to be a highly-readable form of XML. However, for those of you who care more about bloat than legibility, Richard Jefts <babs@cs.jhu.edu> added import/export logic for a gzip-compressed variant (*.zabw). Options dialog started. Zoom and Paragraph dialogs. Justification. Clipboard improvements. More Unicode-friendly. Smarter preferences.
Diffstat (limited to 'editors/abiword/Makefile')
-rw-r--r--editors/abiword/Makefile31
1 files changed, 13 insertions, 18 deletions
diff --git a/editors/abiword/Makefile b/editors/abiword/Makefile
index d9a352c73fa..e126e93bcc4 100644
--- a/editors/abiword/Makefile
+++ b/editors/abiword/Makefile
@@ -1,52 +1,47 @@
-# $NetBSD: Makefile,v 1.5 2000/02/09 20:20:52 tron Exp $
+# $NetBSD: Makefile,v 1.6 2000/02/29 18:31:30 jlam Exp $
#
+# According to the AbiSource license, compilations/distributions of AbiWord
+# not provided by AbiSource must be named "AbiWord Personal".
+#
DISTNAME= abi-${ABIWORD_VERS}
PKGNAME= abiword-personal-${ABIWORD_VERS}
-ABIWORD_VERS= 0.7.5
+ABIWORD_VERS= 0.7.8
CATEGORIES= editors
MASTER_SITES= http://www.abisource.com/downloads/Version-${ABIWORD_VERS}/lf/
-DISTFILES= ${ABISRC} ${ABIDISTFILES} ${UNIXFONTS} ${EXPATSRC} ${WVSRC}
+DISTFILES= ${ABISRC} ${ABIDISTFILES} ${ICONVSRC} ${EXPATSRC} \
+ ${UNIXFONTS} ${WVSRC}
MAINTAINER= jlam@netbsd.org
HOMEPAGE= http://www.abisource.com/
-BUILD_DEPENDS+= ${LOCALBASE}/bin/unzip:../../archivers/unzip
+BUILD_DEPENDS+= ${LOCALBASE}/bin/unzip:../../archivers/unzip
DEPENDS+= gtk+-1.2.*:../../x11/gtk
DEPENDS+= png>=1.0.3:../../graphics/png
+DEPENDS+= xpm-3.4k:../../graphics/xpm
USE_X11= yes
USE_GMAKE= yes
NO_CONFIGURE= yes
-ALL_TARGET= canonical
+ALL_TARGET= compile canonical
DIST_SUBDIR= abisuite
ABISRC= ${DISTNAME}${EXTRACT_SUFX}
ABIDISTFILES= abidistfiles-${ABIWORD_VERS}${EXTRACT_SUFX}
-UNIXFONTS= unixfonts-${ABIWORD_VERS}${EXTRACT_SUFX}
EXPATSRC= expat-${ABIWORD_VERS}${EXTRACT_SUFX}
+ICONVSRC= libiconv-${ABIWORD_VERS}${EXTRACT_SUFX}
+UNIXFONTS= unixfonts-${ABIWORD_VERS}${EXTRACT_SUFX}
WVSRC= wv-${ABIWORD_VERS}${EXTRACT_SUFX}
ABISUITE_HOME= ${PREFIX}/share/AbiSuite
ABISUITE_LIBEXEC= ${PREFIX}/libexec/AbiSuite
-.include "../../mk/bsd.prefs.mk"
-
-.if ${OPSYS} == "SunOS"
-ZLIB_DIR= ${LOCALBASE}/lib
-LDFLAGS+= -L${ZLIB_DIR}
-.endif
-
-LIBPNG_DIR= ${LOCALBASE}/lib
CPPFLAGS+= -I${LOCALBASE}/include
-LDFLAGS+= -L${LIBPNG_DIR}
+LDFLAGS+= -Wl,-R${LOCALBASE}/lib -L${LOCALBASE}/lib
MAKE_ENV+= ABI_BUILD_VERSION="${ABIWORD_VERS}" \
- MACHINE="${MACHINE}" \
ABISUITE_HOME="${ABISUITE_HOME}" \
ABISUITE_LIBEXEC="${ABISUITE_LIBEXEC}" \
- ZLIB_DIR="${ZLIB_DIR}" \
- LIBPNG_DIR="${LIBPNG_DIR}" \
OS_CFLAGS="${CPPFLAGS}" \
OS_DLLFLAGS="${LDFLAGS}"