fbd43637e1
With hat: portmgr-secretary
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
# Created by: Gvozdikov Veniamin <g.veniamin@googlemail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= conkyforecast
|
|
PORTVERSION= 2.20
|
|
PORTREVISION= 1
|
|
CATEGORIES= deskutils
|
|
MASTER_SITES= https://launchpadlibrarian.net/70673352/ \
|
|
LOCAL/vg
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Weather forecast script for conky
|
|
|
|
LICENSE= GPLv3
|
|
|
|
RUN_DEPENDS= conky:sysutils/conky \
|
|
pidof:sysutils/pidof
|
|
|
|
USES= gettext python fonts
|
|
USE_PYTHON= distutils concurrent optsuffix
|
|
SUB_FILES= pkg-message
|
|
|
|
WRKSRC= ${WRKDIR}/src
|
|
|
|
post-patch:
|
|
@cd ${WRKSRC} && ${REINPLACE_CMD} -e 's,/usr/share/${PORTNAME},${DATADIR},g' \
|
|
setup.py \
|
|
test/conkyForecast.test.conkyrc \
|
|
test/conkyForecast.test.sh \
|
|
example/conkyForecast.fontbased.sh \
|
|
example/conkyForecast.fontbasedtemplate.conkyrc \
|
|
example/conkyForecast.fontbasedtemplate.sh \
|
|
example/conkyForecast.imagebasedtemplate.conkyrc \
|
|
example/conkyForecast.imagebasedtemplate.sh \
|
|
conkyForecast.py \
|
|
conkyForecast \
|
|
conkyForecast-SunsetSunriseCountdown
|
|
@cd ${WRKSRC} && ${REINPLACE_CMD} -e 's,/usr/bin/python,/usr/bin/env,g' \
|
|
conkyForecast \
|
|
conkyForecast-SunsetSunriseCountdown
|
|
@cd ${WRKSRC} && ${RM} -r test/*.bak example/*.bak
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${FONTSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/fonts/* ${STAGEDIR}${FONTSDIR}
|
|
|
|
.include <bsd.port.mk>
|