mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
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
This commit is contained in:
parent
5ffc2c172d
commit
c410d7752f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=355136
@ -91,6 +91,7 @@
|
||||
SUBDIR += figlet-fonts
|
||||
SUBDIR += findutils
|
||||
SUBDIR += firestring
|
||||
SUBDIR += flag
|
||||
SUBDIR += floatator
|
||||
SUBDIR += fortune-mod-bible
|
||||
SUBDIR += fortune-mod-bofh
|
||||
|
37
misc/flag/Makefile
Normal file
37
misc/flag/Makefile
Normal file
@ -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 <bsd.port.options.mk>
|
||||
|
||||
.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 <bsd.port.mk>
|
2
misc/flag/distinfo
Normal file
2
misc/flag/distinfo
Normal file
@ -0,0 +1,2 @@
|
||||
SHA256 (flag-1.0.5.tgz) = 8db0d4a40a9c119689275cbf00508c4af96553c3a7e035e9836d533d22f8d98f
|
||||
SIZE (flag-1.0.5.tgz) = 5683
|
8
misc/flag/pkg-descr
Normal file
8
misc/flag/pkg-descr
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user