summaryrefslogtreecommitdiff
path: root/print/hpijs
AgeCommit message (Collapse)AuthorFilesLines
2015-11-04Add SHA512 digests for distfiles for print categoryagc1-1/+2
Problems found locating distfiles: Package acroread7: missing distfile AdobeReader_enu-7.0.9-1.i386.tar.gz Package acroread8: missing distfile AdobeReader_enu-8.1.7-1.sparc.tar.gz Package cups-filters: missing distfile cups-filters-1.1.0.tar.xz Package dvidvi: missing distfile dvidvi-1.0.tar.gz Package lgrind: missing distfile lgrind.tar.bz2 Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-04-27Don't add incompatible redefines of jpeg functions.joerg2-1/+19
2015-04-26Drop ONLY_FOR_COMPILER. Fix a bunch of warnings from clang, missingjoerg6-4/+86
includes warranting a revision bump.
2012-10-08Drop PKG_DESTDIR_SUPPORT setting, "user-destdir" is default these days.asau1-3/+1
2010-12-23Mechanically replace references to graphics/jpeg with the suitabledsainty1-2/+2
alternative from mk/jpeg.buildlink3.mk This allows selection of an alternative jpeg library (namely the x86 MMX, SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and follows the current standard model for alternatives (fam, motif, fuse etc). The mechanical edits were applied via the following script: #!/bin/sh for d in */*; do [ -d "$d" ] || continue for i in "$d/"Makefile* "$d/"*.mk; do case "$i" in *.orig|*"*"*) continue;; esac out="$d/x" sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \ -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \ < "$i" > "$out" if cmp -s "$i" "$out"; then rm -f "$out" else echo "Edited $i" mv -f "$i" "$i.orig" && mv "$out" "$i" fi done done
2010-01-27DESTDIR support.joerg1-9/+9
2010-01-18Second try at jpeg-8 recursive PKGREVISION bump.wiz1-2/+2
2009-08-26bump revision because of graphics/jpeg updatesno1-1/+2
2009-06-14Remove @dirrm entries from PLISTsjoerg1-3/+1
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-01-29Update to hpijs 2.1.4.gavan3-10/+99
This release contains support for a number of new printers.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-2/+1
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-09-28Replaced "# defined" with "yes" in Makefile variables like GNU_CONFIGURE,rillig1-2/+2
NO_BUILD, USE_LIBTOOL.
2005-07-15Drop distinction between PKGSRC_USE_TOOLS and USE_TOOLS by makingjlam1-2/+2
PKGSRC_USE_TOOLS go away. There is now only a single USE_TOOLS variable that specifies all of the tools we need to build/run the package.
2005-06-17Fix inappropriate uses of ${LOCALBASE} or ${X11PREFIX} instead ofjlam1-7/+7
${PREFIX}.
2005-06-17Create directories before installing files into them.jlam1-1/+2
2005-05-15Note where gzip or gunzip is required by the package since it isn'tjlam1-1/+2
required by default any longer in bsd.pkg.mk under the new tools framework.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-26add autoconf tests to find what librarary connect, socket, recv, send,dmcmahill4-1/+480
and gethostbyname are in. On some systems, you need -lsocket and -lnsl for these (solaris). Tested on NetBSD and Solaris-9.
2005-02-24Add RMD160 digests.agc1-1/+2
2004-11-19Update hpijs to 1.7.1. Changes are mostly additions of PPD filesjdolecek3-8/+45
for more models, some NULL pointer checks, envelope and KRBG (with patched gs) support. See http://hpinkjet.sourceforge.net/updates.php for full details.
2004-06-27replace bogus USE_PKGSRC_GCC with ONLY_FOR_COMPILER=gcc.grant1-6/+2
2004-06-27this uses a c and c++ compiler.grant1-1/+2
2004-06-03Correct CONFLICTS line to match actual versions of ghostscript. Reportedcube1-2/+3
by Peter Bex.
2004-04-25Convert to buildlink3.snj1-2/+2
2004-04-24Relinquish maintainership of packages to tech-pkg@NetBSD.org.jlam1-2/+2
2004-02-22patch-aa was removedjdolecek1-2/+1
2004-02-22update hpijs package to latest 1.5 versionjdolecek4-20/+297
Full list of changes since previously packaged version 1.3 is available at: http://hpinkjet.sourceforge.net/updates.php Briefly: * many more recent printer models supported * added foomatic PPD files * added 4KB output buffering to improve USB performance * various improvements for DJ3320 and DJ9xx * fixed a Deskjet 5550 problem with odd page duplex jobs * documented new Photo mode for VIP printers with no auto media detection. * added support for custom paper size, removed (now redundant) 3425-COVER paper size * added Printable Area documentation * fixed a Officejet hang problem (ie: Officejet 500/600/700 and PSC 300). Package update submitted in PR pkg/24526 by Paul Shupak Package also updated to do the install step itself, and removed the now unneded patch.
2003-09-17get rid of USE_GCC2/3 in pkg Makefiles, and set GCC_REQD orgrant1-2/+2
USE_PKGSRC_GCC as appropriate, as this is handled by compiler.mk now.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-02Use mk/gcc.buildlink2.mk rather than gcc/buildlink2.mk so lang/gcc3abs1-2/+2
is accepted. Suggested by Grant.
2003-01-25Accomplish the same thing as patch-ab, enabling the output buffer, withoutjlam3-17/+3
patching the configure script.
2003-01-25Update to hpijs-1.3. Closes PR pkg/19213. Changes are:toshii4-10/+25
1. Added the following new printer support. Deskjet 450, Deskjet 3320, Deskjet 3420, Deskjet 3425, Deskjet 3810, Deskjet 3816, Deskjet 3822, Deskjet 6122, Deskjet 6127, Photosmart 230, Photosmart 7550, PSC 2100, PSC 2150, PSC 2200 2. Made a change to configure.in to check for uint32_t in stdint.h, machine/types.h and inttypes.h. 3. Added 600 dpi Best and 1200 dpi Photo to DJ9xx. 4. Added a new paper size for printing covers on Deskjet 3425. 5. Fixed a DJ850 extra page and top margin problem. 6. Fixed a Deskjet 1120/1125 multiple page problem. These printers now use the DJ9xx device class with limited support. plus a pkgsrc patch which enables output buffering. This should reduce system load.
2002-09-29Use gcc/buildlink2.mk instead of Makefile.gccjlam1-2/+2
2002-09-13hpijs needs g++ on Solaris, as noted in pkg/17325 by Eric Schnoebelenjlam1-1/+7
<eric at cirr dot com>.
2002-09-11Note conflicts between hpijs and ghostscript{,-nox11}. This will bejlam1-1/+3
resolved later by pulling out the hpijs server from the current ghostscript packages.
2002-09-11Initial import of hpijs-1.2.2.jlam5-0/+41
HPIJS implements a IJS server for IJS clients such as GNU Ghostscript, and provides printing support for more than 150 printer models, including DeskJet, OfficeJet, PhotoSmart, Business InkJet, and some LaserJet models.