freebsd-ports/sysutils/screenfetch/Makefile
Baptiste Daroussin 4a4ec28d37 Convert all :U to :tu and :L to :tl
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a
replacement for :U and :L (which has been marked as deprecated)

bmake which is the default on FreeBSD 10+ only support by default
:tu/:tl a hack has been added at the time to support :U and :L to ease
migration. This hack is now not necessary anymore

Note that this makes the ports tree incompatible with make(1) from
FreeBSD 8.3 or earlier

With hat:	portmgr
2014-05-05 09:45:36 +00:00

37 lines
853 B
Makefile

# Created by: Jason Helfman <jgh@FreeBSD.org>
# $FreeBSD$
PORTNAME= screenFetch
PORTVERSION= 3.2.0
CATEGORIES= sysutils
MASTER_SITES= LOCAL/jgh/sysutils/${PORTNAME:tl}/ \
GH
MAINTAINER= jgh@FreeBSD.org
COMMENT= Bash Screenshot Information Tool
LICENSE= GPLv3
RUN_DEPENDS= bash:${PORTSDIR}/shells/bash \
xdpyinfo:${PORTSDIR}/x11/xdpyinfo
OPTIONS_DEFINE= DOCS
NO_BUILD= yes
USE_GITHUB= yes
GH_ACCOUNT= KittyKatt
GH_TAGNAME= be0e27d
GH_COMMIT= ${GH_TAGNAME}
PLIST_FILES= bin/screenFetch bin/screenfetch
PORTDOCS= CHANGELOG README.mkdn TODO
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME:tl}-dev ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
${LN} -fs ${PORTNAME} ${STAGEDIR}${PREFIX}/bin/screenfetch
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for file in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>