aboutsummaryrefslogtreecommitdiff
path: root/security/oidentd
Commit message (Collapse)AuthorAgeFilesLines
* Remove OSVERSION checks that do not make sense any more.Mathieu Arnold2015-04-031-7/+3
| | | | | | | | | | | | | For example (${OSVERSION} >= 900000 && ${OSVERSION} < 900021) is always true, as is (${OSVERSION} > 900002 || ${OSVERSION} < 900000 && ${OSVERSION} > 800107). Regarding patches, when an EXTRA_PATCHES is no longer needed, I remove it, when it is always needed, I renamed it, in one case, I merged two patches. Differential Revision: https://reviews.freebsd.org/D2209 Notes: svn path=/head/; revision=383107
* Convert most NO_INSTALL_MANPAGES to USES=imake:nomanAntoine Brodin2014-08-181-2/+0
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=365343
* - StageBryan Drewery2014-04-101-10/+13
| | | | | | | | - Remove bsd.port.pre.mk - Add LICENSE Notes: svn path=/head/; revision=350757
* fix build on FreeBSD < 10Oliver Lehmann2013-12-301-1/+1
| | | | | | | Noted By: Lukasz Wasikowski <lukasz@wasikowski.net> Notes: svn path=/head/; revision=338078
* fix build on FreeBSD 10Oliver Lehmann2013-12-141-0/+1
| | | | Notes: svn path=/head/; revision=336411
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | security) Notes: svn path=/head/; revision=327769
* Convert security to new options frameworkBaptiste Daroussin2013-04-281-4/+5
| | | | Notes: svn path=/head/; revision=316749
* - Strip header at request of original creatorThomas Abthorpe2013-01-271-5/+1
| | | | | | | | Submitted by: trevor With hat: portmgr Notes: svn path=/head/; revision=311049
* use USE_CSTD instead of manually setting CFLAGSOliver Lehmann2012-12-211-2/+2
| | | | Notes: svn path=/head/; revision=309342
* fix clang buildOliver Lehmann2012-12-191-0/+1
| | | | | | | | PR: ports/174572 Submitted by: cubox@cubox.me Notes: svn path=/head/; revision=309264
* In the rc.d scripts, change assignments to rcvar to use theDoug Barton2012-01-141-1/+1
| | | | | | | | | | | | | | literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other. Notes: svn path=/head/; revision=289156
* -remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276991
* allow oidentd to bind to multiple IP adresses.Oliver Lehmann2011-06-092-1/+138
| | | | | | | | | | | patch taken from http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/oidentd/oidentd-multiple-ip.patch Bump PORTREVISION PR: ports/156182 Submitted by: nico <nico@lifeisabug.com> Notes: svn path=/head/; revision=275274
* 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
* - Switch SourceForge ports to the new File Release System: categories ↵Dmitry Marakasov2009-08-221-2/+1
| | | | | | | starting with P,R,S Notes: svn path=/head/; revision=240075
* Fix a few "bad example" problems in the rc.d scripts that have beenDoug Barton2009-07-151-2/+2
| | | | | | | | | | | | | | | | | | | | | | | propogated by copy and paste. 1. Primarily the "empty variable" default assignment, which is mostly ${name}_flags="", but fix a few others as well. 2. Where they are not already documented, add the existence of the _flags (or other deleted empties) option to the comments, and in some cases add comments from scratch. 3. Replace things that look like: prefix=%%PREFIX%% command=${prefix}/sbin/foo to just use %%PREFIX%%. In many cases the $prefix variable is only used once, and in some cases it is not used at all. 4. In a few cases remove ${name}_flags from command_args 5. Remove a long-stale comment about putting the port's rc.d script in /etc/rc.d (which is no longer necessary). No PORTREVISION bumps because all of these changes are noops. Notes: svn path=/head/; revision=237892
* allow using oidentd on CURRENT but nat support has to be disabled (remove ↵Oliver Lehmann2008-08-271-5/+1
| | | | | | | | | | BROKEN) PR: ports/126676 Submitted by: "Anton E. Kartashev" <amokk@seb.org.ua> Notes: svn path=/head/; revision=219331
* Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.Rong-En Fan2008-08-211-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Specifically, newer autoconf (> 2.13) has different semantic of the configure target. In short, one should use --build=CONFIGURE_TARGET instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning and the old semantic may be removed in later autoconf releases. To workaround this issue, many ports hack the CONFIGURE_TARGET variable so that it contains the ``--build='' prefix. To solve this issue, under the fact that some ports still have configure script generated by the old autoconf, we use runtime detection in the do-configure target so that the proper argument can be used. Changes to Mk/*: - Add runtime detection magic in bsd.port.mk - Remove CONFIGURE_TARGET hack in various bsd.*.mk - USE_GNOME=gnometarget is now an no-op Changes to individual ports, other than removing the CONFIGURE_TARGET hack: = pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables) - comms/gnuradio - science/abinit - science/elmer-fem - science/elmer-matc - science/elmer-meshgen2d - science/elmerfront - science/elmerpost = use x86_64 as ARCH - devel/g-wrap = other changes - print/magicfilter GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf Total # of ports modified: 1,027 Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes) PR: 126524 (obsoletes 52917) Submitted by: rafan Tested on: two pointyhat 7-amd64 exp runs (by pav) Approved by: portmgr (pav) Notes: svn path=/head/; revision=218938
* Mark BROKEN for 8.0: does not build.Erwin Lansing2008-08-091-0/+4
| | | | Notes: svn path=/head/; revision=218268
* change "dovecot" inOliver Lehmann2008-06-301-1/+1
| | | | | | | | | | Add the following lines to /etc/rc.conf to enable dovecot to "oidentd" Reported by: "Dan Corrigan" <dancorrigan1@gmail.com> Notes: svn path=/head/; revision=216044
* OPTIONSify [1]Oliver Lehmann2008-03-252-9/+19
| | | | | | | | | | | use new RC_SUBR style (old start file removed, no real history to preserve) Bump PORTREVISION PR: 122054 [1] Submitted by: Jase Thew <bazerka@beardz.net> [1] Notes: svn path=/head/; revision=209798
* - Remove USE_GETOPT_LONG which is a no-op since March 2007Pav Lucistnik2008-03-201-1/+0
| | | | Notes: svn path=/head/; revision=209422
* update to 2.0.8Oliver Lehmann2006-05-235-465/+5
| | | | Notes: svn path=/head/; revision=163152
* Remove USE_REINPLACE from all categories starting with SEdwin Groothuis2006-05-131-1/+0
| | | | Notes: svn path=/head/; revision=162215
* Remove the FreeBSD KEYWORD from all rc.d scripts where it appears.Doug Barton2006-02-201-1/+1
| | | | | | | | | | We have not checked for this KEYWORD for a long time now, so this is a complete noop, and thus no PORTREVISION bump. Removing it at this point is mostly for pedantic reasons, and partly to avoid perpetuating this anachronism by copy and paste to future scripts. Notes: svn path=/head/; revision=156534
* SHA256ifyEdwin Groothuis2006-01-241-0/+1
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154303
* make it compile on 7Oliver Lehmann2005-07-161-2/+2
| | | | | | | Noted by: pointyhat via kris Notes: svn path=/head/; revision=139343
* At Kris's request, back out the MACHINE_ARCH spelling correction untilDavid E. O'Brien2005-04-121-1/+1
| | | | | | | after 5.4-RELEASE. Notes: svn path=/head/; revision=133116
* Assist getting more ports working on AMD64 by obeying theDavid E. O'Brien2005-04-111-1/+1
| | | | | | | Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'. Notes: svn path=/head/; revision=132992
* fix unprev. IPv6 for FreeBSD 4Oliver Lehmann2004-10-242-3/+216
| | | | | | | | | Bump PORTREVISION Noted By: Dariusz Kulinski <d.kulinski@gmail.com> Notes: svn path=/head/; revision=120075
* [1]:Oliver Lehmann2004-10-157-234/+154
| | | | | | | | | | | | | | | | | | | | | - Remove USE_GMAKE (builds okay here with BSD make) - Clean up portions of main Makefile (don't need post/pre) - Add %%PREFIX%% man page patches - Add patch for ipv6_missing.h; removes EAI_MEMORY re-definition warnings, and is more FreeBSD-focused - Support 'oidentd_conf' rc.subr variable for those who want to be able to specify a configuration file. Also update the 'required_files' code to work with this too... [2]: - make it work with FreeBSD-5 in combination with option --reply PR: ports/71378 [1] Submitted By: Jeremy Chadwick <freebsd@jdc.parodius.com> [1] Noted By: Markus Hästbacka <midian@ihme.org> [2] Notes: svn path=/head/; revision=119520
* that should fix the build on freebsd-6Oliver Lehmann2004-08-211-1/+19
| | | | | | | Reported by: pointyhat (via kris) Notes: svn path=/head/; revision=116966
* In get_list() function there is do-while loop, patch included additionalOliver Lehmann2004-05-192-12/+24
| | | | | | | | | | | continue instructions, which skipped "head = pcbp.inp_list.le_next;" making oidentd go into infinite loop. Submitted By: Dariusz Kulinski <takeda3@netzero.net> PR: ports/66858 Notes: svn path=/head/; revision=109516
* Make it work with IPv6 properly. [1]Oliver Lehmann2004-03-252-2/+395
| | | | | | | | | | Fix plist PR: 64546 [1] Submitted By: Dariusz Kulinski <takeda3@netzero.net> Notes: svn path=/head/; revision=105256
* fix a small typo in post-patchOliver Lehmann2004-02-071-2/+2
| | | | | | | | | bump PORTREVISION Noted By: Robin Breathe <robin@isometry.net> Notes: svn path=/head/; revision=100236
* * Remove duplication of RC_SUBR checking now that it's in bsd.pork.mkOliver Lehmann2004-02-072-5/+6
| | | | | | | | | | * Use *.conf files in PREFIX/etc rather than /etc * SIZE in distinfo Submitted By: Robin Breathe <robin@isometry.net> Notes: svn path=/head/; revision=100228
* Use PLIST_FILES (bento-tested, marcus-reviewed).Trevor Johnson2004-02-062-4/+1
| | | | Notes: svn path=/head/; revision=100139
* Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.Joe Marcus Clarke2004-02-041-1/+1
| | | | | | | (Part 1) Notes: svn path=/head/; revision=99918
* Updates:Oliver Lehmann2004-01-315-1/+85
| | | | | | | | | | | | | * Provide style rc.d script. * Provide sample configuration files (standard + masquerading). * CONFIGURE_TARGET to remove configure warning. * Bump PORTREVISION Submitted By: Robin Breathe <robin@isometry.net> PR: ports/62010 Notes: svn path=/head/; revision=99603
* Remove my e-mail address from comment blocks of portsTrevor Johnson2003-11-131-1/+1
| | | | | | | I have contributed, in hopes of attracting less spam. Notes: svn path=/head/; revision=93876
* Update oidentd to 2.0.7Oliver Lehmann2003-07-143-3/+36
| | | | Notes: svn path=/head/; revision=84883
* redefine the MAINTAINER field with my FreeBSD addressOliver Lehmann2003-05-061-1/+1
| | | | | | | Approved By: alex (mentor) Notes: svn path=/head/; revision=80276
* PR: 51521Foxfair Hu2003-05-062-2/+2
| | | | | | | | | | | | | | Submitted by: Kirill Ponomarew <ponomarew@oberon.net> Reviewed by: Approved by: Obtained from: MFC after: Update port security/oident: 2.0.5 -> 2.0.6 MAINTAINER timeout: since May 1 Notes: svn path=/head/; revision=80200
* Maintainer update to version 2.0.5Edwin Groothuis2003-02-262-2/+2
| | | | | | | | PR: ports/48604 Submitted by: Oliver Lehmann <lehmann@ans-netz.de> Notes: svn path=/head/; revision=76490
* We have a new maintainer!Edwin Groothuis2003-02-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Date: Tue, 25 Feb 2003 00:10:09 -0800 (PST) From: Mark Laws <mdl@60hz.org> To: freebsd-ports-bugs@FreeBSD.org This is fine. In fact, if you would like to take over the port, you may do so if you wish. Unfortunately, I've been too busy to give it the attention it deserves as of late. :( -- Mark Laws mdl@60hz.org http://www.60hz.org Date: Tue, 25 Feb 2003 08:10:15 -0800 (PST) From: Oliver Lehmann <lehmann@ans-netz.de> To: freebsd-ports-bugs@FreeBSD.org Ok, thanks. If nobody object, I'm willing to take the maintainership. Greetings, Oliver Notes: svn path=/head/; revision=76489
* De-pkg-comment.Akinori MUSHA2003-02-212-1/+1
| | | | Notes: svn path=/head/; revision=76041
* Update to 2.0.4Patrick Li2002-11-012-2/+2
| | | | | | | | PR: ports/44798 Submitted by: maintainer Notes: svn path=/head/; revision=69230
* Update to 2.0.3David W. Chapman Jr.2002-04-013-9/+10
| | | | | | | | PR: 36595 Submitted by: maintainer Notes: svn path=/head/; revision=57099
* Remove patch from last night's commit, forgot to remove it on that commitDavid W. Chapman Jr.2001-12-251-14/+0
| | | | | | | Noticed by: rob@cyberpunkz.org Notes: svn path=/head/; revision=52146
* oidentd now supports masqueraded connections under FreeBSD systemsDavid W. Chapman Jr.2001-12-243-16/+14
| | | | | | | | | | | | | running ipf Update description Update to 2.0.1 PR: 31466 Submitted by: mdl@60hz.org Approved by: trevor (according to originator) Notes: svn path=/head/; revision=52083