View | Details | Raw Unified | Return to bug 211814 | Differences between
and this patch

Collapse All | Expand All

(-)fluxbox/Makefile (-103 / +40 lines)
Lines 3-31 Link Here
3
3
4
PORTNAME=	fluxbox
4
PORTNAME=	fluxbox
5
PORTVERSION=	1.3.7
5
PORTVERSION=	1.3.7
6
PORTREVISION=	1
6
CATEGORIES=	x11-wm
7
CATEGORIES=	x11-wm
7
MASTER_SITES=	SF
8
MASTER_SITES=	SF
8
DISTFILES=	${DISTNAME}${EXTRACT_SUFX}
9
EXTRACT_ONLY=	${DISTNAME}${EXTRACT_SUFX}
9
EXTRACT_ONLY=	${DISTNAME}${EXTRACT_SUFX}
10
10
11
MAINTAINER=	jgh@FreeBSD.org
11
MAINTAINER=	jgh@FreeBSD.org
12
COMMENT=	Small and fast window manager based on BlackBox
12
COMMENT=	Small and fast window manager based on BlackBox
13
13
14
LICENSE=	MIT
14
LICENSE=	MIT
15
LICENSE_FILE=	${WRKSRC}/COPYING
15
16
16
RUN_DEPENDS=	xmessage:x11/xmessage
17
RUN_DEPENDS=	xmessage:x11/xmessage
17
LIB_DEPENDS=	libfribidi.so:converters/fribidi
18
LIB_DEPENDS=	libfribidi.so:converters/fribidi \
19
		libfreetype.so:print/freetype2 \
20
		libfontconfig.so:x11-fonts/fontconfig
18
21
19
USE_XORG=	xextproto xft xpm xrandr
22
USE_XORG=	x11 xext xextproto xft xpm xrandr
20
USES=		gmake pkgconfig
23
USES=		gmake pkgconfig
21
WANT_GNOME=	yes
22
GNU_CONFIGURE=	yes
24
GNU_CONFIGURE=	yes
23
25
24
PORTDOCS=		AUTHORS ChangeLog NEWS README TODO
26
PORTDATA=		*
27
PORTDOCS=		*
25
28
26
DOCSVERSION=	20060629
29
DOCSVERSION=	20060629
27
30
28
OPTIONS_DEFINE=	DOCS DOCHTML PDFDOCS DEBUG GNOME IMLIB2 XINERAMA \
31
OPTIONS_DEFINE=	DOCS DOCHTML PDFDOCS DEBUG IMLIB2 XINERAMA \
29
		XRENDER NLS SLIT SYSTRAY REMEMBER TOOLBAR
32
		XRENDER NLS SLIT SYSTRAY REMEMBER TOOLBAR
30
OPTIONS_DEFAULT=	XRENDER SLIT SYSTRAY REMEMBER TOOLBAR
33
OPTIONS_DEFAULT=	XRENDER SLIT SYSTRAY REMEMBER TOOLBAR
31
DOCHTML_DESC=	Install html documentation
34
DOCHTML_DESC=	Install html documentation
Lines 36-156 Link Here
36
TOOLBAR_DESC=	Enable toolbar feature
39
TOOLBAR_DESC=	Enable toolbar feature
37
XRENDER_DESC=	Enable xrender support
40
XRENDER_DESC=	Enable xrender support
38
41
39
.include <bsd.port.options.mk>
42
DEBUG_CONFIGURE_ON=	--enable-debug
40
43
IMLIB2_CONFIGURE_ENABLE=	imlib2
41
.if ${PORT_OPTIONS:MDEBUG}
44
IMLIB2_LIB_DEPENDS=	libImlib2.so:graphics/imlib2
42
CONFIGURE_ARGS+=	--enable-debug
45
NLS_CONFIGURE_ENABLE=	nls
43
.endif
46
NLS_USES=	iconv
47
NLS_VARS=	CPPFLAGS+="-I${LOCALBASE}/include" LIBS+="-L${LOCALBASE}/lib ${ICONV_LIB}"
48
NLS_VARS_OFF=	CPPFLAGS+="-I${LOCALBASE}/include" LIBS+="-L${LOCALBASE}/lib"
49
REMEMBER_CONFIGURE_ENABLE=	remember
50
SLIT_CONFIGURE_ENABLE=	slit
51
SYSTRAY_CONFIGURE_ENABLE=	systray
52
TOOLBAR_CONFIGURE_ENABLE=	toolbar
53
XINERAMA_CONFIGURE_ENABLE=	xinerama
54
XINERAMA_USE=	XORG=xinerama
55
XRENDER_USE=	XORG=xrender
56
XRENDER_CONFIGURE_ENABLE=	xrender
44
57
45
.if ${PORT_OPTIONS:MDOCHTML}
46
# http://fluxbox.org/docbook/en/tarballs/
58
# http://fluxbox.org/docbook/en/tarballs/
47
MASTER_SITES+=		LOCAL/mezz:html \
59
DOCHTML_MASTER_SITES=	LOCAL/mezz:html \
48
			http://people.freebsd.org/~mezz/distfiles/:html
60
			http://people.freebsd.org/~mezz/distfiles/:html
