1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00
freebsd-ports/misc/flag/Makefile
Martin Wilke c410d7752f 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
2014-05-25 07:34:26 +00:00

38 lines
830 B
Makefile

# $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>