51f50257b0
Gnome-print is a high-quality printing framework for GNOME. Gnome-print implements: * device-independent printing API, modelled loosely after PostScript language. * font abstraction that allows device-independent text display (within reasonable limits). * powerful configuration engine, dealing with all levels of output pipeline set of actual printer drivers (PostScript, PDF, fax). * print preview widget. * printer selector widget. Originally created by yours truly, the port received additional patches from Marc Matteo <marcm@lectroid.net> who also will maintain it in the future. Ok naddy@.
38 lines
1.0 KiB
Makefile
38 lines
1.0 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2002/05/21 19:17:54 nino Exp $
|
|
|
|
COMMENT= "printing framework for GNOME"
|
|
|
|
DISTNAME= gnome-print-0.35
|
|
CATEGORIES= x11/gnome print
|
|
NEED_VERSION= 1.530
|
|
HOMEPAGE= http://www.gnome.org/projects/gnome-print/
|
|
|
|
MAINTAINER= Marc Matteo <marcm@lectroid.net>
|
|
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=stable/sources/gnome-print/}
|
|
|
|
LIB_DEPENDS= gdk_pixbuf.2::graphics/gdk-pixbuf \
|
|
gnome.36,art_lgpl.4,gnomesupport.0,gnomeui.46::x11/gnome/libs \
|
|
gnomecanvaspixbuf.1::graphics/gdk-pixbuf,-gnome \
|
|
xml.9::textproc/libxml1
|
|
|
|
BUILD_DEPENDS= :ghostscript-*:print/ghostscript/gnu
|
|
RUN_DEPENDS= :ghostscript-*:print/ghostscript/gnu
|
|
|
|
# LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
USE_X11= Yes
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
|
|
|
|
post-install:
|
|
@${INSTALL_DATA_DIR} ${PREFIX}/share/examples/gnome-print; \
|
|
cp -Rp ${WRKINST}/${SYSCONFDIR}/* ${PREFIX}/share/examples/gnome-print/
|
|
|
|
.include <bsd.port.mk>
|