aboutsummaryrefslogtreecommitdiffstats
path: root/misc/upclient
Commit message (Collapse)AuthorAgeFilesLines
* Remove libintl.so.9 compatibility link that was added in r374303 totijl2016-12-091-1/+1
| | | | | prevent massive PORTREVISION bumps. Bump dependent ports that have not been bumped since.
* - Fix trailing whitespace in pkg-descrs, categories [g-n]*amdmi32016-05-191-1/+1
| | | | Approved by: portmgr blanket
* Convert LICENSE= "GPLxx # or later" to "GPLxx+"amdmi32016-01-131-1/+1
| | | | Approved by: portmgr blanket
* - Add LICENSEamdmi32015-11-201-1/+6
| | | | - Switch to options helpers
* - Don't use / in sed regexps to allow paths, unbreaking cross-buildsamdmi32015-08-051-1/+1
| | | | Approved by: portmgr blanket
* Cleanup plistbapt2014-12-091-1/+0
|
* Allow staging as a regular userantoine2014-09-102-9/+3
|
* Rename misc/ patch-xy patches to reflect the files they modify.adamw2014-07-293-1/+1
|
* Simplifybapt2014-04-042-50/+23
| | | | | Support stage Support packaging as a user
* Fix properties on pkg-plistbapt2014-01-221-1/+0
|
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-211-0/+1
| | | | misc)
* - Convert USE_GETTEXT to USES (part 3)ak2013-04-251-1/+1
| | | | Approved by: portmgr (bapt)
* Cleanup unmaintained ports in the misc category:eadler2013-03-251-6/+2
| | | | | | | | | | | | | | | | | | - Trim Header - Convert to OptionsNG - Prefer DISTNAME to DISTFILES - Reorder variables - Fix comments (don't include leading article) - @unexec rm must not cause failure - Tabs, not spaces - Single space for WWW - Pet portlint - etc. In a few cases the option DOCS was used to control installation into EXAMPLEDIR. I opted to keep the existing logic of the port in these cases. Reviewed by: koobs, ashish
* Fix post r302141: The files in USE_RC_SUBR are already included in SUB_FILESdougb2012-08-242-43/+22
| | | | | While I'm here, reformat the rc.d script to match conventions, and remove some cruft from the Makefile.
* Move the rc.d scripts of the form *.sh.in to *.indougb2012-08-062-1/+1
| | | | | | Where necessary add $FreeBSD$ to the file No PORTREVISION bump necessary because this is a no-op
* In the rc.d scripts, change assignments to rcvar to use thedougb2012-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.
* - Fix build with clangcrees2011-07-111-2/+2
| | | | | | | | - Remove extraneous newlines PR: ports/158538 Submitted by: Niclas Zeising <niclas.zeising@gmail.com> Approved by: rene (mentor, implicit)
* - Get Rid MD5 supportmiwi2011-03-191-1/+0
|
* Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.ade2010-05-311-1/+1
|
* - Unbreak installationpav2010-04-061-1/+1
| | | | | Pointy hat to: dougb for committing untested changes Reported by: pointyhat
* The rc.d script is already set up for USE_RC_SUBR, so do it.dougb2010-03-282-6/+1
|
* Begin the process of deprecating sysutils/rc_subr bydougb2010-03-271-1/+1
| | | | s#. %%RC_SUBR%%#. /etc/rc.subr#
* - Switch SourceForge ports to the new File Release System: categories ↵amdmi32009-08-221-2/+2
| | | | starting with M
* Fix a few "bad example" problems in the rc.d scripts that have beendougb2009-07-161-3/+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.
* Bump portrevision due to upgrade of devel/gettext.edwin2008-06-061-1/+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)
* Remove USE_REINPLACE from ports starting with Medwin2006-05-111-1/+0
|
* Fix missing upclient.sh from SUB_FILESedwin2006-04-171-2/+2
| | | | Noticed by: YAPHR
* Use SUB_FILES for pkg-messageedwin2006-04-013-15/+3
|
* Remove the FreeBSD KEYWORD from all rc.d scripts where it appears.dougb2006-02-211-1/+0
| | | | | | | 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.
* SHA256ifyedwin2006-01-221-0/+1
| | | | Approved by: krion@
* Now that new style rc.d scripts are being run as part of thedougb2006-01-072-2/+2
| | | | | | | | | | | | | | | | | | | | | | base rcorder, hard coded variable values in these scripts are overriding the values in /etc/rc.conf[.local] (due to the way that variables from the latter are read at boot time). Therefore, change the boot scripts to set default values only if the variable is unset in /etc/rc.conf[.local]. This will allow the service to start at boot time if it's been enabled as the user would expect. This change will be a noop for users who have systems that have not yet been upgraded to the new rc.d code in the base. In many cases there are other variables in the scripts that should get similar treatment, however I did not change anything other than the _enable lines. I'll leave the rest up to the maintainers to do as they see fit. Bump PORTREVISION to make sure that users and packages pick up this change.
* Reset maintainer per his request. We hope to see him back soon.linimon2005-12-021-1/+1
|
* Add size data.trevor2004-03-181-0/+1
| | | | Approved by: maintainers
* - Use RC_SUBRkrion2004-03-041-1/+1
| | | | Submitted by: maintainer
* - Fix MASTER_SITESkrion2004-03-038-106/+114
| | | | | | | | | - Add USE_RC_SUBR - Update pkg-descr - Use DOCSDIR PR: ports/63668 Submitted by: maintainer
* Add USE_GETTEXT and bump PORTREVISION.marcus2004-02-041-3/+2
| | | | | Submitted by: trevor Tested by: bento
* Now gettext 0.12.1 is gettext-old.trevor2004-01-241-1/+1
|
* Bump the PORTREVISION for the ports directly affected by the gettext upgrade.marcus2003-08-271-0/+1
| | | | Prodded by: kris
* Chase the libintl.so shared lib version.marcus2003-08-251-1/+1
|
* Fix installlioux2003-06-161-0/+8
| | | | | | Submitted by: maintainer Prompteb by: bento, kris
* Update to 5.0.b8lioux2003-06-126-72/+20
| | | | | PR: 53230 Submitted by: maintainer
* De-pkg-comment.knu2003-02-212-1/+1
|
* Don't refer to ${GMAKE} after USE_GMAKE has been removed.naddy2003-02-181-1/+1
| | | | Reported by: kris
* Update to 5.0.b7 and various small changes.naddy2003-02-147-37/+32
| | | | | PR: 47869 Submitted by: Cyrille Lefevre <cyrille.lefevre@laposte.net>
* Update to 5.0.b6.petef2003-01-0312-321/+252
| | | | | PR: 46339 Submitted by: maintainer
* Rename patch-message target to patch-pkgmessage since patch-messagenaddy2002-11-061-2/+2
| | | | | | is already used by bsd.port.mk. Approved by: maintainer
* * Upgrade to 5.0.b5.obraun2002-10-209-119/+311
| | | | | | | | * Changed MASTER_SITES. * Respect PREFIX correctly. PR: 44283 Submitted by: maintainer
* ${PERL} -> ${REINPLACE_CMD}ijliao2002-06-241-1/+2
| | | | | PR: 39746 Submitted by: Cyrille Lefevre <cyrille.lefevre@laposte.net> (maintainer)
* Update maintainer's email addressdwcjr2002-01-181-1/+1
| | | | | | | Update a few MASTER_SITES PR: 34012 Submitted by: maintainer
* Update to 4.2.1.23 The Uptimes Project is back!pat2001-11-1912-270/+248
| | | | | | PR: 32080 Submitted by: maintainer Approved by: lioux
* Update MAINTAINER email: clefevre@redirect.to -> clefevre@citeweb.netlioux2001-08-301-1/+1
| | | | Approved by: MAINTAINER
* Mark Broken due to "extended vacation" of projectdwcjr2001-08-241-0/+6
| | | | | PR: 29945 Submitted by: maintainer
* Change maintainer's email address: clefevre@poboxes.com -> clefevre@redirect.toroam2001-06-091-1/+1
| | | | | PR: 27867 Submitted by: maintainer
* change maintainer's e-mail address.sf2001-02-161-1/+1
|
* Update to 4.2.1.21kevlo2001-01-075-16/+22
| | | | | PR: 24108 Submitted by: MAINTAINER
* Major update from 3.04 to 4.2.1.19jeh2001-01-0513-55/+363
| | | | | PR: 23948 Submitted by: Cyrille Lefevre <clefevre@citeweb.net>
* Convert to PORTNAME/PORTVERSION.asami2000-04-141-2/+2
|
* Mark it as BROKEN.imura2000-01-232-1/+4
| | | | | | | | | | | Add new version's WWW. Maintainer says that the server that the client communicates with has been shutdown so it is useless. Instead, they have setup a new server to which the new client (4.x) talks to. He can't reasonably port the new version, yet. Submitted by: Maintainer
* Remove unfetchable site from MASTER_SITES.imura2000-01-151-2/+1
| | | | | PR: 15865 Submitted by: Maintainer
* Add a active site as a second $(MASTER_SITES)imura1999-11-261-1/+2
| | | | | PR: 15045 Submitted by: Maintainer
* $Id$ -> $FreeBSD$peter1999-08-301-1/+1
|
* Import of upclient.cpiazza1999-08-298-0/+89
This is the client program for the Server Uptimes project. For more information on the Server Uptimes project visit their web site at: http://uptime.hexon.cx/ PR: 13272 Submitted by: Kelly Yancey <kbyanc@posi.net>