svn commit: r323535 - head/textproc/fileshuffle

Greg Larkin glarkin at FreeBSD.org
Tue Jul 23 15:41:49 UTC 2013


Author: glarkin
Date: Tue Jul 23 15:41:48 2013
New Revision: 323535
URL: http://svnweb.freebsd.org/changeset/ports/323535

Log:
  - Converted header
  - Reassigned to heap
  - Marken BROKEN for clang builds
  - Marked DEPRECATED with removal in 2 months (program does not shuffle lines,
    no interest in debugging, upstream development ceased, suitable replacement
    found in gshuf tool in sysutils/coreutils)

Modified:
  head/textproc/fileshuffle/Makefile

Modified: head/textproc/fileshuffle/Makefile
==============================================================================
--- head/textproc/fileshuffle/Makefile	Tue Jul 23 15:32:49 2013	(r323534)
+++ head/textproc/fileshuffle/Makefile	Tue Jul 23 15:41:48 2013	(r323535)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	fileshuffle
-# Date created:		2008-05-29
-# Whom:			Greg Larkin <glarkin at FreeBSD.org>
-#
+# Created by: Greg Larkin <glarkin at FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	fileshuffle
 PORTVERSION=	0.1
@@ -11,8 +7,14 @@ CATEGORIES=	textproc
 MASTER_SITES=	ftp://ftp.eskimo.com/u/s/scs/src/
 DISTNAME=	shuffle
 
-MAINTAINER=	glarkin at FreeBSD.org
-COMMENT=	A filter for shuffling lines in a text file into random order
+MAINTAINER=	ports at FreeBSD.org
+COMMENT=	Filter for shuffling lines in a text file into random order
+
+.if ${CC:Mclang}
+BROKEN=		Does not compile with clang, use gshuf from sysutils/coreutils instead
+.endif
+DEPRECATED=	Does not work, use gshuf from sysutils/coreutils instead
+EXPIRATION_DATE=2013-09-23
 
 MANPAGE=	shuffle.1
 


More information about the svn-ports-all mailing list