aboutsummaryrefslogtreecommitdiff
path: root/sysutils/LPRng
Commit message (Collapse)AuthorAgeFilesLines
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.Ade Lovett2010-05-311-1/+1
| | | | Notes: svn path=/head/; revision=255371
* Begin the process of deprecating sysutils/rc_subr byDoug Barton2010-03-271-1/+1
| | | | | | | s#. %%RC_SUBR%%#. /etc/rc.subr# Notes: svn path=/head/; revision=251553
* Make LPRng compile again.Ed Schouten2009-03-022-4/+24
| | | | | | | Reported by: linimon Notes: svn path=/head/; revision=229324
* Mark BROKEN on 8: does not build after recent TTY changes.Erwin Lansing2009-01-081-0/+4
| | | | | | | Submitted by: pointyhat Notes: svn path=/head/; revision=225515
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-0/+1
| | | | | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav) Notes: svn path=/head/; revision=214430
* - Update to 3.8.32Rong-En Fan2008-01-206-24/+63
| | | | | | | | | | | | - Provide new rc script - Prevent distribution install sample conf in DATADIR as we already install them in PREFIX/etc - Polish pkg-message - Remove FTP from pkg-descr, we have WWW there - Move LIB_DEPENDS before CONFLICTS to pet portlint Notes: svn path=/head/; revision=205868
* - Set --mandir and --infodir in CONFIGURE_ARGS if the configure scriptRong-En Fan2007-07-231-4/+0
| | | | | | | | | | | | | | | | | | | | | supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run Notes: svn path=/head/; revision=196111
* Fix build on CURRENTTilman Keskinoz2006-12-211-1/+2
| | | | Notes: svn path=/head/; revision=180319
* - s,INSTALLS_SHLIB,USE_LDCONFIG,gCheng-Lung Sung2006-08-151-1/+1
| | | | | | | | | | - these include security/ sysutils/ textproc/ maintained by ports@ PR: ports/101916 Submitted by: Gea-Suan Lin <gslin_AT_gslin dot org> Notes: svn path=/head/; revision=170652
* - Add CONFLICTS with cups-baseIon-Mihai Tetcu2006-08-061-1/+3
| | | | | | | | PR: ports/99791 Submitted by: Leif Pedersen / Marcin Wisnicki Notes: svn path=/head/; revision=169806
* - Fix installation directory of configuration files for cases in whichStefan Walter2006-07-191-4/+5
| | | | | | | | | | | | $PORT_REPLACES_BASE_LPR is defined. - Install startup files to ${LOCALBASE}/etc/rc.d, not /etc/rc.d. PR: 93032 Submitted by: Dmitry Kazarov <kazarov@mcm.ru> Approved by: arved (mentor) Notes: svn path=/head/; revision=168255
* Reset papowell@astart.com who has not responded to email asking aboutMark Linimon2006-04-051-1/+1
| | | | | | | | | maintainer timeouts. Hat: portmgr Notes: svn path=/head/; revision=158837
* Conversion to a single libtool environment.Ade Lovett2006-02-231-1/+1
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* SHA256ifyEdwin Groothuis2006-01-241-0/+1
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154303
* Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryEdwin Groothuis2006-01-221-2/+2
| | | | | | | | Approved by: krion@ PR: ports/88711 (related) Notes: svn path=/head/; revision=154137
* Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentAde Lovett2005-11-151-1/+1
| | | | | | | | | | | | | | | | | | | | in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run. Notes: svn path=/head/; revision=148323
* - Fix packing list issues. [1]Florent Thoumie2005-04-047-236/+176
| | | | | | | | | | | | | - Add new PORT_REPLACES_BASE_LPR knob. [2] - Preserve original files when replacing base lpr. [1] - Global cleanup. [1] PR: ports/76945 [1], ports/65824 [2] Submitted by: flz [1], Linh Pham <question+freebsdpr@closedsrc.org> [2] Approved by: maintainer timeout (1 month [1], 10 months [2]) Notes: svn path=/head/; revision=132459
* Apply a big libtool patch to allow porters to use the libtool installed byJoe Marcus Clarke2004-07-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the libtoolX ports instead of the one included with each port. Ports that set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of the included version. To restore previous behavior, use the new macro, USE_INC_LIBTOOL_VER. Both macros accept the same argument: a libtool version. For example, to use the ports version of libtool-1.5, add the following to your Makefile: USE_LIBTOOL_VER= 15 To use the included version of libtool with extra hacks provided by libtool-1.5, add the following to your Makefile: USE_INC_LIBTOOL_VER= 15 With this change, ports that had to add additional libtool hacks to prevent .la files from being installed or to fix certain threading issues can now delete those hacks (after appropriate testing, of course). PR: 63944 Based on work by:eik and marcus Approved by: ade (autotools maintainer) Tested by: kris on pointyhat Bound to be hidden problems: You bet Notes: svn path=/head/; revision=113296
* - Update to 3.8.26Pav Lucistnik2004-04-123-15/+3
| | | | | | | | | PR: ports/64943 Submitted by: Kevin Oberman <oberman@es.net> Approved by: maintainer timeout (2 weeks) Notes: svn path=/head/; revision=106843
* SIZEify (maintainer timeout)Trevor Johnson2004-03-311-0/+1
| | | | Notes: svn path=/head/; revision=105747
* Whoa there, boy, that's a mighty big commit y'all have there...Ade Lovett2004-03-141-1/+1
| | | | | | | | | | | | | | | | | | Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed. Notes: svn path=/head/; revision=103963
* - Update to 3.8.23Pav Lucistnik2004-02-288-96/+166
| | | | | | | | | PR: ports/59862 Submitted by: Rong-En Fan <rafan@infor.rog> Approved by: maintainer timeout (almost 3 months) Notes: svn path=/head/; revision=102423
* Use LS macro.Trevor Johnson2004-01-231-1/+1
| | | | Notes: svn path=/head/; revision=98863
* - Unbreak on 5.xPav Lucistnik2003-12-192-7/+24
| | | | | | | | PR: ports/60371 Submitted by: Seva Gluschenko <gvs@rinet.ru> Notes: svn path=/head/; revision=96173
* BROKEN on 5.x: does not compileKris Kennaway2003-10-161-1/+7
| | | | Notes: svn path=/head/; revision=91379
* Use NOPORTDOCS instead of NOPORTSDOCS [1]Sergey A. Osokin2003-07-102-11/+11
| | | | | | | | | | | | | Also fix pkg-plist (use %%PORTDOCS%%%%DOCSDIR%% instead of hardcoded share/doc/...). Maintainer timeout after 1 week. Spotted by: Oliver Eikemeier <eikemeier@fillmore-labs.com> [1] PR: 53911 Notes: svn path=/head/; revision=84598
* PR: 51010Foxfair Hu2003-04-2110-172/+235
| | | | | | | | MAINTAINER update: Fixes security problem from Debian Security Advisory DSA 285-1 Notes: svn path=/head/; revision=79411
* PR: 47778Foxfair Hu2003-03-237-24/+90
| | | | | | | | | Submitted by: David Magda <dmagda+fbugs@ee.ryerson.ca> Update to 3.8.20 . also mention about we have a MAINTAINER timeout in this port. Notes: svn path=/head/; revision=77268
* De-pkg-comment.Akinori MUSHA2003-02-212-1/+1
| | | | Notes: svn path=/head/; revision=76041
* chase gdbm lib versionYing-Chieh Liao2003-01-031-1/+1
| | | | Notes: svn path=/head/; revision=72367
* Fix build on 64-bit platforms.Christian Weisgerber2002-12-301-0/+13
| | | | | | | Reported by: bento Notes: svn path=/head/; revision=71985
* USE_LIBTOOL and add missing plist entriesKris Kennaway2002-09-142-0/+6
| | | | Notes: svn path=/head/; revision=66318
* Upgrade 3.7.6 --> 3.8.10Cy Schubert2002-05-053-13/+13
| | | | | | | | | | | | Patrick Powell <papowell@astart.com> author of LPRng requested to become maintainer of this port. Assigned maintainership to Mr. Powell. PR: 37546 Submitted by: Eric Schnoebelen <eric@mr-bill.cirr.com> Approved by: maintainer timeout Notes: svn path=/head/; revision=58597
* Update to 3.7.6Mario Sergio Fujikawa Ferreira2001-10-174-45/+8
| | | | | | | | | PR: 30786 Submitted by: Gerald Pfeifer <admin@dbai.tuwien.ac.at> Approved by: MAINTAINER (3 weeks timeout and port has been broken far longer) Notes: svn path=/head/; revision=48885
* o Update to version 3.7.5Mario Sergio Fujikawa Ferreira2001-07-307-386/+96
| | | | | | | | | | | | | | o LIB_DEPENDS on gdbm o Better deinstall handling o Several port style changes o Add both WWW and Author tags PR: 28799 Submitted by: Alec Wolman <wolman@cs.washington.edu> Approved by: maintainer Notes: svn path=/head/; revision=45634
* Update to 3.6.26, which contains an important security fix (unsettingPeter Pentchev2000-12-113-14/+110
| | | | | | | | | environment variables). Silence from: maintainer (for more than a week) Notes: svn path=/head/; revision=35897
* Add USE_GMAKE.Will Andrews2000-10-241-0/+1
| | | | | | | Submitted by: bento Notes: svn path=/head/; revision=34190
* Upgrade to LPRng 3.6.25 to fix remote root vulnerability.Kris Kennaway2000-10-133-3/+4
| | | | Notes: svn path=/head/; revision=33759
* Change PKGDIR from pkg/ to . Also fix places where ${PKGDIR} isSatoshi Asami2000-10-081-2/+1
| | | | | | | | | spelled out (many of which are ${PKGDIR}/MESSAGE -> ${PKGMESSAGE} type fixes that shouldn't have been necessary) and the string "/pkg/" appear. Notes: svn path=/head/; revision=33576
* Update to version 3.6.23.Steve Price2000-09-055-100/+318
| | | | | | | | PR: 20702 Submitted by: Peter Pentchev <roam@orbitel.bg> Notes: svn path=/head/; revision=32294
* Add two manpages. Add two files (symlinks actually). @dirrm one directory.Satoshi Asami2000-05-312-1/+5
| | | | | | | Submitted by: bento Notes: svn path=/head/; revision=29000
* Update with the new PORTNAME/PORTVERSION variableChris Piazza2000-04-091-5/+4
| | | | Notes: svn path=/head/; revision=27427
* Update to version 3.6.8.Steve Price1999-09-275-102/+125
| | | | | | | | PR: 13432, 13560 Submitted by: Patrick Powell <papowell@astart.com>, maintainer Notes: svn path=/head/; revision=21970
* $Id$ -> $FreeBSD$Peter Wemm1999-08-311-1/+1
| | | | Notes: svn path=/head/; revision=21144
* expr -> ${EXPR}Michael Haro1999-08-281-2/+2
| | | | | | | | | mv -> ${MV} rm -> ${RM} tr -> ${TR} Notes: svn path=/head/; revision=21051
* awk -> ${AWK}Michael Haro1999-08-221-4/+4
| | | | | | | | | | | basename -> ${BASENAME} cat -> ${CAT} cp -> ${CP} ldconfig -> ${LDCONFIG} mkdir -> ${MKDIR} Notes: svn path=/head/; revision=20898
* chmod -> ${CHMOD}Michael Haro1999-08-221-2/+2
| | | | | | | chown -> ${CHOWN} Notes: svn path=/head/; revision=20885
* Move manpages from pkg/PLIST to Makefile.Steve Price1998-10-212-19/+8
| | | | Notes: svn path=/head/; revision=14135
* Upgrade to version 3.5.1Steve Price1998-06-044-69/+83
| | | | | | | | PR: 6782 Submitted by: maintainer Notes: svn path=/head/; revision=11266