diff options
author | jlam <jlam@pkgsrc.org> | 2001-01-30 16:37:55 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-01-30 16:37:55 +0000 |
commit | ca3d7c830ea9c83bbd5f13bd6f958910c01258d9 (patch) | |
tree | ed248be6cfcf4373bf80396c97f0f2b1fb91dbf4 /print/xpp/Makefile | |
parent | de9c0c3fe2bf85c962435ba480786a955f0f651f (diff) | |
download | pkgsrc-ca3d7c830ea9c83bbd5f13bd6f958910c01258d9.tar.gz |
Update xpp to 1.0. Changes from version 0.7:
- Let jobs from standard input get the name "STDIN" instead of
"(stdin)", because the parantheses caused problems with Samba
or Windows servers.
- Let the first printer be selected when CUPS does not report a
default printer
- Banner page support
- Raw output support
- Renamed "Cancel" button of main window to "Close"
- Added comment in "Instances" to tell the user that he has to
copy an existing instance of the desired printer when he wants
to add an instance.
- Support for adding, copying, renaming, and deleting printer
instances.
- Rearranged option widgets for media settings on the "Basic" tab
of the "Options" dialog: Now there is a seperate widget for the
media type and widgets for options which are not supported
according to the PPD file are grayed out.
- Fixed bug of the duplex widget on the "Basic" tab of the
"Options" dialog: The widget was sometimes linked to the
"Duplexer installed?" option.
- All sliders for numerical options (both CUPS and CUPS-O-MATIC)
have fields for typing the values now.
Diffstat (limited to 'print/xpp/Makefile')
-rw-r--r-- | print/xpp/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/print/xpp/Makefile b/print/xpp/Makefile index fe8a9c5f170..97af83f51b9 100644 --- a/print/xpp/Makefile +++ b/print/xpp/Makefile @@ -1,12 +1,13 @@ -# $NetBSD: Makefile,v 1.3 2001/01/25 15:57:25 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2001/01/30 16:37:55 jlam Exp $ -DISTNAME= xpp-0.7 +DISTNAME= xpp-1.0 CATEGORIES= print x11 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cups/} MAINTAINER= jlam@netbsd.org HOMEPAGE= http://cups.sourceforge.net/xpp/index.html +BUILD_DEPENDS+= autoconf:../../devel/autoconf DEPENDS+= cups>=1.1.1:../../print/cups DEPENDS+= fltk>=1.0.9:../../x11/fltk @@ -15,13 +16,16 @@ USE_X11= # defined USE_GMAKE= # defined GNU_CONFIGURE= # defined CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" -CONFIGURE_ENV+= LIBS="${LIBS}" +EVAL_PREFIX+= FLTKDIR=fltk +CPPFLAGS+= -I${FLTKDIR}/include # FL/Fl.h CPPFLAGS+= -I${LOCALBASE}/include # cups/cups.h -LIBS+= -lGL -lm # -lfltk DOCDIR= ${PREFIX}/share/doc/xpp +pre-configure: + cd ${WRKSRC} && autoconf && touch aclocal.m4 Makefile.in + post-install: ${INSTALL_DATA_DIR} ${DOCDIR} cd ${WRKSRC}; ${INSTALL_DATA} LICENSE README ${DOCDIR} |