From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 25 07:40:03 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 44A8AD8D for ; Sun, 25 May 2014 07:40:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 31AE12744 for ; Sun, 25 May 2014 07:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4P7e3Yt003232 for ; Sun, 25 May 2014 07:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4P7e3lK003231; Sun, 25 May 2014 07:40:03 GMT (envelope-from gnats) Date: Sun, 25 May 2014 07:40:03 GMT Message-Id: <201405250740.s4P7e3lK003231@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/183117: commit references a PR Reply-To: dfilter@FreeBSD.ORG (dfilter service) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2014 07:40:03 -0000 The following reply was made to PR ports/183117; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/183117: commit references a PR Date: Sun, 25 May 2014 07:34:32 +0000 (UTC) Author: miwi Date: Sun May 25 07:34:26 2014 New Revision: 355136 URL: http://svnweb.freebsd.org/changeset/ports/355136 QAT: https://qat.redports.org/buildarchive/r355136/ Log: flag Produces a cute little ansi colour 'flag' based off a hash of the machine's hostname (or settable via ~/.flag or /etc/flag) which can uniquely visually identify a machine, at a glance. Useful for placing into /etc/issue or your bash prompt, so that you don't send stupid commands to the wrong machine. WWW: http://git.cyberleo.net/CDN/flag.git PR: ports/183117 Submitted by: cyberleo@cyberleo.net Added: head/misc/flag/ head/misc/flag/Makefile (contents, props changed) head/misc/flag/distinfo (contents, props changed) head/misc/flag/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Sun May 25 07:33:58 2014 (r355135) +++ head/misc/Makefile Sun May 25 07:34:26 2014 (r355136) @@ -91,6 +91,7 @@ SUBDIR += figlet-fonts SUBDIR += findutils SUBDIR += firestring + SUBDIR += flag SUBDIR += floatator SUBDIR += fortune-mod-bible SUBDIR += fortune-mod-bofh Added: head/misc/flag/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/flag/Makefile Sun May 25 07:34:26 2014 (r355136) @@ -0,0 +1,37 @@ +# $FreeBSD$ + +PORTNAME= flag +PORTVERSION= 1.0.5 +CATEGORIES= misc +MASTER_SITES= http://git.cyberleo.net/releases/${PORTNAME}/ +EXTRACT_SUFX= .tgz + +MAINTAINER= cyberleo@cyberleo.net +COMMENT= Turn the hostname into a colourful and visually distinctive ansi flag + +NO_BUILD= yes + +OPTIONS_DEFINE= BASH +BASH_DESC= Install include for Bash prompt +OPTIONS_DEFAULT=BASH + +PLIST_FILES= bin/flag + +.include + +.if ${PORT_OPTIONS:MBASH} +PLIST_FILES+= share/flag/bash_prompt.sh +PLIST_DIRS+= share/flag +.endif + +post-extract: + ${REINPLACE_CMD} -e 's@"/etc/flag"@"${PREFIX}/etc/flag"@' ${WRKSRC}/flag + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/flag ${STAGEDIR}${PREFIX}/bin/flag +.if ${PORT_OPTIONS:MBASH} + ${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/bash_prompt.sh ${STAGEDIR}${DATADIR} +.endif + +.include Added: head/misc/flag/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/flag/distinfo Sun May 25 07:34:26 2014 (r355136) @@ -0,0 +1,2 @@ +SHA256 (flag-1.0.5.tgz) = 8db0d4a40a9c119689275cbf00508c4af96553c3a7e035e9836d533d22f8d98f +SIZE (flag-1.0.5.tgz) = 5683 Added: head/misc/flag/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/flag/pkg-descr Sun May 25 07:34:26 2014 (r355136) @@ -0,0 +1,8 @@ +flag + +Produces a cute little ansi colour 'flag' based off a hash of the machine's +hostname (or settable via ~/.flag or /etc/flag) which can uniquely visually +identify a machine, at a glance. Useful for placing into /etc/issue or your +bash prompt, so that you don't send stupid commands to the wrong machine. + +WWW: http://git.cyberleo.net/CDN/flag.git _______________________________________________ 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"