blob: 6492d011956fdc1f09d579e555eca7f85b407de1 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# New ports collection makefile for: hackedbox
# Date created: 2002-05-11
# Whom: Dominic Marks <d.marks@student.umist.ac.uk>
# based on the blackbox and openbox ports
#
# $FreeBSD$
#
PORTNAME= hackedbox
PORTVERSION= 0.8.0
CATEGORIES= x11-wm
MASTER_SITES= http://scrudgeware.org/downloads/hackedbox/
MAINTAINER= d.marks@student.umist.ac.uk
MAN1= hackedbox.1
DOCS= AUTHORS ChangeLog INSTALL README TODO
I10L= C da_DK de_DE es_ES et_EE fr_FR it_IT nl_NL pt_BR ru_RU sl_SI \
sv_SE tr_TR
STYLES= artwiz bluebox cthulhain deep flux frobozz frobust nyz \
nyzclone operation outcomes shade steelblue \
steelblue2 the_orange trisb twice
PLIST= ${WRKDIR}/pkg-plist
#USE_GMAKE= yes
USE_REINPLACE= yes
USE_X_PREFIX= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-bg-utils
do-patch:
${REINPLACE_CMD} -e \
"s:/usr/local/share/hackedbox:${PREFIX}/share/hackedbox:g" \
${WRKSRC}/data/menu.in
${REINPLACE_CMD} -e \
"s:blackbox:hackedbox:g; s:Blackbox:Hackedbox:g; \
s:bsetroot:hsetroot:g; s:Bsetroot:Hsetroot:g" \
${WRKSRC}/data/styles/*
pre-install:
${RM} -f ${PLIST}
.for ii in hsetroot hackedbox
${ECHO_CMD} bin/${ii} >> ${PLIST}
.endfor
${ECHO_CMD} share/hackedbox/menu >> ${PLIST}
.for ii in ${I10L}
${ECHO_CMD} share/hackedbox/nls/${ii}/hackedbox.cat >> ${PLIST}
${ECHO_CMD} @dirrm share/hackedbox/nls/${ii} >> ${PLIST}
.endfor
.for ii in ${STYLES}
${ECHO_CMD} share/hackedbox/styles/${ii} >> ${PLIST}
.endfor
.for ii in /backgrounds /styles /nls /
${ECHO_CMD} @dirrm share/hackedbox${ii} >> ${PLIST}
.endfor
.if !defined(NOPORTDOCS)
.for ii in ${DOCS}
${ECHO_CMD} share/doc/hackedbox/${ii} >> ${PLIST}
.endfor
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/util/bsetroot ${PREFIX}/bin/hsetroot
${INSTALL_PROGRAM} ${WRKSRC}/src/hackedbox ${PREFIX}/bin/hackedbox
${MKDIR} ${DATADIR}/styles ${DATADIR}/backgrounds
${INSTALL_DATA} ${WRKSRC}/data/menu ${DATADIR}
.for ii in ${I10L}
${MKDIR} ${PREFIX}/share/hackedbox/nls/${ii}/
${INSTALL_DATA} ${WRKSRC}/nls/${ii}/blackbox.cat \
${PREFIX}/share/hackedbox/nls/${ii}/hackedbox.cat
.endfor
.for ii in ${BACKGROUNDS}
${INSTALL_DATA} ${WRKSRC}/data/backgrounds/${ii} \
${PREFIX}/share/hackedbox/backgrounds/
.endfor
.for ii in ${STYLES}
${INSTALL_DATA} ${WRKSRC}/data/styles/${ii} \
${PREFIX}/share/hackedbox/styles/
.endfor
${INSTALL_MAN} ${WRKSRC}/doc/hackedbox.1 ${PREFIX}/man/man1/hackedbox.1
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}/nl_NL ${DOCSDIR}/sl_SI
.for ii in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${ii} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|