aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/nefu
Commit message (Collapse)AuthorAgeFilesLines
* Deprecate a few portsAntoine Brodin2019-09-151-0/+2
| | | | Notes: svn path=/head/; revision=512125
* Mark BROKEN: unfetchableAntoine Brodin2019-08-051-0/+2
| | | | Notes: svn path=/head/; revision=508138
* Remove all USE_OPENSSL occurrences.Mathieu Arnold2017-03-151-2/+1
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=436247
* When there is a do-install target, do not use a post-install target, doMathieu Arnold2016-07-191-2/+0
| | | | | | | | | | | | | | | everything at once. Sometime, rename post-install into a options helper target. I did not fix ports that were such a mess that I could not figure out what they really wanted to do. I also did not change ports that had some version of an auto-plist code in post-install, for the same reason. With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=418767
* - Switch to USES=tarDmitry Marakasov2015-06-102-13/+13
| | | | | | | | - Fix whitespace - Modernize plist Notes: svn path=/head/; revision=389095
* net/openldap24-*:Tijl Coosemans2014-07-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Convert to USES=libtool and bump dependent ports - Avoid USE_AUTOTOOLS - Don't use PTHREAD_LIBS - Use MAKE_CMD databases/glom: - Drop :keepla - Add INSTALL_TARGET=install-strip databases/libgda4* databases/libgda5*: - Convert to USES=libtool and bump dependent ports - USES=tar:xz - Use INSTALL_TARGET=install-strip - Use @sample databases/libgdamm: - Drop :keepla - USES=tar:bzip2 - Use INSTALL_TARGET=install-strip databases/libgdamm5: - Add INSTALL_TARGET=install-strip - Drop --enable-static (inherited from old repocopy) devel/anjuta x11-toolkits/py-gnome-extras: - Drop :keepla dns/powerdns dns/powerdns-devel: - Convert to USES=libtool - Add INSTALL_TARGET=install-strip - Disable static modules - Stop creating library symlinks with .0 suffix, not needed for dynamically opened modules mail/dovecot2: - Add USES=libtool mail/dovecot2-pigeonhole: - Drop CONFIGURE_TARGET (incorrect for Dragonfly) - Add USES=libtool and INSTALL_TARGET=install-strip math/gnumeric: - USES=libtool tar:xz Approved by: portmgr (implicit, bump unstaged ports) Notes: svn path=/head/; revision=362835
* - Add stage supportDanilo Egea Gondolfo2014-07-202-27/+19
| | | | | | | | | - Use options helpers Approved by: portmgr (blanket) Notes: svn path=/head/; revision=362294
* Remove indefinite articles and trailing periods from COMMENT, plus minorJimmy Olgeni2014-07-101-1/+1
| | | | | | | | | | | | COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Category N. CR: D307 Approved by: portmgr (bapt) Notes: svn path=/head/; revision=361440
* Support LIBS like LDFLAGS.Tijl Coosemans2014-06-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV. - Add an option helper for LIBS. - Adjust all ports that already use LIBS. Also remove references to PTHREAD_CFLAGS and PTHREAD_LIBS while here. - Some ports did not support having a LIBS environment variable and required additional patches. Somewhat simplified a linker command line looks like: ${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS} where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and LIBS can be controlled by us. If possible -L and -l flags need to be added to LIBS to make sure they appear after any -L and -l flags set by upstream. Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this may appear too early on the command line causing installed libraries to be linked in instead of freshly built ones. Additional changes: benchmarks/netio: Replace WITH_IPV6 with an IPV6 option. comms/gnokii: Replace some patches with USES=pathfix. Also remove -fPIC. graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR. graphics/visionworkbench: Remove FreeBSD 7 support. multimedia/libmovtar: New LIB_DEPENDS syntax. multimedia/opencinematools: Use standard do-build. net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins) net-mgmt/nagios: Remove -fPIC. net-mgmt/nagios4: Remove -fPIC. print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036. security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS. This skips a test in configure that falsely detects pthread_mutexattr_init in our libc. sysutils/dar: Fix iconv detection. x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD hack and use $CXX as linker as on other platforms. PR: 190592 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=357486
* - Drop maintainershipBernhard Froehlich2014-02-141-1/+1
| | | | Notes: svn path=/head/; revision=344247
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | net-mgmt) Notes: svn path=/head/; revision=327757
* - Fix building in tinderboxBernhard Froehlich2013-02-271-0/+11
| | | | | | | Reported by: miwi Notes: svn path=/head/; revision=313069
* Convert to new options framework,Baptiste Daroussin2012-12-161-12/+8
| | | | | | | | | While here trim headers and fix pkgconfig dependency Approved by: decke (maintainer) Notes: svn path=/head/; revision=309043
* 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
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-2/+2
| | | | | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav Notes: svn path=/head/; revision=282282
* - Get Rid MD5 supportMartin Wilke2011-03-201-1/+0
| | | | Notes: svn path=/head/; revision=271346
* - Convert to new USERS/GROUPS frameworkBernhard Froehlich2010-07-273-100/+5
| | | | | | | | | | | - Bumped PORTREVISION PR: ports/148319 Submitted by: Bapt <baptiste dot daroussin at gmail dot com> Approved by: miwi (mentor) Notes: svn path=/head/; revision=258317
* - Change to my FreeBSD email addressBernhard Froehlich2010-04-011-1/+1
| | | | | | | Approved by: miwi (mentor), beat (co-mentor) Notes: svn path=/head/; revision=251968
* 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
* Fix a typo.Jimmy Olgeni2009-11-241-1/+1
| | | | Notes: svn path=/head/; revision=244724
* - Update to 1.5Martin Wilke2009-11-162-5/+5
| | | | | | | | PR: 140577 Submitted by: Bernhard Froehlich <decke@bluelife.at> (maintainer) Notes: svn path=/head/; revision=244341
* - Use fix uid and gidRong-En Fan2009-04-076-3/+185
| | | | | | | | | | | | | - Fix broken --without-html with patches - Add OPTIONS for HTML - Add rc script - Pass maintainership to submitter PR: ports/126787 Submitted by: decke at bluelife.at Notes: svn path=/head/; revision=231770
* - Reset farrokhi@freebsd.org due to long period of inactivity.Martin Wilke2009-03-091-1/+1
| | | | | | | Approved by: portmgr (linimon) Notes: svn path=/head/; revision=229780
* 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
* - Update to 1.4.0Martin Wilke2006-11-232-4/+4
| | | | Notes: svn path=/head/; revision=177868
* Change my email address to farrokhi@ in all ports that I maintain.Babak Farrokhi2006-11-081-1/+1
| | | | | | | Approved by: miwi (mentor) Notes: svn path=/head/; revision=176802
* - Update to 1.3Marcus Alves Grando2006-05-242-4/+4
| | | | | | | | PR: 97735 Submitted by: maintainer Notes: svn path=/head/; revision=163312
* Fix build.Kirill Ponomarev2006-02-241-0/+1
| | | | | | | Approved by: portmgr (implicit) Notes: svn path=/head/; revision=156773
* Conversion to a single libtool environment.Ade Lovett2006-02-231-1/+0
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* - Update to 1.2Emanuel Haupt2006-02-202-11/+32
| | | | | | | | | | - Pass maintainer-ship to submitter PR: 93446 Submitted by: Babak Farrokhi <babak@farrokhi.net> Notes: svn path=/head/; revision=156545
* - Add SHA256Pav Lucistnik2005-11-251-0/+1
| | | | Notes: svn path=/head/; revision=149444
* 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
* change the libtool version to use from 1.3 to 1.5Oliver Lehmann2005-06-031-1/+1
| | | | Notes: svn path=/head/; revision=136758
* Drop maintership.Kirill Ponomarev2005-04-211-1/+1
| | | | Notes: svn path=/head/; revision=133879
* 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
* - Remove USE_SIZE knobKirill Ponomarev2004-04-161-1/+0
| | | | Notes: svn path=/head/; revision=107235
* 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
* Say hello to the new "net-mgmt" category. There are probably moreGarrett Wollman2004-02-231-1/+1
| | | | | | | | | | ports that belong here than the ones I have identified and moved in this, first, pass. Approved in principle by: marcus Notes: svn path=/head/; revision=101812
* Use PLIST_FILES (bento-tested, marcus-reviewed).Trevor Johnson2004-02-062-1/+1
| | | | Notes: svn path=/head/; revision=100139
* - SIZEifyKirill Ponomarev2004-01-302-0/+2
| | | | Notes: svn path=/head/; revision=99518
* - Update to version 0.9.6Kirill Ponomarev2003-10-292-2/+2
| | | | Notes: svn path=/head/; revision=92599
* Add nefu 0.9.4, a network monitoring daemon.Kirill Ponomarev2003-10-174-0/+40
Notes: svn path=/head/; revision=91524