summaryrefslogtreecommitdiff
path: root/print
diff options
context:
space:
mode:
authorrh <rh>1999-07-31 19:13:07 +0000
committerrh <rh>1999-07-31 19:13:07 +0000
commit617b6e7f77a070d2dcaa41d692c53188bad0c507 (patch)
tree2fe0a46e018db1f2883c4e964db7101f6de94c88 /print
parentc8de0339567dae569c85cdc69cf1b0b439ea5276 (diff)
downloadpkgsrc-617b6e7f77a070d2dcaa41d692c53188bad0c507.tar.gz
Import of gnome-print-0.4, a prototype implementation of the Gnome Printing
Architecture.
Diffstat (limited to 'print')
-rw-r--r--print/gnome-print/Makefile19
-rw-r--r--print/gnome-print/files/md53
-rw-r--r--print/gnome-print/files/patch-sum3
-rw-r--r--print/gnome-print/patches/patch-aa64
-rw-r--r--print/gnome-print/pkg/COMMENT1
-rw-r--r--print/gnome-print/pkg/DESCR15
-rw-r--r--print/gnome-print/pkg/PLIST70
7 files changed, 175 insertions, 0 deletions
diff --git a/print/gnome-print/Makefile b/print/gnome-print/Makefile
new file mode 100644
index 00000000000..a08113b2bbd
--- /dev/null
+++ b/print/gnome-print/Makefile
@@ -0,0 +1,19 @@
+# $NetBSD: Makefile,v 1.1.1.1 1999/07/31 19:13:07 rh Exp $
+#
+
+DISTNAME= gnome-print-0.4
+CATEGORIES= print
+MASTER_SITES= http://gd.tuwien.ac.at/hci/gnome.org/GNOME/sources/gnome-print/
+
+MAINTAINER= packages@netbsd.org
+HOMEPAGE= http://www.levien.com/gnome/print-arch.html
+
+DEPENDS+= gnome-libs-1.0.10:../../x11/gnome-libs
+
+GNU_CONFIGURE= YES
+USE_LIBTOOL= YES
+USE_X11BASE= YES
+LDFLAGS+= -L${LOCALBASE}/lib
+CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include"
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/print/gnome-print/files/md5 b/print/gnome-print/files/md5
new file mode 100644
index 00000000000..591b6db2c65
--- /dev/null
+++ b/print/gnome-print/files/md5
@@ -0,0 +1,3 @@
+$NetBSD: md5,v 1.1.1.1 1999/07/31 19:13:07 rh Exp $
+
+MD5 (gnome-print-0.4.tar.gz) = 137571ca9dbb625f54731e9b73ed5ed3
diff --git a/print/gnome-print/files/patch-sum b/print/gnome-print/files/patch-sum
new file mode 100644
index 00000000000..c99af7f5ea2
--- /dev/null
+++ b/print/gnome-print/files/patch-sum
@@ -0,0 +1,3 @@
+$NetBSD: patch-sum,v 1.1.1.1 1999/07/31 19:13:07 rh Exp $
+
+MD5 (patch-aa) = 8caa49c2fe13b86c4822e6b437cceb3a
diff --git a/print/gnome-print/patches/patch-aa b/print/gnome-print/patches/patch-aa
new file mode 100644
index 00000000000..16d10cf03cd
--- /dev/null
+++ b/print/gnome-print/patches/patch-aa
@@ -0,0 +1,64 @@
+$NetBSD: patch-aa,v 1.1.1.1 1999/07/31 19:13:08 rh Exp $
+
+--- configure.orig Fri Jul 9 07:51:54 1999
++++ configure Fri Jul 30 19:17:22 1999
+@@ -1972,6 +1972,7 @@
+ ac_tool_prefix=
+ fi
+
++if false; then
+ # Always use our own libtool.
+ LIBTOOL='$(SHELL) $(top_builddir)/libtool'
+
+@@ -2204,6 +2205,7 @@
+ ${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \
+ $libtool_flags --no-verify $ac_aux_dir/ltmain.sh $host \
+ || { echo "configure: error: libtool configure failed" 1>&2; exit 1; }
++fi
+
+ # Redirect the config.log output again, so that the ltconfig log is not
+ # clobbered by the next message.
+@@ -2894,7 +2896,7 @@
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ ac_save_LIBS="$LIBS"
+-LIBS="-lxml `gnome-config --libs xml` $LIBS"
++LIBS="-L${LOCALBASE}/lib -lxml -lz ${LIBS}"
+ cat > conftest.$ac_ext <<EOF
+ #line 2900 "configure"
+ #include "confdefs.h"
+@@ -2925,8 +2927,8 @@
+
+
+
+- GNOME_XML_LIB=`gnome-config --libs xml`
+-
++ GNOME_XML_LIB="-L${LOCALBASE}/lib -lxml -lz -lintl"
++ XGETTEXT="${LOCALBASE}/bin/xgettext"
+ else
+ echo "$ac_t""no" 1>&6
+
+@@ -4693,8 +4695,8 @@
+
+ PRINT_LIBDIR='-L${libdir}'
+ PRINT_INCLUDEDIR='-I${includedir}'
+-PRINT_INCLUDEDIR="$PRINT_INCLUDEDIR `gnome-config --cflags gnomeui xml`"
+-PRINT_LIBS="-lgnomeprint `gnome-config --libs gnomeui xml`"
++PRINT_INCLUDEDIR="$PRINT_INCLUDEDIR `gnome-config --cflags gnomeui` -I${LOCALBASE}/include"
++PRINT_LIBS="-lgnomeprint `gnome-config --libs gnomeui` -L${LOCALBASE}/lib -lxml -lz -lintl"
+
+
+
+@@ -5098,10 +5100,12 @@
+ top_srcdir="$ac_dots$ac_given_srcdir" ;;
+ esac
+
++if false; then
+ case "$ac_given_INSTALL" in
+ [/$]*) INSTALL="$ac_given_INSTALL" ;;
+ *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
+ esac
++fi
+
+ echo creating "$ac_file"
+ rm -f "$ac_file"
diff --git a/print/gnome-print/pkg/COMMENT b/print/gnome-print/pkg/COMMENT
new file mode 100644
index 00000000000..f315bab83b9
--- /dev/null
+++ b/print/gnome-print/pkg/COMMENT
@@ -0,0 +1 @@
+A prototype implementation of the Gnome Printing Architecture
diff --git a/print/gnome-print/pkg/DESCR b/print/gnome-print/pkg/DESCR
new file mode 100644
index 00000000000..a43905799bb
--- /dev/null
+++ b/print/gnome-print/pkg/DESCR
@@ -0,0 +1,15 @@
+ Gnome is in need of a unified printing architecture. This package is an
+attempt for such an architecture, geared towards heavily graphics-intensive
+applications.
+
+ The goals of this architecture include:
+
+ - Absolutely uncompromised output quality
+ - Speed, memory efficiency, and other related performance goals
+ - Ability to work smoothly with PostScript printers, fonts, and
+ other resources
+ - A screen display derived from the Caanvas
+ - An extension path for a wide variety of Unicode scripts
+ - An extension path for a richer set of graphics operators than
+ PostScript supports, especially transparency
+ - To make life as easy as possible for application developers
diff --git a/print/gnome-print/pkg/PLIST b/print/gnome-print/pkg/PLIST
new file mode 100644
index 00000000000..882f83132ea
--- /dev/null
+++ b/print/gnome-print/pkg/PLIST
@@ -0,0 +1,70 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 1999/07/31 19:13:07 rh Exp $
+bin/gnome-font-install
+include/libgnomeprint/gnome-print.h
+include/libgnomeprint/gnome-printer.h
+include/libgnomeprint/gnome-font.h
+include/libgnomeprint/gnome-printer-dialog.h
+include/libgnomeprint/gnome-printer-profile.h
+include/libgnomeprint/gnome-font-dialog.h
+include/libgnomeprint/gnome-text.h
+include/libgnomeprint/gnome-print-i18n.h
+lib/locale/de/LC_MESSAGES/gnome-print.mo
+lib/locale/fr/LC_MESSAGES/gnome-print.mo
+lib/locale/es/LC_MESSAGES/gnome-print.mo
+lib/locale/hu/LC_MESSAGES/gnome-print.mo
+lib/locale/no/LC_MESSAGES/gnome-print.mo
+lib/locale/pl/LC_MESSAGES/gnome-print.mo
+lib/locale/ru/LC_MESSAGES/gnome-print.mo
+lib/locale/it/LC_MESSAGES/gnome-print.mo
+lib/libgnomeprint.so.1.0
+lib/libgnomeprint.a
+lib/printConf.sh
+share/fonts/afms/adobe/pagd8a.afm
+share/fonts/afms/adobe/pagdo8a.afm
+share/fonts/afms/adobe/pagk8a.afm
+share/fonts/afms/adobe/pagko8a.afm
+share/fonts/afms/adobe/pbkd8a.afm
+share/fonts/afms/adobe/pbkdi8a.afm
+share/fonts/afms/adobe/pbkl8a.afm
+share/fonts/afms/adobe/pbkli8a.afm
+share/fonts/afms/adobe/pcrb8a.afm
+share/fonts/afms/adobe/pcrbo8a.afm
+share/fonts/afms/adobe/pcrr8a.afm
+share/fonts/afms/adobe/pcrro8a.afm
+share/fonts/afms/adobe/phvb8a.afm
+share/fonts/afms/adobe/phvb8an.afm
+share/fonts/afms/adobe/phvbo8a.afm
+share/fonts/afms/adobe/phvbo8an.afm
+share/fonts/afms/adobe/phvl8a.afm
+share/fonts/afms/adobe/phvlo8a.afm
+share/fonts/afms/adobe/phvr8a.afm
+share/fonts/afms/adobe/phvr8an.afm
+share/fonts/afms/adobe/phvro8a.afm
+share/fonts/afms/adobe/phvro8an.afm
+share/fonts/afms/adobe/pncb8a.afm
+share/fonts/afms/adobe/pncbi8a.afm
+share/fonts/afms/adobe/pncr8a.afm
+share/fonts/afms/adobe/pncri8a.afm
+share/fonts/afms/adobe/pplb8a.afm
+share/fonts/afms/adobe/pplbi8a.afm
+share/fonts/afms/adobe/pplr8a.afm
+share/fonts/afms/adobe/pplri8a.afm
+share/fonts/afms/adobe/psyr.afm
+share/fonts/afms/adobe/ptmb8a.afm
+share/fonts/afms/adobe/ptmbi8a.afm
+share/fonts/afms/adobe/ptmr8a.afm
+share/fonts/afms/adobe/ptmri8a.afm
+share/fonts/afms/adobe/putb8a.afm
+share/fonts/afms/adobe/putbi8a.afm
+share/fonts/afms/adobe/putr8a.afm
+share/fonts/afms/adobe/putri8a.afm
+share/fonts/afms/adobe/pzcmi8a.afm
+share/fonts/afms/adobe/pzdr.afm
+share/fonts/fontmap
+share/gnome-print/profiles/Postscript.profile
+@dirrm include/libgnomeprint
+@dirrm share/fonts/afms/adobe
+@dirrm share/fonts/afms
+@dirrm share/fonts
+@dirrm share/gnome-print/profiles
+@dirrm share/gnome-print