49
DISTFILES+=		fb-doc-mfhtml-${DOCSVERSION}.tgz:html
61
DOCHTML_DISTFILES=	fb-doc-mfhtml-${DOCSVERSION}.tgz:html
50
EXTRACT_ONLY+=		fb-doc-mfhtml-${DOCSVERSION}.tgz
62
DOCHTML_EXTRACT_ONLY=	fb-doc-mfhtml-${DOCSVERSION}.tgz
51
PLIST_SUB+=		DOCHTML=""
52
.else
53
PLIST_SUB+=		DOCHTML="@comment "
54
.endif
55
56
.if ${PORT_OPTIONS:MPDFDOCS}
57
# http://fluxbox.org/docbook/en/pdf/
63
# http://fluxbox.org/docbook/en/pdf/
58
MASTER_SITES+=		LOCAL/mezz:pdf \
64
PDFDOCS_MASTER_SITES=	LOCAL/mezz:pdf \
59
			http://people.freebsd.org/~mezz/distfiles/:pdf
65
			http://people.freebsd.org/~mezz/distfiles/:pdf
60
DISTFILES+=		fluxbook-${DOCSVERSION}.pdf:pdf
66
PDFDOCS_DISTFILES=	fluxbook-${DOCSVERSION}.pdf:pdf
61
PLIST_SUB+=		DOCPDF=""
62
.else
63
PLIST_SUB+=		DOCPDF="@comment "
64
.endif
65
66
.if ${PORT_OPTIONS:MIMLIB2}
67
LIB_DEPENDS+=		libImlib2.so:graphics/imlib2
68
CONFIGURE_ARGS+=	--enable-imlib2
69
.else
70
CONFIGURE_ARGS+=	--disable-imlib2
71
.endif
72
73
.if ${PORT_OPTIONS:MXINERAMA} || defined(PACKAGE_BUILDING)
74
USE_XORG+=		xinerama
75
CONFIGURE_ARGS+=	--enable-xinerama
76
.endif
77
78
.if ${PORT_OPTIONS:MNLS}
79
USES+=			iconv
80
CPPFLAGS+=		-I${LOCALBASE}/include
81
LIBS+=			-L${LOCALBASE}/lib ${ICONV_LIB}
82
CONFIGURE_ARGS+=	--enable-nls
83
PLIST_SUB+=		NLS=""
84
.else
85
CPPFLAGS+=		-I${LOCALBASE}/include
86
LIBS+=			-L${LOCALBASE}/lib
87
CONFIGURE_ARGS+=	--disable-nls
88
PLIST_SUB+=		NLS="@comment "
89
.endif
90
91
.if ${PORT_OPTIONS:MREMEMBER}
92
CONFIGURE_ARGS+=	--enable-remember
93
.else
94
CONFIGURE_ARGS+=	--disable-remember
95
.endif
96
97
.if ${PORT_OPTIONS:MSLIT}
98
CONFIGURE_ARGS+=	--enable-slit
99
.else
100
CONFIGURE_ARGS+=	--disable-slit
101
.endif
102
103
.if ${PORT_OPTIONS:MSYSTRAY}
104
CONFIGURE_ARGS+=	--enable-systray
105
.else
106
CONFIGURE_ARGS+=	--disable-systray
107
.endif
108
109
.if ${PORT_OPTIONS:MTOOLBAR}
110
CONFIGURE_ARGS+=	--enable-toolbar
111
.else
112
CONFIGURE_ARGS+=	--disable-toolbar
113
.endif
114
115
.if ${PORT_OPTIONS:MXRENDER}
116
USE_XORG+=		xrender
117
CONFIGURE_ARGS+=	--enable-xrender
118
.else
119
CONFIGURE_ARGS+=	--disable-xrender
120
.endif
121
122
.include <bsd.port.pre.mk>
123
124
.if ${HAVE_GNOME:Mlibgnome}!="" || defined(PACKAGE_BUILDING)
125
CONFIGURE_ARGS+=	--enable-gnome
126
.else
127
CONFIGURE_ARGS+=	--disable-gnome
128
.endif
129
67
130
post-patch:
68
post-patch:
69
	@${REINPLACE_CMD} -e 's|/usr/local/bin:/usr/X11R6|${LOCALBASE}|' \
70
		${WRKSRC}/util/fbsetbg
131
	@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
71
	@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
132
		${WRKSRC}/util/fluxbox-generate_menu.in ${WRKSRC}/util/fbsetbg
72
		${WRKSRC}/util/fluxbox-generate_menu.in
133
73
134
.if ! ${PORT_OPTIONS:MNLS}
74
post-patch-NLS-off:
135
	@${REINPLACE_CMD} -e 's|HAVE_ICONV=yes|HAVE_ICONV=no|g' \
75
	@${REINPLACE_CMD} -e 's|iconv_works=yes|iconv_works=no|' \
136
		${WRKSRC}/configure
76
		${WRKSRC}/configure
137
.endif
138
77
139
post-install:
78
post-install-DOCS-on:
140
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
79
	(cd ${WRKSRC} && ${COPYTREE_SHARE} "AUTHORS ChangeLog NEWS README TODO" \
141
	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
80
		${STAGEDIR}${DOCSDIR})
