1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-20 08:27:15 +00:00

- Bump PORTREVISION

- Remove DISTFILES variable
- Add LICENSE_FILE for MIT license
- Add proxy dependencies to LIB_DEPENDS and USE_XORG
- Remove WANT_GNOME and GNOME option [1]
- Add PORTDATA variable
- Use new options helpers and remove bsd.port.options.mk include
- Fix patch for disabled NLS option
- Simplify docs installation
- Change sed patch for util/fbsetbg and regenerate files/patch-util_fbsetbg
- Adapt pkg-plist
- adjust pkg-descr while here

[1] http://git.fluxbox.org/fluxbox.git/commit/?id=a2558a2b14054058342d9946deefd7c72dc2d887

PR:		211814
Submitted by:	lightside@gmx.com
This commit is contained in:
Jason Helfman 2016-09-08 20:07:19 +00:00
parent 0a8496c6ac
commit c9edb20735
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=421576
4 changed files with 48 additions and 412 deletions

View File

@ -3,6 +3,7 @@
PORTNAME= fluxbox
PORTVERSION= 1.3.7
PORTREVISION= 1
CATEGORIES= x11-wm
MASTER_SITES= SF
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
@ -12,22 +13,25 @@ MAINTAINER= jgh@FreeBSD.org
COMMENT= Small and fast window manager based on BlackBox
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/COPYING
RUN_DEPENDS= xmessage:x11/xmessage
LIB_DEPENDS= libfribidi.so:converters/fribidi
LIB_DEPENDS= libfribidi.so:converters/fribidi \
libfreetype.so:print/freetype2 \
libfontconfig.so:x11-fonts/fontconfig
USE_XORG= xextproto xft xpm xrandr
USE_XORG= x11 xext xextproto xft xpm xrandr
USES= gmake pkgconfig
WANT_GNOME= yes
GNU_CONFIGURE= yes
PORTDOCS= AUTHORS ChangeLog NEWS README TODO
PORTDATA= *
PORTDOCS= *
DOCSVERSION= 20060629
OPTIONS_DEFINE= DOCS DOCHTML PDFDOCS DEBUG GNOME IMLIB2 XINERAMA \
OPTIONS_DEFINE= DOCS DOCHTML PDFDOCS DEBUG IMLIB2 XINERAMA \
XRENDER NLS SLIT SYSTRAY REMEMBER TOOLBAR
OPTIONS_DEFAULT= XRENDER SLIT SYSTRAY REMEMBER TOOLBAR
OPTIONS_DEFAULT= XRENDER SLIT SYSTRAY REMEMBER TOOLBAR XINERAMA
DOCHTML_DESC= Install html documentation
PDFDOCS_DESC= Build and install PDF documentation
REMEMBER_DESC= Enable remember feature
@ -36,121 +40,53 @@ SYSTRAY_DESC= Enable systray feature
TOOLBAR_DESC= Enable toolbar feature
XRENDER_DESC= Enable xrender support
.include <bsd.port.options.mk>
DEBUG_CONFIGURE_ON= --enable-debug
IMLIB2_CONFIGURE_ENABLE= imlib2
IMLIB2_LIB_DEPENDS= libImlib2.so:graphics/imlib2
NLS_CONFIGURE_ENABLE= nls
NLS_USES= iconv
NLS_VARS= CPPFLAGS+="-I${LOCALBASE}/include" LIBS+="-L${LOCALBASE}/lib ${ICONV_LIB}"
NLS_VARS_OFF= CPPFLAGS+="-I${LOCALBASE}/include" LIBS+="-L${LOCALBASE}/lib"
REMEMBER_CONFIGURE_ENABLE= remember
SLIT_CONFIGURE_ENABLE= slit
SYSTRAY_CONFIGURE_ENABLE= systray
TOOLBAR_CONFIGURE_ENABLE= toolbar
XINERAMA_CONFIGURE_ENABLE= xinerama
XINERAMA_USE= XORG=xinerama
XRENDER_USE= XORG=xrender
XRENDER_CONFIGURE_ENABLE= xrender
.if ${PORT_OPTIONS:MDEBUG}
CONFIGURE_ARGS+= --enable-debug
.endif
.if ${PORT_OPTIONS:MDOCHTML}
# http://fluxbox.org/docbook/en/tarballs/
MASTER_SITES+= LOCAL/mezz:html \
DOCHTML_MASTER_SITES= LOCAL/mezz:html \
http://people.freebsd.org/~mezz/distfiles/:html
DISTFILES+= fb-doc-mfhtml-${DOCSVERSION}.tgz:html
EXTRACT_ONLY+= fb-doc-mfhtml-${DOCSVERSION}.tgz
PLIST_SUB+= DOCHTML=""
.else
PLIST_SUB+= DOCHTML="@comment "
.endif
.if ${PORT_OPTIONS:MPDFDOCS}
DOCHTML_DISTFILES= fb-doc-mfhtml-${DOCSVERSION}.tgz:html
DOCHTML_EXTRACT_ONLY= fb-doc-mfhtml-${DOCSVERSION}.tgz
# http://fluxbox.org/docbook/en/pdf/
MASTER_SITES+= LOCAL/mezz:pdf \
PDFDOCS_MASTER_SITES= LOCAL/mezz:pdf \
http://people.freebsd.org/~mezz/distfiles/:pdf
DISTFILES+= fluxbook-${DOCSVERSION}.pdf:pdf
PLIST_SUB+= DOCPDF=""
.else
PLIST_SUB+= DOCPDF="@comment "
.endif
.if ${PORT_OPTIONS:MIMLIB2}
LIB_DEPENDS+= libImlib2.so:graphics/imlib2
CONFIGURE_ARGS+= --enable-imlib2
.else
CONFIGURE_ARGS+= --disable-imlib2
.endif
.if ${PORT_OPTIONS:MXINERAMA} || defined(PACKAGE_BUILDING)
USE_XORG+= xinerama
CONFIGURE_ARGS+= --enable-xinerama
.endif
.if ${PORT_OPTIONS:MNLS}
USES+= iconv
CPPFLAGS+= -I${LOCALBASE}/include
LIBS+= -L${LOCALBASE}/lib ${ICONV_LIB}
CONFIGURE_ARGS+= --enable-nls
PLIST_SUB+= NLS=""
.else
CPPFLAGS+= -I${LOCALBASE}/include
LIBS+= -L${LOCALBASE}/lib
CONFIGURE_ARGS+= --disable-nls
PLIST_SUB+= NLS="@comment "
.endif
.if ${PORT_OPTIONS:MREMEMBER}
CONFIGURE_ARGS+= --enable-remember
.else
CONFIGURE_ARGS+= --disable-remember
.endif
.if ${PORT_OPTIONS:MSLIT}
CONFIGURE_ARGS+= --enable-slit
.else
CONFIGURE_ARGS+= --disable-slit
.endif
.if ${PORT_OPTIONS:MSYSTRAY}
CONFIGURE_ARGS+= --enable-systray
.else
CONFIGURE_ARGS+= --disable-systray
.endif
.if ${PORT_OPTIONS:MTOOLBAR}
CONFIGURE_ARGS+= --enable-toolbar
.else
CONFIGURE_ARGS+= --disable-toolbar
.endif
.if ${PORT_OPTIONS:MXRENDER}
USE_XORG+= xrender
CONFIGURE_ARGS+= --enable-xrender
.else
CONFIGURE_ARGS+= --disable-xrender
.endif
.include <bsd.port.pre.mk>
.if ${HAVE_GNOME:Mlibgnome}!="" || defined(PACKAGE_BUILDING)
CONFIGURE_ARGS+= --enable-gnome
.else
CONFIGURE_ARGS+= --disable-gnome
.endif
PDFDOCS_DISTFILES= fluxbook-${DOCSVERSION}.pdf:pdf
post-patch:
@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
${WRKSRC}/util/fluxbox-generate_menu.in ${WRKSRC}/util/fbsetbg
.if ! ${PORT_OPTIONS:MNLS}
@${REINPLACE_CMD} -e 's|HAVE_ICONV=yes|HAVE_ICONV=no|g' \
post-patch-NLS-off:
@${REINPLACE_CMD} -e 's|iconv_works=yes|iconv_works=no|' \
${WRKSRC}/configure
.endif
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
post-install-DOCS-on:
(cd ${WRKSRC} && ${COPYTREE_SHARE} "AUTHORS ChangeLog NEWS README TODO" \
${STAGEDIR}${DOCSDIR})
.if ${PORT_OPTIONS:MPDFDOCS}
post-install-PDFDOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}/pdf
${INSTALL_DATA} ${DISTDIR}/fluxbook-${DOCSVERSION}.pdf \
${STAGEDIR}${DOCSDIR}/pdf/
.endif
.if ${PORT_OPTIONS:MDOCHTML}
post-install-DOCHTML-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}/html
. for h in *.css *.html
(cd ${WRKDIR}/html && ${INSTALL_DATA} ${h} ${STAGEDIR}${DOCSDIR}/html)
. endfor
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View File

