1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00

GNOME print library.

This commit is contained in:
Vanilla I. Shu 1999-01-17 20:19:18 +00:00
parent fd48e93f84
commit 78bb89e29e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=16117
18 changed files with 267 additions and 0 deletions

View File

@ -0,0 +1,37 @@
# New ports collection makefile for: gnomeprint
# Version required: 0.0.3
# Date created: 15 Jan 1999
# Whom: Vanilla I. Shu <vanilla@FreeBSD.ORG>
#
# $Id$
#
DISTNAME= gnome-print-0.0.3
PKGNAME= gnomeprint-0.0.3
CATEGORIES= print
MASTER_SITES= ftp://ftp.jimpick.com/pub/mirrors/gnome/sources/latest/ \
ftp://ftp.geo.net/pub/gnome/sources/latest/ \
ftp://gnomeftp.wgn.net/pub/gnome/sources/latest/ \
ftp://ftp.gnome.org/pub/GNOME/sources/latest/
MAINTAINER= nacai@iname.com
LIB_DEPENDS= gnome.1:${PORTSDIR}/x11/gnomelibs
USE_X_PREFIX= yes
USE_GMAKE= yes
USE_PERL5= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
--datadir=${PREFIX}/share/gnome \
--with-gnome=${X11BASE}
CONFIGURE_ENV= CPPFLAGS="${CFLAGS} -I${LOCALBASE}/include \
-I${X11BASE}/include" \
GTK_CONFIG="${X11BASE}/bin/gtk11d-config" \
GLIB_CONFIG="${LOCALBASE}/bin/glib11d-config" \
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib -lxpg4"
post-install:
@${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (gnome-print-0.0.3.tar.gz) = 3337f7fa507b39ff0f888e445e723722

View File

@ -0,0 +1,31 @@
--- Makefile.in.orig Fri Jan 15 20:58:53 1999
+++ Makefile.in Fri Jan 15 21:01:08 1999
@@ -174,7 +174,7 @@
EXTRA_DIST = printConf.sh.in gnome-font-install.in
-confexecdir=$(libdir)
+confexecdir=$(datadir)
confexec_DATA = printConf.sh
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
@@ -504,7 +504,7 @@
all-recursive-am: config.h
$(MAKE) all-recursive
-all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(DATA) $(HEADERS) config.h
+all-am: Makefile $(LTLIBRARIES) $(SCRIPTS) $(DATA) $(HEADERS) config.h
install-exec-am: install-libLTLIBRARIES install-confexecDATA
--- po/Makefile.in.in.orig Fri Jan 15 21:01:12 1999
+++ po/Makefile.in.in Fri Jan 15 21:01:54 1999
@@ -18,7 +18,7 @@
prefix = @prefix@
exec_prefix = @exec_prefix@
-datadir = $(prefix)/@DATADIRNAME@
+datadir = $(prefix)/share
localedir = $(datadir)/locale
gnulocaledir = $(prefix)/share/locale
gettextsrcdir = $(prefix)/share/gettext/po

View File

@ -0,0 +1 @@
gnome print support library.

View File

@ -0,0 +1,4 @@
This is a prototype implementation of the Gnome Printing Architecture,
as described in:
http://www.levien.com/gnome/print-arch.html

View File

@ -0,0 +1,15 @@
include/libgnomeprint/gnome-font.h
include/libgnomeprint/gnome-print.h
include/libgnomeprint/gnome-printer-dialog.h
include/libgnomeprint/gnome-printer.h
include/libgnomeprint/gnome-text.h
lib/libgnomeprint.a
lib/libgnomeprint.la
lib/libgnomeprint.so
lib/libgnomeprint.so.0
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
share/gnome/printConf.sh
share/gnome/fonts/fontmap
share/locale/pl/LC_MESSAGES/gnome-print.mo
@dirrm share/gnome/fonts

37
print/gnomeprint/Makefile Normal file
View File

@ -0,0 +1,37 @@
# New ports collection makefile for: gnomeprint
# Version required: 0.0.3
# Date created: 15 Jan 1999
# Whom: Vanilla I. Shu <vanilla@FreeBSD.ORG>
#
# $Id$
#
DISTNAME= gnome-print-0.0.3
PKGNAME= gnomeprint-0.0.3
CATEGORIES= print
MASTER_SITES= ftp://ftp.jimpick.com/pub/mirrors/gnome/sources/latest/ \
ftp://ftp.geo.net/pub/gnome/sources/latest/ \
ftp://gnomeftp.wgn.net/pub/gnome/sources/latest/ \
ftp://ftp.gnome.org/pub/GNOME/sources/latest/
MAINTAINER= nacai@iname.com
LIB_DEPENDS= gnome.1:${PORTSDIR}/x11/gnomelibs
USE_X_PREFIX= yes
USE_GMAKE= yes
USE_PERL5= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
--datadir=${PREFIX}/share/gnome \
--with-gnome=${X11BASE}
CONFIGURE_ENV= CPPFLAGS="${CFLAGS} -I${LOCALBASE}/include \
-I${X11BASE}/include" \
GTK_CONFIG="${X11BASE}/bin/gtk11d-config" \
GLIB_CONFIG="${LOCALBASE}/bin/glib11d-config" \
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib -lxpg4"
post-install:
@${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (gnome-print-0.0.3.tar.gz) = 3337f7fa507b39ff0f888e445e723722

View File

@ -0,0 +1,31 @@
--- Makefile.in.orig Fri Jan 15 20:58:53 1999
+++ Makefile.in Fri Jan 15 21:01:08 1999
@@ -174,7 +174,7 @@
EXTRA_DIST = printConf.sh.in gnome-font-install.in
-confexecdir=$(libdir)
+confexecdir=$(datadir)
confexec_DATA = printConf.sh
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
@@ -504,7 +504,7 @@
all-recursive-am: config.h
$(MAKE) all-recursive
-all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(DATA) $(HEADERS) config.h
+all-am: Makefile $(LTLIBRARIES) $(SCRIPTS) $(DATA) $(HEADERS) config.h
install-exec-am: install-libLTLIBRARIES install-confexecDATA
--- po/Makefile.in.in.orig Fri Jan 15 21:01:12 1999
+++ po/Makefile.in.in Fri Jan 15 21:01:54 1999
@@ -18,7 +18,7 @@
prefix = @prefix@
exec_prefix = @exec_prefix@
-datadir = $(prefix)/@DATADIRNAME@
+datadir = $(prefix)/share
localedir = $(datadir)/locale
gnulocaledir = $(prefix)/share/locale
gettextsrcdir = $(prefix)/share/gettext/po

View File

@ -0,0 +1 @@
gnome print support library.

View File

@ -0,0 +1,4 @@
This is a prototype implementation of the Gnome Printing Architecture,
as described in:
http://www.levien.com/gnome/print-arch.html

View File

@ -0,0 +1,15 @@
include/libgnomeprint/gnome-font.h
include/libgnomeprint/gnome-print.h
include/libgnomeprint/gnome-printer-dialog.h
include/libgnomeprint/gnome-printer.h
include/libgnomeprint/gnome-text.h
lib/libgnomeprint.a
lib/libgnomeprint.la
lib/libgnomeprint.so
lib/libgnomeprint.so.0
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
share/gnome/printConf.sh
share/gnome/fonts/fontmap
share/locale/pl/LC_MESSAGES/gnome-print.mo
@dirrm share/gnome/fonts

View File

@ -0,0 +1,37 @@
# New ports collection makefile for: gnomeprint
# Version required: 0.0.3
# Date created: 15 Jan 1999
# Whom: Vanilla I. Shu <vanilla@FreeBSD.ORG>
#
# $Id$
#
DISTNAME= gnome-print-0.0.3
PKGNAME= gnomeprint-0.0.3
CATEGORIES= print
MASTER_SITES= ftp://ftp.jimpick.com/pub/mirrors/gnome/sources/latest/ \
ftp://ftp.geo.net/pub/gnome/sources/latest/ \
ftp://gnomeftp.wgn.net/pub/gnome/sources/latest/ \
ftp://ftp.gnome.org/pub/GNOME/sources/latest/
MAINTAINER= nacai@iname.com
LIB_DEPENDS= gnome.1:${PORTSDIR}/x11/gnomelibs
USE_X_PREFIX= yes
USE_GMAKE= yes
USE_PERL5= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
--datadir=${PREFIX}/share/gnome \
--with-gnome=${X11BASE}
CONFIGURE_ENV= CPPFLAGS="${CFLAGS} -I${LOCALBASE}/include \
-I${X11BASE}/include" \
GTK_CONFIG="${X11BASE}/bin/gtk11d-config" \
GLIB_CONFIG="${LOCALBASE}/bin/glib11d-config" \
LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib -lxpg4"
post-install:
@${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (gnome-print-0.0.3.tar.gz) = 3337f7fa507b39ff0f888e445e723722

View File

@ -0,0 +1,31 @@
--- Makefile.in.orig Fri Jan 15 20:58:53 1999
+++ Makefile.in Fri Jan 15 21:01:08 1999
@@ -174,7 +174,7 @@
EXTRA_DIST = printConf.sh.in gnome-font-install.in
-confexecdir=$(libdir)
+confexecdir=$(datadir)
confexec_DATA = printConf.sh
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
@@ -504,7 +504,7 @@
all-recursive-am: config.h
$(MAKE) all-recursive
-all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(DATA) $(HEADERS) config.h
+all-am: Makefile $(LTLIBRARIES) $(SCRIPTS) $(DATA) $(HEADERS) config.h
install-exec-am: install-libLTLIBRARIES install-confexecDATA
--- po/Makefile.in.in.orig Fri Jan 15 21:01:12 1999
+++ po/Makefile.in.in Fri Jan 15 21:01:54 1999
@@ -18,7 +18,7 @@
prefix = @prefix@
exec_prefix = @exec_prefix@
-datadir = $(prefix)/@DATADIRNAME@
+datadir = $(prefix)/share
localedir = $(datadir)/locale
gnulocaledir = $(prefix)/share/locale
gettextsrcdir = $(prefix)/share/gettext/po

View File

@ -0,0 +1 @@
gnome print support library.

View File

@ -0,0 +1,4 @@
This is a prototype implementation of the Gnome Printing Architecture,
as described in:
http://www.levien.com/gnome/print-arch.html

View File

@ -0,0 +1,15 @@
include/libgnomeprint/gnome-font.h
include/libgnomeprint/gnome-print.h
include/libgnomeprint/gnome-printer-dialog.h
include/libgnomeprint/gnome-printer.h
include/libgnomeprint/gnome-text.h
lib/libgnomeprint.a
lib/libgnomeprint.la
lib/libgnomeprint.so
lib/libgnomeprint.so.0
@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R
@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B
share/gnome/printConf.sh
share/gnome/fonts/fontmap
share/locale/pl/LC_MESSAGES/gnome-print.mo
@dirrm share/gnome/fonts