Bug 175726 - sysutils/sec: update to 2.7.0
Summary: sysutils/sec: update to 2.7.0
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-01-31 09:50 UTC by Nicolas Jombart
Modified: 2013-01-31 11:50 UTC (History)
0 users

See Also:


Attachments
sec.diff (908 bytes, patch)
2013-01-31 09:50 UTC, Nicolas Jombart
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Nicolas Jombart 2013-01-31 09:50:00 UTC
	

Update sysutils/sec to 2.7.0

No new files.
Comment 1 dfilter service freebsd_committer freebsd_triage 2013-01-31 11:46:34 UTC
Author: danfe
Date: Thu Jan 31 11:46:20 2013
New Revision: 311302
URL: http://svnweb.freebsd.org/changeset/ports/311302

Log:
  - Update to version 2.7.0
  - Define LICENSE (GPLv2)
  - Fix PORT_OPTIONS:MDOCS check
  - Clean up Makefile while here
  
  PR:		ports/175726
  Submitted by:	maintainer

Modified:
  head/sysutils/sec/Makefile
  head/sysutils/sec/distinfo
  head/sysutils/sec/pkg-descr

Modified: head/sysutils/sec/Makefile
==============================================================================
--- head/sysutils/sec/Makefile	Thu Jan 31 09:14:51 2013	(r311301)
+++ head/sysutils/sec/Makefile	Thu Jan 31 11:46:20 2013	(r311302)
@@ -1,40 +1,40 @@
 # $FreeBSD$
 
 PORTNAME=	sec
-PORTVERSION=	2.6.2
+PORTVERSION=	2.7.0
 CATEGORIES=	sysutils
 MASTER_SITES=	SF/simple-evcorr/${PORTNAME}/${PORTVERSION}
 
 MAINTAINER=	ecu@200ok.org
 COMMENT=	Simple event (logs) correlator
 
-USE_PERL5_RUN=	YES
-NO_BUILD=	YES
+LICENSE=	GPLv2
 
+USE_PERL5_RUN=	yes
 USE_RC_SUBR=	sec
-SUB_LIST=	PERL=${PERL}
+
+NO_BUILD=	yes
 
 MAN8=		sec.8
-MANCOMPRESSED=	no
+PORTDOCS=	ChangeLog README
+
 PLIST_FILES=	bin/sec
-DATADIR=	share/sec
 PORTCONTRIB=	convert.pl itostream.c swatch2sec.pl
 PLIST_FILES+=	${PORTCONTRIB:S|^|%%DATADIR%%/|}
-PLIST_DIRS+=	${DATADIR}
-PORTDOCS=	ChangeLog README
+PLIST_DIRS+=	%%DATADIR%%
+
+OPTIONS_DEFINE=	DOCS
 
 .include <bsd.port.options.mk>
 
 do-install:
-	${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
-	${INSTALL_MAN} ${WRKSRC}/sec.man ${PREFIX}/man/man8/sec.8
+	${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
+	${INSTALL_MAN} ${WRKSRC}/sec.man ${MANPREFIX}/man/man8/sec.8
+	@${MKDIR} ${DATADIR}
+	cd ${WRKSRC}/contrib && ${INSTALL_DATA} ${PORTCONTRIB} ${DATADIR}
 .if ${PORT_OPTIONS:MDOCS}
-	${MKDIR} ${DOCSDIR}
-.for file in ${PORTDOCS}
-	${INSTALL_MAN} ${WRKSRC}/${file} ${DOCSDIR}
-.endfor
+	@${MKDIR} ${DOCSDIR}
+	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
 .endif
-	@${MKDIR} ${PREFIX}/${DATADIR}
-	cd ${WRKSRC}/contrib && ${INSTALL_DATA} ${PORTCONTRIB} ${PREFIX}/${DATADIR}
 
 .include <bsd.port.mk>

Modified: head/sysutils/sec/distinfo
==============================================================================
--- head/sysutils/sec/distinfo	Thu Jan 31 09:14:51 2013	(r311301)
+++ head/sysutils/sec/distinfo	Thu Jan 31 11:46:20 2013	(r311302)
@@ -1,2 +1,2 @@
-SHA256 (sec-2.6.2.tar.gz) = d2f4877a79a04042f39c30390be46c4334b9141945f606935a40f1a9455a9948
-SIZE (sec-2.6.2.tar.gz) = 100464
+SHA256 (sec-2.7.0.tar.gz) = 85e9f0356b90591f05f5057dd92b780081caf685d8896bcb6185fb9ee6dbdbe8
+SIZE (sec-2.7.0.tar.gz) = 105388

Modified: head/sysutils/sec/pkg-descr
==============================================================================
--- head/sysutils/sec/pkg-descr	Thu Jan 31 09:14:51 2013	(r311301)
+++ head/sysutils/sec/pkg-descr	Thu Jan 31 11:46:20 2013	(r311302)
@@ -1,7 +1,8 @@
 SEC is an event correlation tool that was designed to fill the gap between
 commercial event correlation systems and homegrown solutions that usually
 comprise of a few simple shell scripts.
-SEC is highly customisable to accept events from many sources and build
-a powerful correlation engine.
+
+SEC is highly customizable to accept events from many sources and build a
+powerful correlation engine.
 
 WWW: http://simple-evcorr.sourceforge.net/
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 2 Alexey Dokuchaev freebsd_committer freebsd_triage 2013-01-31 11:47:48 UTC
State Changed
From-To: open->closed

Committed with some modifications, thanks!