142
81
143
.if ${PORT_OPTIONS:MPDFDOCS}
82
post-install-PDFDOCS-on:
144
	@${MKDIR} ${STAGEDIR}${DOCSDIR}/pdf
83
	@${MKDIR} ${STAGEDIR}${DOCSDIR}/pdf
145
	${INSTALL_DATA} ${DISTDIR}/fluxbook-${DOCSVERSION}.pdf \
84
	${INSTALL_DATA} ${DISTDIR}/fluxbook-${DOCSVERSION}.pdf \
146
		${STAGEDIR}${DOCSDIR}/pdf/
85
		${STAGEDIR}${DOCSDIR}/pdf/
147
.endif
148
86
149
.if ${PORT_OPTIONS:MDOCHTML}
87
post-install-DOCHTML-on:
150
	@${MKDIR} ${STAGEDIR}${DOCSDIR}/html
88
	@${MKDIR} ${STAGEDIR}${DOCSDIR}/html
151
. for h in *.css *.html
89
. for h in *.css *.html
152
	(cd ${WRKDIR}/html && ${INSTALL_DATA} ${h} ${STAGEDIR}${DOCSDIR}/html)
90
	(cd ${WRKDIR}/html && ${INSTALL_DATA} ${h} ${STAGEDIR}${DOCSDIR}/html)
153
. endfor
91
. endfor
154
.endif
155
92
156
.include <bsd.port.post.mk>
93
.include <bsd.port.mk>
(-)fluxbox/files/patch-util__fluxbox-generate_menu.in (-1 / +1 lines)
Lines 203-209 Link Here
203
     append_submenu "${BROWSERMENU}"
203
     append_submenu "${BROWSERMENU}"
204
         normal_find chrome chromium firefox google-chrome mozilla-firefox MozillaFirefox galeon mozilla seamonkey dillo netscape vncviewer
204
         normal_find chrome chromium firefox google-chrome mozilla-firefox MozillaFirefox galeon mozilla seamonkey dillo netscape vncviewer
205
         find_it links       append "[exec]   (links-graphic) {links -driver x ${HOMEPAGE}}"
205
         find_it links       append "[exec]   (links-graphic) {links -driver x ${HOMEPAGE}}"
206
+        find_it linux-opera append "[exec]   (linux-opera) {env QT_XFT=true opera}"
206
+        find_it linux-opera append "[exec]   (linux-opera) {env QT_XFT=true linux-opera}"
207
         find_it opera       append "[exec]   (opera) {env QT_XFT=true opera}"
207
         find_it opera       append "[exec]   (opera) {env QT_XFT=true opera}"
208
         find_it konqueror   append "[exec]   (konqueror) {kfmclient openProfile webbrowsing}"
208
         find_it konqueror   append "[exec]   (konqueror) {kfmclient openProfile webbrowsing}"
209
         find_it links       append "[exec]   (links) {${DEFAULT_TERM} -e links ${HOMEPAGE}}"
209
         find_it links       append "[exec]   (links) {${DEFAULT_TERM} -e links ${HOMEPAGE}}"
(-)fluxbox/files/patch-util_fbsetbg (-12 / +3 lines)
Lines 1-15 Link Here
1
--- util/fbsetbg.orig	2008-09-22 13:47:05.000000000 -0500
1
--- util/fbsetbg.orig	2015-02-08 10:44:45 UTC
2
+++ util/fbsetbg	2008-09-22 13:52:03.000000000 -0500
2
+++ util/fbsetbg
3
@@ -49,7 +49,7 @@
3
@@ -133,9 +133,28 @@ Common tips to use with $command:
4
 
5
 
6
 WHOAMI=`whoami`
7
-[ "$WHOAMI" = root ] && PATH=/bin:/usr/bin/:/usr/local/bin:/usr/X11R6/bin
8
+[ "$WHOAMI" = root ] && PATH=/bin:/usr/bin:%%LOCALBASE%%/bin
9
 
10
 command="`basename \"$0\"`"
11
 
12
@@ -129,9 +129,28 @@
13
 EOF
4
 EOF
14
 }
5
 }
15
 
6
 
