blob: 4ac063ba2d354ea5de35a0c50e8361663b62bf6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# 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= vg@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
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} -fr test/*.bak example/*.bak
post-install:
@${MKDIR} ${STAGEDIR}${FONTSDIR}
@${INSTALL_DATA} ${WRKSRC}/fonts/* ${STAGEDIR}${FONTSDIR}
.include <bsd.port.mk>
|