Date: Sun, 30 Apr 2006 14:46:49 +0300 From: "Ion-Mihai "IOnut" Tetcu" <itetcu@people.tecnik93.com> To: "FreeBSD gnats submit" <FreeBSD-gnats-submit@FreeBSD.org> Cc: Dan Langille <dan@langille.org> Subject: ports/96545: [MAINTAINER] sysutils/apcupsd: update to 3.12.3 Message-ID: <1146397609.81693@it.buh.tecnik93.com> Resent-Message-ID: <200604301150.k3UBoBOg023897@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 96545 >Category: ports >Synopsis: [MAINTAINER] sysutils/apcupsd: update to 3.12.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Apr 30 11:50:11 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Ion-Mihai "IOnut" Tetcu >Release: FreeBSD 6.1-PRERELEASE i386 >Organization: Tecnik'93 >Environment: System: FreeBSD 6.1-PRERELEASE #3: Tue Apr 4 15:35:15 EEST 2006 root@it.buh.tecnik93.com:/usr/obj/usr/src/sys/IT6_U_P >Description: Update to 3.12.3: Bug fix release. Eliminates need for libstdc++ when using gcc-3 or higher. Also some fixes to the BSD USB driver and build fixes for various rare cases. See ChangeLog for full details: http://sourceforge.net/project/shownotes.php?group_id=54413&release_id=413549 Confilct with libgnugetopt-[0-9]* (devel/libgnugetopt) - the port doesn't build if the libgnugetopt is installed; this is an ugly, temporary "fix". Fix a warning due to listing DOCSDIR in plist while using PORTDOCS in Makefile Tinderbox logs: http://sce-tindy.tecnik93.com/tb-exp/index.php?action=describe_port&id=229 Also tested on amd64 tindy >How-To-Repeat: >Fix: --- apcupsd-3.12.2_to_3.12.3.diff begins here --- Index: Makefile =================================================================== RCS file: /var/fcvs/ports/sysutils/apcupsd/Makefile,v retrieving revision 1.44 diff -u -r1.44 Makefile --- Makefile 22 Apr 2006 13:51:37 -0000 1.44 +++ Makefile 30 Apr 2006 11:37:20 -0000 @@ -4,10 +4,10 @@ # # $FreeBSD: ports/sysutils/apcupsd/Makefile,v 1.44 2006/04/22 13:51:37 mnag Exp $ # -# $Tecnik: ports/sysutils/apcupsd/Makefile,v 1.7 2006/04/20 16:43:54 itetcu Exp $ +# $Tecnik: ports/sysutils/apcupsd/Makefile,v 1.9 2006/04/30 11:36:52 itetcu Exp $ PORTNAME= apcupsd -PORTVERSION= 3.12.2 +PORTVERSION= 3.12.3 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:S/$/:src_sf/g} \ http://sce-tindy.tecnik93.com/FreeBSD/ports/${PORTNAME}/sources/:src_bk \ @@ -21,6 +21,8 @@ MAINTAINER= itetcu@people.tecnik93.com COMMENT= A daemon for controlling APC UPS +CONFLICTS= libgnugetopt-[0-9]* + USE_GETTEXT= yes USE_RC_SUBR= apcupsd Index: distinfo =================================================================== RCS file: /var/fcvs/ports/sysutils/apcupsd/distinfo,v retrieving revision 1.15 diff -u -r1.15 distinfo --- distinfo 22 Apr 2006 13:51:37 -0000 1.15 +++ distinfo 30 Apr 2006 11:37:20 -0000 @@ -1,6 +1,6 @@ -MD5 (apcupsd-3.12.2.tar.gz) = f771fafbc06551e7820bd3d277b5cce3 -SHA256 (apcupsd-3.12.2.tar.gz) = 755cd2bffc4090c58979a87ed3f9135afd1846153feb8a39fad95f745adbd347 -SIZE (apcupsd-3.12.2.tar.gz) = 4219660 +MD5 (apcupsd-3.12.3.tar.gz) = e329c5b71cd4d6b179750a7c9b6f0c30 +SHA256 (apcupsd-3.12.3.tar.gz) = 871dc9957998f9f23a92d3e2bfd38a28aad0a7972a9bd6652c1d045f3db45132 +SIZE (apcupsd-3.12.3.tar.gz) = 4222539 MD5 (apcupsd.pdf) = 6cc2c59e54abc35854758e43f8fd13a4 SHA256 (apcupsd.pdf) = 7d5664233350757709adfbf09cfd4f2434028c8af14c8f48c4255d41adfda0ca SIZE (apcupsd.pdf) = 1095048 Index: pkg-message =================================================================== RCS file: /var/fcvs/ports/sysutils/apcupsd/pkg-message,v retrieving revision 1.6 diff -u -r1.6 pkg-message --- pkg-message 22 Apr 2006 13:51:37 -0000 1.6 +++ pkg-message 30 Apr 2006 11:37:20 -0000 @@ -10,7 +10,7 @@ must be copied and/or configured for a proper working apcupsd. You need to modify ${PREFIX}/etc/apcupsd/apcupsd.conf as follows: - For serial cable: DEVICE /dev/cuaadX (or /dev/cuaaX for [45.]x) + For serial cable: DEVICE /dev/cuadX (or /dev/cuaaX for [45.]x) For USB cable: DEVICE (yes, leave it blank after DEVICE) NOTE that for USB cable you must comment out the line Index: pkg-plist =================================================================== RCS file: /var/fcvs/ports/sysutils/apcupsd/pkg-plist,v retrieving revision 1.18 diff -u -r1.18 pkg-plist --- pkg-plist 22 Apr 2006 13:51:37 -0000 1.18 +++ pkg-plist 30 Apr 2006 11:37:20 -0000 @@ -27,4 +27,3 @@ %%CGI%%etc/apcupsd/cgi/upsstats.cgi %%CGI%%@dirrm etc/apcupsd/cgi @dirrmtry etc/apcupsd -%%PORTDOCS%%@dirrm %%DOCSDIR%% --- apcupsd-3.12.2_to_3.12.3.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1146397609.81693>