(-)fluxbox/pkg-plist (-300 lines)
Lines 6-311 Link Here
6
bin/fluxbox-remote
6
bin/fluxbox-remote
7
bin/fluxbox-update_configs
7
bin/fluxbox-update_configs
8
bin/startfluxbox
8
bin/startfluxbox
9
%%DOCHTML%%%%DOCSDIR%%/html/app-artwiz.html
10
%%DOCHTML%%%%DOCSDIR%%/html/app-debugging.html
11
%%DOCHTML%%%%DOCSDIR%%/html/app-setup.html
12
%%DOCHTML%%%%DOCSDIR%%/html/app-themeref.html
13
%%DOCHTML%%%%DOCSDIR%%/html/book1.html
14
%%DOCHTML%%%%DOCSDIR%%/html/c151.html
15
%%DOCHTML%%%%DOCSDIR%%/html/c152.html
16
%%DOCHTML%%%%DOCSDIR%%/html/c153.html
17
%%DOCHTML%%%%DOCSDIR%%/html/c155.html
18
%%DOCHTML%%%%DOCSDIR%%/html/c157.html
19
%%DOCHTML%%%%DOCSDIR%%/html/c158.html
20
%%DOCHTML%%%%DOCSDIR%%/html/c160.html
21
%%DOCHTML%%%%DOCSDIR%%/html/c161.html
22
%%DOCHTML%%%%DOCSDIR%%/html/c28.html
23
%%DOCHTML%%%%DOCSDIR%%/html/c288.html
24
%%DOCHTML%%%%DOCSDIR%%/html/c289.html
25
%%DOCHTML%%%%DOCSDIR%%/html/c290.html
26
%%DOCHTML%%%%DOCSDIR%%/html/c292.html
27
%%DOCHTML%%%%DOCSDIR%%/html/c294.html
28
%%DOCHTML%%%%DOCSDIR%%/html/c295.html
29
%%DOCHTML%%%%DOCSDIR%%/html/c297.html
30
%%DOCHTML%%%%DOCSDIR%%/html/c298.html
31
%%DOCHTML%%%%DOCSDIR%%/html/c731.html
32
%%DOCHTML%%%%DOCSDIR%%/html/c732.html
33
%%DOCHTML%%%%DOCSDIR%%/html/c733.html
34
%%DOCHTML%%%%DOCSDIR%%/html/c735.html
35
%%DOCHTML%%%%DOCSDIR%%/html/c737.html
36
%%DOCHTML%%%%DOCSDIR%%/html/c738.html
37
%%DOCHTML%%%%DOCSDIR%%/html/c740.html
38
%%DOCHTML%%%%DOCSDIR%%/html/c741.html
39
%%DOCHTML%%%%DOCSDIR%%/html/c96.html
40
%%DOCHTML%%%%DOCSDIR%%/html/c98.html
41
%%DOCHTML%%%%DOCSDIR%%/html/chap-bg.html
42
%%DOCHTML%%%%DOCSDIR%%/html/chap-slit.html
43
%%DOCHTML%%%%DOCSDIR%%/html/chap-tabs.html
44
%%DOCHTML%%%%DOCSDIR%%/html/chap-themes.html
45
%%DOCHTML%%%%DOCSDIR%%/html/chap-toolbar.html
46
%%DOCHTML%%%%DOCSDIR%%/html/docbook.css
47
%%DOCHTML%%%%DOCSDIR%%/html/faq.html
48
%%DOCHTML%%%%DOCSDIR%%/html/index.html
49
%%DOCHTML%%%%DOCSDIR%%/html/sect-fbgm.html
50
%%DOCHTML%%%%DOCSDIR%%/html/sect-fluxspace.html
51
%%DOCHTML%%%%DOCSDIR%%/html/sect-pager.html
52
%%DOCHTML%%%%DOCSDIR%%/html/sect-wmctrl.html
53
%%DOCHTML%%%%DOCSDIR%%/html/x148.html
54
%%DOCHTML%%%%DOCSDIR%%/html/x159.html
55
%%DOCHTML%%%%DOCSDIR%%/html/x160.html
56
%%DOCHTML%%%%DOCSDIR%%/html/x161.html
57
%%DOCHTML%%%%DOCSDIR%%/html/x163.html
58
%%DOCHTML%%%%DOCSDIR%%/html/x165.html
59
%%DOCHTML%%%%DOCSDIR%%/html/x166.html
60
%%DOCHTML%%%%DOCSDIR%%/html/x168.html
61
%%DOCHTML%%%%DOCSDIR%%/html/x169.html
62
%%DOCHTML%%%%DOCSDIR%%/html/x232.html
63
%%DOCHTML%%%%DOCSDIR%%/html/x233.html
64
%%DOCHTML%%%%DOCSDIR%%/html/x234.html
65
%%DOCHTML%%%%DOCSDIR%%/html/x236.html
66
%%DOCHTML%%%%DOCSDIR%%/html/x238.html
67
%%DOCHTML%%%%DOCSDIR%%/html/x239.html
68
%%DOCHTML%%%%DOCSDIR%%/html/x241.html
69
%%DOCHTML%%%%DOCSDIR%%/html/x242.html
70
%%DOCHTML%%%%DOCSDIR%%/html/x320.html
71
%%DOCHTML%%%%DOCSDIR%%/html/x321.html
72
%%DOCHTML%%%%DOCSDIR%%/html/x322.html
73
%%DOCHTML%%%%DOCSDIR%%/html/x324.html
74
%%DOCHTML%%%%DOCSDIR%%/html/x326.html
75
%%DOCHTML%%%%DOCSDIR%%/html/x327.html
76
%%DOCHTML%%%%DOCSDIR%%/html/x329.html
77
%%DOCHTML%%%%DOCSDIR%%/html/x330.html
78
%%DOCHTML%%%%DOCSDIR%%/html/x351.html
79
%%DOCHTML%%%%DOCSDIR%%/html/x352.html
80
%%DOCHTML%%%%DOCSDIR%%/html/x353.html
81
%%DOCHTML%%%%DOCSDIR%%/html/x355.html
82
%%DOCHTML%%%%DOCSDIR%%/html/x357.html
83
%%DOCHTML%%%%DOCSDIR%%/html/x358.html
84
%%DOCHTML%%%%DOCSDIR%%/html/x360.html
85
%%DOCHTML%%%%DOCSDIR%%/html/x361.html
86
%%DOCHTML%%%%DOCSDIR%%/html/x47.html
87
%%DOCHTML%%%%DOCSDIR%%/html/x748.html
88
%%DOCHTML%%%%DOCSDIR%%/html/x749.html
89
%%DOCHTML%%%%DOCSDIR%%/html/x750.html
90
%%DOCHTML%%%%DOCSDIR%%/html/x752.html
91
%%DOCHTML%%%%DOCSDIR%%/html/x754.html
92
%%DOCHTML%%%%DOCSDIR%%/html/x755.html
93
%%DOCHTML%%%%DOCSDIR%%/html/x757.html
94
%%DOCHTML%%%%DOCSDIR%%/html/x758.html
95
%%DOCHTML%%%%DOCSDIR%%/html/x827.html
96
%%DOCHTML%%%%DOCSDIR%%/html/x828.html
97
%%DOCHTML%%%%DOCSDIR%%/html/x829.html
98
%%DOCHTML%%%%DOCSDIR%%/html/x831.html
99
%%DOCHTML%%%%DOCSDIR%%/html/x833.html
100
%%DOCHTML%%%%DOCSDIR%%/html/x834.html
101
%%DOCHTML%%%%DOCSDIR%%/html/x836.html
102
%%DOCHTML%%%%DOCSDIR%%/html/x837.html
103
%%DOCPDF%%%%DOCSDIR%%/pdf/fluxbook-20060629.pdf
104
%%DATADIR%%/apps
105
%%DATADIR%%/init
106
%%DATADIR%%/keys
107
%%DATADIR%%/menu
108
%%NLS%%%%DATADIR%%/nls/C/fluxbox.cat
109
%%NLS%%%%DATADIR%%/nls/be_BY.CP1251/fluxbox.cat
110
%%NLS%%%%DATADIR%%/nls/be_BY.UTF-8/fluxbox.cat
111
%%NLS%%%%DATADIR%%/nls/bg_BG.CP1251/fluxbox.cat
112
%%NLS%%%%DATADIR%%/nls/bg_BG.UTF-8/fluxbox.cat
113
%%NLS%%%%DATADIR%%/nls/cs_CZ.ISO-8859-2/fluxbox.cat
114
%%NLS%%%%DATADIR%%/nls/cs_CZ.UTF-8/fluxbox.cat
115
%%NLS%%%%DATADIR%%/nls/da_DK.ISO-8859-1/fluxbox.cat
116
%%NLS%%%%DATADIR%%/nls/da_DK.UTF-8/fluxbox.cat
117
%%NLS%%%%DATADIR%%/nls/de_AT.ISO-8859-15/fluxbox.cat
118
%%NLS%%%%DATADIR%%/nls/de_AT.UTF-8/fluxbox.cat
119
%%NLS%%%%DATADIR%%/nls/de_CH.ISO-8859-15/fluxbox.cat
120
%%NLS%%%%DATADIR%%/nls/de_CH.UTF-8/fluxbox.cat
121
%%NLS%%%%DATADIR%%/nls/de_DE.ISO-8859-15/fluxbox.cat
122
%%NLS%%%%DATADIR%%/nls/de_DE.UTF-8/fluxbox.cat
123
%%NLS%%%%DATADIR%%/nls/el_GR.UTF-8/fluxbox.cat
124
%%NLS%%%%DATADIR%%/nls/en_GB.ISO-8859-1/fluxbox.cat
125
%%NLS%%%%DATADIR%%/nls/en_GB.UTF-8/fluxbox.cat
126
%%NLS%%%%DATADIR%%/nls/en_US.ISO-8859-1/fluxbox.cat
127
%%NLS%%%%DATADIR%%/nls/en_US.UTF-8/fluxbox.cat
128
%%NLS%%%%DATADIR%%/nls/es_AR.ISO-8859-15/fluxbox.cat
129
%%NLS%%%%DATADIR%%/nls/es_AR.UTF-8/fluxbox.cat
130
%%NLS%%%%DATADIR%%/nls/es_ES.ISO-8859-15/fluxbox.cat
131
%%NLS%%%%DATADIR%%/nls/es_ES.UTF-8/fluxbox.cat
132
%%NLS%%%%DATADIR%%/nls/et_EE.ISO-8859-15/fluxbox.cat
133
%%NLS%%%%DATADIR%%/nls/et_EE.UTF-8/fluxbox.cat
134
%%NLS%%%%DATADIR%%/nls/fi_FI.ISO-8859-1/fluxbox.cat
135
%%NLS%%%%DATADIR%%/nls/fi_FI.UTF-8/fluxbox.cat
136
%%NLS%%%%DATADIR%%/nls/fr_CH.ISO-8859-15/fluxbox.cat
137
%%NLS%%%%DATADIR%%/nls/fr_CH.UTF-8/fluxbox.cat
138
%%NLS%%%%DATADIR%%/nls/fr_FR.ISO-8859-15/fluxbox.cat
139
%%NLS%%%%DATADIR%%/nls/fr_FR.UTF-8/fluxbox.cat
140
%%NLS%%%%DATADIR%%/nls/he_IL.UTF-8/fluxbox.cat
141
%%NLS%%%%DATADIR%%/nls/it_IT.ISO-8859-1/fluxbox.cat
142
%%NLS%%%%DATADIR%%/nls/it_IT.UTF-8/fluxbox.cat
143
%%NLS%%%%DATADIR%%/nls/ja_JP.UTF-8/fluxbox.cat
144
%%NLS%%%%DATADIR%%/nls/ja_JP.eucJP/fluxbox.cat
145
%%NLS%%%%DATADIR%%/nls/ko_KR.EUC-KR/fluxbox.cat
146
%%NLS%%%%DATADIR%%/nls/ko_KR.UTF-8/fluxbox.cat
147
%%NLS%%%%DATADIR%%/nls/lv_LV.ISO-8859-13/fluxbox.cat
148
%%NLS%%%%DATADIR%%/nls/lv_LV.UTF-8/fluxbox.cat
149
%%NLS%%%%DATADIR%%/nls/mk_MK.UTF-8/fluxbox.cat
150
%%NLS%%%%DATADIR%%/nls/nb_NO.UTF-8/fluxbox.cat
151
%%NLS%%%%DATADIR%%/nls/nl_NL.ISO-8859-15/fluxbox.cat
152
%%NLS%%%%DATADIR%%/nls/nl_NL.UTF-8/fluxbox.cat
153
%%NLS%%%%DATADIR%%/nls/no_NO.ISO-8859-1/fluxbox.cat
154
%%NLS%%%%DATADIR%%/nls/no_NO.UTF-8/fluxbox.cat
155
%%NLS%%%%DATADIR%%/nls/pl_PL.ISO-8859-2/fluxbox.cat
156
%%NLS%%%%DATADIR%%/nls/pl_PL.UTF-8/fluxbox.cat
157
%%NLS%%%%DATADIR%%/nls/pt_BR.ISO-8859-1/fluxbox.cat
158
%%NLS%%%%DATADIR%%/nls/pt_BR.UTF-8/fluxbox.cat
159
%%NLS%%%%DATADIR%%/nls/pt_PT.ISO-8859-1/fluxbox.cat
160
%%NLS%%%%DATADIR%%/nls/pt_PT.UTF-8/fluxbox.cat
161
%%NLS%%%%DATADIR%%/nls/ru_RU.KOI8-R/fluxbox.cat
162
%%NLS%%%%DATADIR%%/nls/ru_RU.UTF-8/fluxbox.cat
163
%%NLS%%%%DATADIR%%/nls/sk_SK.ISO-8859-2/fluxbox.cat
164
%%NLS%%%%DATADIR%%/nls/sk_SK.UTF-8/fluxbox.cat
165
%%NLS%%%%DATADIR%%/nls/sl_SI.ISO-8859-2/fluxbox.cat
166
%%NLS%%%%DATADIR%%/nls/sl_SI.UTF-8/fluxbox.cat
167
%%NLS%%%%DATADIR%%/nls/sv_SE.ISO-8859-1/fluxbox.cat
168
%%NLS%%%%DATADIR%%/nls/sv_SE.UTF-8/fluxbox.cat
169
%%NLS%%%%DATADIR%%/nls/tr_TR.ISO-8859-9/fluxbox.cat
170
%%NLS%%%%DATADIR%%/nls/tr_TR.UTF-8/fluxbox.cat
171
%%NLS%%%%DATADIR%%/nls/uk_UA.KOI8-U/fluxbox.cat
172
%%NLS%%%%DATADIR%%/nls/uk_UA.UTF-8/fluxbox.cat
173
%%NLS%%%%DATADIR%%/nls/vi_VN.UTF-8/fluxbox.cat
174
%%NLS%%%%DATADIR%%/nls/zh_CN.BIG5/fluxbox.cat
175
%%NLS%%%%DATADIR%%/nls/zh_CN.GB18030/fluxbox.cat
176
%%NLS%%%%DATADIR%%/nls/zh_CN.GB2312/fluxbox.cat
177
%%NLS%%%%DATADIR%%/nls/zh_CN.GBK/fluxbox.cat
178
%%NLS%%%%DATADIR%%/nls/zh_CN.UTF-8/fluxbox.cat
179
%%NLS%%%%DATADIR%%/nls/zh_TW.UTF-8/fluxbox.cat
180
%%DATADIR%%/overlay
181
%%DATADIR%%/styles/Artwiz
182
%%DATADIR%%/styles/BlueFlux/pixmaps/button_close_active.xpm
183
%%DATADIR%%/styles/BlueFlux/pixmaps/button_close_pressed.xpm
184
%%DATADIR%%/styles/BlueFlux/pixmaps/button_close_unfocus.xpm
185
%%DATADIR%%/styles/BlueFlux/pixmaps/button_max_active.xpm
186
%%DATADIR%%/styles/BlueFlux/pixmaps/button_max_pressed.xpm
187
%%DATADIR%%/styles/BlueFlux/pixmaps/button_max_unfocus.xpm
188
%%DATADIR%%/styles/BlueFlux/pixmaps/button_min_active.xpm
189
%%DATADIR%%/styles/BlueFlux/pixmaps/button_min_pressed.xpm
190
%%DATADIR%%/styles/BlueFlux/pixmaps/button_min_unfocus.xpm
191
%%DATADIR%%/styles/BlueFlux/pixmaps/button_stick_active.xpm
192
%%DATADIR%%/styles/BlueFlux/pixmaps/button_stick_pressed.xpm
193
%%DATADIR%%/styles/BlueFlux/pixmaps/button_stick_unfocus.xpm
194
%%DATADIR%%/styles/BlueFlux/pixmaps/button_stuck.xpm
195
%%DATADIR%%/styles/BlueFlux/pixmaps/button_stuck_unfocus.xpm
196
%%DATADIR%%/styles/BlueFlux/pixmaps/button_toolbar.xpm
197
%%DATADIR%%/styles/BlueFlux/pixmaps/button_toolbar_pressed.xpm
198
%%DATADIR%%/styles/BlueFlux/pixmaps/menu_frame.xpm
199
%%DATADIR%%/styles/BlueFlux/pixmaps/title_bar.xpm
200
%%DATADIR%%/styles/BlueFlux/pixmaps/title_bar_unfocus.xpm
201
%%DATADIR%%/styles/BlueFlux/pixmaps/toolbar.xpm
202
%%DATADIR%%/styles/BlueFlux/pixmaps/toolbar_label.xpm
203
%%DATADIR%%/styles/BlueFlux/theme.cfg
204
%%DATADIR%%/styles/BlueNight
205
%%DATADIR%%/styles/Emerge/pixmaps/bullet.xpm
206
%%DATADIR%%/styles/Emerge/pixmaps/close-pressed.xpm
207
%%DATADIR%%/styles/Emerge/pixmaps/close-unfocus.xpm
208
%%DATADIR%%/styles/Emerge/pixmaps/close.xpm
209
%%DATADIR%%/styles/Emerge/pixmaps/icon-pressed.xpm
210
%%DATADIR%%/styles/Emerge/pixmaps/icon-unfocus.xpm
211
%%DATADIR%%/styles/Emerge/pixmaps/icon.xpm
212
%%DATADIR%%/styles/Emerge/pixmaps/max-pressed.xpm
213
%%DATADIR%%/styles/Emerge/pixmaps/max-unfocus.xpm
214
%%DATADIR%%/styles/Emerge/pixmaps/max.xpm
215
%%DATADIR%%/styles/Emerge/pixmaps/selected.xpm
216
%%DATADIR%%/styles/Emerge/pixmaps/stick-pressed.xpm
217
%%DATADIR%%/styles/Emerge/pixmaps/stick-unfocus.xpm
218
%%DATADIR%%/styles/Emerge/pixmaps/stick.xpm
219
%%DATADIR%%/styles/Emerge/pixmaps/stuck-pressed.xpm
220
%%DATADIR%%/styles/Emerge/pixmaps/stuck-unfocus.xpm
221
%%DATADIR%%/styles/Emerge/pixmaps/stuck.xpm
222
%%DATADIR%%/styles/Emerge/pixmaps/unselected.xpm
223
%%DATADIR%%/styles/Emerge/theme.cfg
224
%%DATADIR%%/styles/Flux
225
%%DATADIR%%/styles/LemonSpace
226
%%DATADIR%%/styles/Makro
227
%%DATADIR%%/styles/MerleyKay
228
%%DATADIR%%/styles/Meta
229
%%DATADIR%%/styles/Nyz
230
%%DATADIR%%/styles/Operation
231
%%DATADIR%%/styles/Outcomes
232
%%DATADIR%%/styles/Results
233
%%DATADIR%%/styles/Shade
234
%%DATADIR%%/styles/Twice
235
%%DATADIR%%/styles/arch/pixmaps/bullet.xpm
236
%%DATADIR%%/styles/arch/pixmaps/closefcs.xpm
237
%%DATADIR%%/styles/arch/pixmaps/closepr.xpm
238
%%DATADIR%%/styles/arch/pixmaps/closeufcs.xpm
239
%%DATADIR%%/styles/arch/pixmaps/frame.xpm
240
%%DATADIR%%/styles/arch/pixmaps/gripfcs.xpm
241
%%DATADIR%%/styles/arch/pixmaps/maxfcs.xpm
242
%%DATADIR%%/styles/arch/pixmaps/maxpr.xpm
243
%%DATADIR%%/styles/arch/pixmaps/maxufcs.xpm
244
%%DATADIR%%/styles/arch/pixmaps/menuiconfcs.xpm
245
%%DATADIR%%/styles/arch/pixmaps/menuiconpr.xpm
246
%%DATADIR%%/styles/arch/pixmaps/menuiconufcs.xpm
247
%%DATADIR%%/styles/arch/pixmaps/minfcs.xpm
248
%%DATADIR%%/styles/arch/pixmaps/minpr.xpm
249
%%DATADIR%%/styles/arch/pixmaps/minufcs.xpm
250
%%DATADIR%%/styles/arch/pixmaps/selected.xpm
251
%%DATADIR%%/styles/arch/pixmaps/shadefcs.xpm
252
%%DATADIR%%/styles/arch/pixmaps/shadepr.xpm
253
%%DATADIR%%/styles/arch/pixmaps/shadeufcs.xpm
254
%%DATADIR%%/styles/arch/pixmaps/stickfcs.xpm
255
%%DATADIR%%/styles/arch/pixmaps/stickpr.xpm
256
%%DATADIR%%/styles/arch/pixmaps/stickufcs.xpm
257
%%DATADIR%%/styles/arch/pixmaps/stuckfcs.xpm
258
%%DATADIR%%/styles/arch/pixmaps/stuckufcs.xpm
259
%%DATADIR%%/styles/arch/pixmaps/tbarfcs.xpm
260
%%DATADIR%%/styles/arch/pixmaps/tbarufcs.xpm
261
%%DATADIR%%/styles/arch/pixmaps/unselected.xpm
262
%%DATADIR%%/styles/arch/pixmaps/unshadefcs.xpm
263
%%DATADIR%%/styles/arch/pixmaps/unshadepr.xpm
264
%%DATADIR%%/styles/arch/pixmaps/unshadeufcs.xpm
265
%%DATADIR%%/styles/arch/theme.cfg
266
%%DATADIR%%/styles/bloe/pixmaps/bullet.xpm
267
%%DATADIR%%/styles/bloe/pixmaps/closefcs.xpm
268
%%DATADIR%%/styles/bloe/pixmaps/closepr.xpm
269
%%DATADIR%%/styles/bloe/pixmaps/closeufcs.xpm
270
%%DATADIR%%/styles/bloe/pixmaps/frame.xpm
271
%%DATADIR%%/styles/bloe/pixmaps/maxfcs.xpm
272
%%DATADIR%%/styles/bloe/pixmaps/maxpr.xpm
273
%%DATADIR%%/styles/bloe/pixmaps/maxufcs.xpm
274
%%DATADIR%%/styles/bloe/pixmaps/menuiconfcs.xpm
275
%%DATADIR%%/styles/bloe/pixmaps/menuiconpr.xpm
276
%%DATADIR%%/styles/bloe/pixmaps/menuiconufcs.xpm
277
%%DATADIR%%/styles/bloe/pixmaps/minfcs.xpm
278
%%DATADIR%%/styles/bloe/pixmaps/minpr.xpm
279
%%DATADIR%%/styles/bloe/pixmaps/minufcs.xpm
280
%%DATADIR%%/styles/bloe/pixmaps/selected.xpm
281
%%DATADIR%%/styles/bloe/pixmaps/shadefcs.xpm
282
%%DATADIR%%/styles/bloe/pixmaps/shadepr.xpm
283
%%DATADIR%%/styles/bloe/pixmaps/shadeufcs.xpm
284
%%DATADIR%%/styles/bloe/pixmaps/stickfcs.xpm
285
%%DATADIR%%/styles/bloe/pixmaps/stickpr.xpm
286
%%DATADIR%%/styles/bloe/pixmaps/stickufcs.xpm
287
%%DATADIR%%/styles/bloe/pixmaps/stuckfcs.xpm
288
%%DATADIR%%/styles/bloe/pixmaps/stuckufcs.xpm
289
%%DATADIR%%/styles/bloe/pixmaps/tbarfcs.xpm
290
%%DATADIR%%/styles/bloe/pixmaps/tbarufcs.xpm
291
%%DATADIR%%/styles/bloe/pixmaps/unselected.xpm
292
%%DATADIR%%/styles/bloe/pixmaps/unshadefcs.xpm
293
%%DATADIR%%/styles/bloe/pixmaps/unshadepr.xpm
294
%%DATADIR%%/styles/bloe/pixmaps/unshadeufcs.xpm
295
%%DATADIR%%/styles/bloe/pixmaps/windowlabelfcs.xpm
296
%%DATADIR%%/styles/bloe/pixmaps/windowlabelufcs.xpm
297
%%DATADIR%%/styles/bloe/theme.cfg
298
%%DATADIR%%/styles/bora_black/theme.cfg
299
%%DATADIR%%/styles/bora_blue/theme.cfg
300
%%DATADIR%%/styles/bora_green/theme.cfg
301
%%DATADIR%%/styles/carp/theme.cfg
302
%%DATADIR%%/styles/green_tea/theme.cfg
303
%%DATADIR%%/styles/ostrich/theme.cfg
304
%%DATADIR%%/styles/qnx-photon
305
%%DATADIR%%/styles/zimek_bisque/theme.cfg
306
%%DATADIR%%/styles/zimek_darkblue/theme.cfg
307
%%DATADIR%%/styles/zimek_green/theme.cfg
308
%%DATADIR%%/windowmenu
309
man/man1/fbrun.1.gz
9
man/man1/fbrun.1.gz
310
man/man1/fbsetbg.1.gz
10
man/man1/fbsetbg.1.gz
311
man/man1/fbsetroot.1.gz
11
man/man1/fbsetroot.1.gz

Return to bug 211814