@ -203,7 +203,7 @@
append_submenu "${BROWSERMENU}"
normal_find chrome chromium firefox google-chrome mozilla-firefox MozillaFirefox galeon mozilla seamonkey dillo netscape vncviewer
find_it links append "[exec] (links-graphic) {links -driver x ${HOMEPAGE}}"
+ find_it linux-opera append "[exec] (linux-opera) {env QT_XFT=true opera}"
+ find_it linux-opera append "[exec] (linux-opera) {env QT_XFT=true linux-opera}"
find_it opera append "[exec] (opera) {env QT_XFT=true opera}"
find_it konqueror append "[exec] (konqueror) {kfmclient openProfile webbrowsing}"
find_it links append "[exec] (links) {${DEFAULT_TERM} -e links ${HOMEPAGE}}"

View File

@ -1,13 +1,13 @@
Fluxbox is a window manager based on BlackBox with some new features:
o Transparent menus
o Pixmap themes
o Window snapping
o Integrated bbkeys
o Iconbar
o Configurable titlebar (slit)
o Windows tabs
o Wheel scroll changes workspace
o KDE and partial Gnome support
- Transparent menus
- Pixmap themes
- Window snapping
- Integrated bbkeys
- Iconbar
- Configurable titlebar (slit)
- Windows tabs
- Wheel scroll changes workspace
- KDE and partial Gnome support
WWW: http://fluxbox.org/

