diff options
author | jmmv <jmmv@pkgsrc.org> | 2005-12-23 13:41:41 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2005-12-23 13:41:41 +0000 |
commit | 40ff76b80c24ab0358d3fd7814d6a406be75735e (patch) | |
tree | bbb69db416d46f71060e834dfdeec36172f115be /wm | |
parent | 7ef15ab84b4530e71b17e7b34eaed04bfc314966 (diff) | |
download | pkgsrc-40ff76b80c24ab0358d3fd7814d6a406be75735e.tar.gz |
Fix themes to use fbsetroot rather than bsetroot, which is not provided
by fluxbox and is not compatible with blackbox's bsetroot any more. This
was caused by an incomplete bsetroot->fbsetroot rename in fluxbox's code
(not our fault); will report to authors in a minute. Bump PKGREVISION to 3.
Diffstat (limited to 'wm')
-rw-r--r-- | wm/fluxbox/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/wm/fluxbox/Makefile b/wm/fluxbox/Makefile index 6e4167ac372..1dcd4254b38 100644 --- a/wm/fluxbox/Makefile +++ b/wm/fluxbox/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.32 2005/12/23 13:20:52 jmmv Exp $ +# $NetBSD: Makefile,v 1.33 2005/12/23 13:41:41 jmmv Exp $ # DISTNAME= fluxbox-0.9.14 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= wm x11 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fluxbox/} EXTRACT_SUFX= .tar.bz2 @@ -26,6 +26,12 @@ CONFIGURE_ARGS+= --enable-xinerama .include "options.mk" +SUBST_CLASSES+= cmds +SUBST_STAGE.cmds= post-build +SUBST_MESSAGE.cmds= "Fixing command names in data files." +SUBST_SED.cmds= -e 's|bsetroot|fbsetroot|g' +SUBST_FILES.cmds= data/*/* + .include "../../converters/libiconv/buildlink3.mk" .include "../../mk/x11.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |