blob: a942909ce5c33f385fbf99c9a11d13073f480867 (
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
|
# $FreeBSD$
PORTNAME= asclock-xlib
PORTVERSION= 2.0.11
PORTREVISION= 4
CATEGORIES= x11-clocks afterstep windowmaker
MASTER_SITES= LOCAL/kuriyama
MAINTAINER= kuriyama@FreeBSD.org
COMMENT= New flavor of asclock
MAKE_JOBS_UNSAFE= yes
WRKSRC= ${WRKDIR}/asclock-xlib
USE_XORG= xpm x11
USES= imake
.include <bsd.port.pre.mk>
post-patch:
@(cd ${WRKSRC}; \
${MV} config.c config.c.tmp; \
${SED} -e s@/usr/local/@${PREFIX}/@ -e s@/usr/share/asclock@${PREFIX}/share/asclock@ < config.c.tmp > config.c )
pre-configure:
@(cd ${WRKSRC}; \
${RM} -r default_theme; \
${LN} -s themes/Orb default_theme)
post-install:
.for i in Freeamp Newstone Orb Stone beats classic penguin shaped
(cd ${WRKSRC}/themes/${i}; \
${MKDIR} ${STAGEDIR}${PREFIX}/share/asclock/${i}; \
${INSTALL_DATA} *.xpm config ${STAGEDIR}${PREFIX}/share/asclock/${i}/ )
.endfor
.include <bsd.port.post.mk>
|