View File

@ -6,306 +6,6 @@ bin/fluxbox-generate_menu
bin/fluxbox-remote
bin/fluxbox-update_configs
bin/startfluxbox
%%DOCHTML%%%%DOCSDIR%%/html/app-artwiz.html
%%DOCHTML%%%%DOCSDIR%%/html/app-debugging.html
%%DOCHTML%%%%DOCSDIR%%/html/app-setup.html
%%DOCHTML%%%%DOCSDIR%%/html/app-themeref.html
%%DOCHTML%%%%DOCSDIR%%/html/book1.html
%%DOCHTML%%%%DOCSDIR%%/html/c151.html
%%DOCHTML%%%%DOCSDIR%%/html/c152.html
%%DOCHTML%%%%DOCSDIR%%/html/c153.html
%%DOCHTML%%%%DOCSDIR%%/html/c155.html
%%DOCHTML%%%%DOCSDIR%%/html/c157.html
%%DOCHTML%%%%DOCSDIR%%/html/c158.html
%%DOCHTML%%%%DOCSDIR%%/html/c160.html
%%DOCHTML%%%%DOCSDIR%%/html/c161.html
%%DOCHTML%%%%DOCSDIR%%/html/c28.html
%%DOCHTML%%%%DOCSDIR%%/html/c288.html
%%DOCHTML%%%%DOCSDIR%%/html/c289.html
%%DOCHTML%%%%DOCSDIR%%/html/c290.html
%%DOCHTML%%%%DOCSDIR%%/html/c292.html
%%DOCHTML%%%%DOCSDIR%%/html/c294.html
%%DOCHTML%%%%DOCSDIR%%/html/c295.html
%%DOCHTML%%%%DOCSDIR%%/html/c297.html
%%DOCHTML%%%%DOCSDIR%%/html/c298.html
%%DOCHTML%%%%DOCSDIR%%/html/c731.html
%%DOCHTML%%%%DOCSDIR%%/html/c732.html
%%DOCHTML%%%%DOCSDIR%%/html/c733.html
%%DOCHTML%%%%DOCSDIR%%/html/c735.html
%%DOCHTML%%%%DOCSDIR%%/html/c737.html
%%DOCHTML%%%%DOCSDIR%%/html/c738.html
%%DOCHTML%%%%DOCSDIR%%/html/c740.html
%%DOCHTML%%%%DOCSDIR%%/html/c741.html
%%DOCHTML%%%%DOCSDIR%%/html/c96.html
%%DOCHTML%%%%DOCSDIR%%/html/c98.html
%%DOCHTML%%%%DOCSDIR%%/html/chap-bg.html
%%DOCHTML%%%%DOCSDIR%%/html/chap-slit.html
%%DOCHTML%%%%DOCSDIR%%/html/chap-tabs.html
%%DOCHTML%%%%DOCSDIR%%/html/chap-themes.html
%%DOCHTML%%%%DOCSDIR%%/html/chap-toolbar.html
%%DOCHTML%%%%DOCSDIR%%/html/docbook.css
%%DOCHTML%%%%DOCSDIR%%/html/faq.html
%%DOCHTML%%%%DOCSDIR%%/html/index.html
%%DOCHTML%%%%DOCSDIR%%/html/sect-fbgm.html
%%DOCHTML%%%%DOCSDIR%%/html/sect-fluxspace.html
%%DOCHTML%%%%DOCSDIR%%/html/sect-pager.html
%%DOCHTML%%%%DOCSDIR%%/html/sect-wmctrl.html
%%DOCHTML%%%%DOCSDIR%%/html/x148.html
%%DOCHTML%%%%DOCSDIR%%/html/x159.html
%%DOCHTML%%%%DOCSDIR%%/html/x160.html
%%DOCHTML%%%%DOCSDIR%%/html/x161.html
%%DOCHTML%%%%DOCSDIR%%/html/x163.html
%%DOCHTML%%%%DOCSDIR%%/html/x165.html
%%DOCHTML%%%%DOCSDIR%%/html/x166.html
%%DOCHTML%%%%DOCSDIR%%/html/x168.html
%%DOCHTML%%%%DOCSDIR%%/html/x169.html
%%DOCHTML%%%%DOCSDIR%%/html/x232.html
%%DOCHTML%%%%DOCSDIR%%/html/x233.html
%%DOCHTML%%%%DOCSDIR%%/html/x234.html
%%DOCHTML%%%%DOCSDIR%%/html/x236.html
%%DOCHTML%%%%DOCSDIR%%/html/x238.html
%%DOCHTML%%%%DOCSDIR%%/html/x239.html
%%DOCHTML%%%%DOCSDIR%%/html/x241.html
%%DOCHTML%%%%DOCSDIR%%/html/x242.html
%%DOCHTML%%%%DOCSDIR%%/html/x320.html
%%DOCHTML%%%%DOCSDIR%%/html/x321.html
%%DOCHTML%%%%DOCSDIR%%/html/x322.html
%%DOCHTML%%%%DOCSDIR%%/html/x324.html
%%DOCHTML%%%%DOCSDIR%%/html/x326.html
%%DOCHTML%%%%DOCSDIR%%/html/x327.html
%%DOCHTML%%%%DOCSDIR%%/html/x329.html
%%DOCHTML%%%%DOCSDIR%%/html/x330.html
%%DOCHTML%%%%DOCSDIR%%/html/x351.html
%%DOCHTML%%%%DOCSDIR%%/html/x352.html
%%DOCHTML%%%%DOCSDIR%%/html/x353.html
%%DOCHTML%%%%DOCSDIR%%/html/x355.html
%%DOCHTML%%%%DOCSDIR%%/html/x357.html
%%DOCHTML%%%%DOCSDIR%%/html/x358.html
%%DOCHTML%%%%DOCSDIR%%/html/x360.html
%%DOCHTML%%%%DOCSDIR%%/html/x361.html
%%DOCHTML%%%%DOCSDIR%%/html/x47.html
%%DOCHTML%%%%DOCSDIR%%/html/x748.html
%%DOCHTML%%%%DOCSDIR%%/html/x749.html
%%DOCHTML%%%%DOCSDIR%%/html/x750.html
%%DOCHTML%%%%DOCSDIR%%/html/x752.html
%%DOCHTML%%%%DOCSDIR%%/html/x754.html
%%DOCHTML%%%%DOCSDIR%%/html/x755.html
%%DOCHTML%%%%DOCSDIR%%/html/x757.html
%%DOCHTML%%%%DOCSDIR%%/html/x758.html
%%DOCHTML%%%%DOCSDIR%%/html/x827.html
%%DOCHTML%%%%DOCSDIR%%/html/x828.html
%%DOCHTML%%%%DOCSDIR%%/html/x829.html
%%DOCHTML%%%%DOCSDIR%%/html/x831.html
%%DOCHTML%%%%DOCSDIR%%/html/x833.html
%%DOCHTML%%%%DOCSDIR%%/html/x834.html
%%DOCHTML%%%%DOCSDIR%%/html/x836.html
%%DOCHTML%%%%DOCSDIR%%/html/x837.html
%%DOCPDF%%%%DOCSDIR%%/pdf/fluxbook-20060629.pdf
%%DATADIR%%/apps
%%DATADIR%%/init
%%DATADIR%%/keys
%%DATADIR%%/menu
%%NLS%%%%DATADIR%%/nls/C/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/be_BY.CP1251/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/be_BY.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/bg_BG.CP1251/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/bg_BG.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/cs_CZ.ISO-8859-2/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/cs_CZ.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/da_DK.ISO-8859-1/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/da_DK.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/de_AT.ISO-8859-15/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/de_AT.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/de_CH.ISO-8859-15/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/de_CH.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/de_DE.ISO-8859-15/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/de_DE.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/el_GR.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/en_GB.ISO-8859-1/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/en_GB.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/en_US.ISO-8859-1/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/en_US.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/es_AR.ISO-8859-15/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/es_AR.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/es_ES.ISO-8859-15/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/es_ES.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/et_EE.ISO-8859-15/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/et_EE.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/fi_FI.ISO-8859-1/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/fi_FI.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/fr_CH.ISO-8859-15/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/fr_CH.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/fr_FR.ISO-8859-15/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/fr_FR.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/he_IL.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/it_IT.ISO-8859-1/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/it_IT.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/ja_JP.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/ja_JP.eucJP/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/ko_KR.EUC-KR/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/ko_KR.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/lv_LV.ISO-8859-13/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/lv_LV.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/mk_MK.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/nb_NO.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/nl_NL.ISO-8859-15/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/nl_NL.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/no_NO.ISO-8859-1/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/no_NO.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/pl_PL.ISO-8859-2/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/pl_PL.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/pt_BR.ISO-8859-1/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/pt_BR.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/pt_PT.ISO-8859-1/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/pt_PT.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/ru_RU.KOI8-R/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/ru_RU.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/sk_SK.ISO-8859-2/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/sk_SK.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/sl_SI.ISO-8859-2/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/sl_SI.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/sv_SE.ISO-8859-1/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/sv_SE.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/tr_TR.ISO-8859-9/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/tr_TR.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/uk_UA.KOI8-U/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/uk_UA.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/vi_VN.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/zh_CN.BIG5/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/zh_CN.GB18030/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/zh_CN.GB2312/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/zh_CN.GBK/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/zh_CN.UTF-8/fluxbox.cat
%%NLS%%%%DATADIR%%/nls/zh_TW.UTF-8/fluxbox.cat
%%DATADIR%%/overlay
%%DATADIR%%/styles/Artwiz
%%DATADIR%%/styles/BlueFlux/pixmaps/button_close_active.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/button_close_pressed.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/button_close_unfocus.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/button_max_active.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/button_max_pressed.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/button_max_unfocus.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/button_min_active.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/button_min_pressed.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/button_min_unfocus.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/button_stick_active.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/button_stick_pressed.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/button_stick_unfocus.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/button_stuck.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/button_stuck_unfocus.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/button_toolbar.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/button_toolbar_pressed.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/menu_frame.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/title_bar.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/title_bar_unfocus.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/toolbar.xpm
%%DATADIR%%/styles/BlueFlux/pixmaps/toolbar_label.xpm
%%DATADIR%%/styles/BlueFlux/theme.cfg
%%DATADIR%%/styles/BlueNight
%%DATADIR%%/styles/Emerge/pixmaps/bullet.xpm
%%DATADIR%%/styles/Emerge/pixmaps/close-pressed.xpm
%%DATADIR%%/styles/Emerge/pixmaps/close-unfocus.xpm
%%DATADIR%%/styles/Emerge/pixmaps/close.xpm
%%DATADIR%%/styles/Emerge/pixmaps/icon-pressed.xpm
%%DATADIR%%/styles/Emerge/pixmaps/icon-unfocus.xpm
%%DATADIR%%/styles/Emerge/pixmaps/icon.xpm
%%DATADIR%%/styles/Emerge/pixmaps/max-pressed.xpm
%%DATADIR%%/styles/Emerge/pixmaps/max-unfocus.xpm
%%DATADIR%%/styles/Emerge/pixmaps/max.xpm
%%DATADIR%%/styles/Emerge/pixmaps/selected.xpm
%%DATADIR%%/styles/Emerge/pixmaps/stick-pressed.xpm
%%DATADIR%%/styles/Emerge/pixmaps/stick-unfocus.xpm
%%DATADIR%%/styles/Emerge/pixmaps/stick.xpm
%%DATADIR%%/styles/Emerge/pixmaps/stuck-pressed.xpm
%%DATADIR%%/styles/Emerge/pixmaps/stuck-unfocus.xpm
%%DATADIR%%/styles/Emerge/pixmaps/stuck.xpm
%%DATADIR%%/styles/Emerge/pixmaps/unselected.xpm
%%DATADIR%%/styles/Emerge/theme.cfg
%%DATADIR%%/styles/Flux
%%DATADIR%%/styles/LemonSpace
%%DATADIR%%/styles/Makro
%%DATADIR%%/styles/MerleyKay
%%DATADIR%%/styles/Meta
%%DATADIR%%/styles/Nyz
%%DATADIR%%/styles/Operation
%%DATADIR%%/styles/Outcomes
%%DATADIR%%/styles/Results
%%DATADIR%%/styles/Shade
%%DATADIR%%/styles/Twice
%%DATADIR%%/styles/arch/pixmaps/bullet.xpm
%%DATADIR%%/styles/arch/pixmaps/closefcs.xpm
%%DATADIR%%/styles/arch/pixmaps/closepr.xpm
%%DATADIR%%/styles/arch/pixmaps/closeufcs.xpm
%%DATADIR%%/styles/arch/pixmaps/frame.xpm
%%DATADIR%%/styles/arch/pixmaps/gripfcs.xpm
%%DATADIR%%/styles/arch/pixmaps/maxfcs.xpm
%%DATADIR%%/styles/arch/pixmaps/maxpr.xpm
%%DATADIR%%/styles/arch/pixmaps/maxufcs.xpm
%%DATADIR%%/styles/arch/pixmaps/menuiconfcs.xpm
%%DATADIR%%/styles/arch/pixmaps/menuiconpr.xpm
%%DATADIR%%/styles/arch/pixmaps/menuiconufcs.xpm
%%DATADIR%%/styles/arch/pixmaps/minfcs.xpm
%%DATADIR%%/styles/arch/pixmaps/minpr.xpm
%%DATADIR%%/styles/arch/pixmaps/minufcs.xpm
%%DATADIR%%/styles/arch/pixmaps/selected.xpm
%%DATADIR%%/styles/arch/pixmaps/shadefcs.xpm
%%DATADIR%%/styles/arch/pixmaps/shadepr.xpm
%%DATADIR%%/styles/arch/pixmaps/shadeufcs.xpm
%%DATADIR%%/styles/arch/pixmaps/stickfcs.xpm
%%DATADIR%%/styles/arch/pixmaps/stickpr.xpm
%%DATADIR%%/styles/arch/pixmaps/stickufcs.xpm
%%DATADIR%%/styles/arch/pixmaps/stuckfcs.xpm
%%DATADIR%%/styles/arch/pixmaps/stuckufcs.xpm
%%DATADIR%%/styles/arch/pixmaps/tbarfcs.xpm
%%DATADIR%%/styles/arch/pixmaps/tbarufcs.xpm
%%DATADIR%%/styles/arch/pixmaps/unselected.xpm
%%DATADIR%%/styles/arch/pixmaps/unshadefcs.xpm
%%DATADIR%%/styles/arch/pixmaps/unshadepr.xpm
%%DATADIR%%/styles/arch/pixmaps/unshadeufcs.xpm
%%DATADIR%%/styles/arch/theme.cfg
%%DATADIR%%/styles/bloe/pixmaps/bullet.xpm
%%DATADIR%%/styles/bloe/pixmaps/closefcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/closepr.xpm
%%DATADIR%%/styles/bloe/pixmaps/closeufcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/frame.xpm
%%DATADIR%%/styles/bloe/pixmaps/maxfcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/maxpr.xpm
%%DATADIR%%/styles/bloe/pixmaps/maxufcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/menuiconfcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/menuiconpr.xpm
%%DATADIR%%/styles/bloe/pixmaps/menuiconufcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/minfcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/minpr.xpm
%%DATADIR%%/styles/bloe/pixmaps/minufcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/selected.xpm
%%DATADIR%%/styles/bloe/pixmaps/shadefcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/shadepr.xpm
%%DATADIR%%/styles/bloe/pixmaps/shadeufcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/stickfcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/stickpr.xpm
%%DATADIR%%/styles/bloe/pixmaps/stickufcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/stuckfcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/stuckufcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/tbarfcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/tbarufcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/unselected.xpm
%%DATADIR%%/styles/bloe/pixmaps/unshadefcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/unshadepr.xpm
%%DATADIR%%/styles/bloe/pixmaps/unshadeufcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/windowlabelfcs.xpm
%%DATADIR%%/styles/bloe/pixmaps/windowlabelufcs.xpm
%%DATADIR%%/styles/bloe/theme.cfg
%%DATADIR%%/styles/bora_black/theme.cfg
%%DATADIR%%/styles/bora_blue/theme.cfg
%%DATADIR%%/styles/bora_green/theme.cfg
%%DATADIR%%/styles/carp/theme.cfg
%%DATADIR%%/styles/green_tea/theme.cfg
%%DATADIR%%/styles/ostrich/theme.cfg
%%DATADIR%%/styles/qnx-photon
%%DATADIR%%/styles/zimek_bisque/theme.cfg
%%DATADIR%%/styles/zimek_darkblue/theme.cfg
%%DATADIR%%/styles/zimek_green/theme.cfg
%%DATADIR%%/windowmenu
man/man1/fbrun.1.gz
man/man1/fbsetbg.1.gz
man/man1/fbsetroot.1.gz