use patch from distsite.

--
From: MAINTAINER
This commit is contained in:
brad 2002-12-06 00:28:41 +00:00
parent bdb4b28b93
commit 666d76bbea
5 changed files with 8 additions and 60 deletions

View File

@ -1,15 +1,15 @@
# $OpenBSD: Makefile,v 1.17 2002/11/27 17:39:12 brad Exp $
# $OpenBSD: Makefile,v 1.18 2002/12/06 00:28:41 brad Exp $
COMMENT= "blackbox-derived window manager with Gnome and KDE support"
COMMENT= "window manager based on the original Blackbox code"
VERSION= 0.1.13
DISTNAME= fluxbox-${VERSION}
PKGNAME= ${DISTNAME}p1
PKGNAME= ${DISTNAME}p2
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fluxbox/}
MASTER_SITES0= http://fluxbox.org/download/patches/
PATCHFILES= # fluxbox-${VERSION}-bugfix2.patch:0
MASTER_SITES0= http://www.fluxbox.org/download/patches/
PATCHFILES= fluxbox-${VERSION}-bugfix1.patch:0
PATCH_DIST_STRIP= -p1
HOMEPAGE= http://fluxbox.org/

View File

@ -1,3 +1,6 @@
MD5 (fluxbox-0.1.13-bugfix1.patch) = d7b8b0472381ea9bf40229d0b137a856
MD5 (fluxbox-0.1.13.tar.gz) = 1b6eec68ae437f3f7084cc19ed7e1083
RMD160 (fluxbox-0.1.13-bugfix1.patch) = 39f3f9a8302b68ee8bb44c2c6106867a02de4178
RMD160 (fluxbox-0.1.13.tar.gz) = f329af0cac7fa45d9d346fd222c85b7e48e53d2b
SHA1 (fluxbox-0.1.13-bugfix1.patch) = 61f8b4a0776f900f329abd95b5045387c952f17e
SHA1 (fluxbox-0.1.13.tar.gz) = 42aff39fb32e4012947a98e9266d0d168c0b108a

View File

@ -1,14 +0,0 @@
This patch fixes font issues with OpenOffice
--- src/Ewmh.cc.orig Thu Oct 17 01:31:55 2002
+++ src/Ewmh.cc Sun Nov 24 07:21:51 2002
@@ -329,6 +329,9 @@ void Ewmh::createAtoms() {
m_net_virtual_roots = XInternAtom(disp, "_NET_VIRTUAL_ROOTS", False);
m_net_close_window = XInternAtom(disp, "_NET_CLOSE_WINDOW", False);
+ m_net_moveresize_window = XInternAtom(disp, "_NET_MOVERESIZE_WINDOW", False);
+
+ // TODO: implement this one
m_net_wm_moveresize = XInternAtom(disp, "_NET_WM_MOVERESIZE", False);
m_net_properties = XInternAtom(disp, "_NET_PROPERTIES", False);

View File

@ -1,20 +0,0 @@
Fixes start-up problems with aa-fonts
--- src/Font.cc.orig Fri Oct 25 23:06:45 2002
+++ src/Font.cc Sun Nov 24 07:21:51 2002
@@ -139,14 +139,8 @@ void Font::setAntialias(bool flag) {
bool Font::load(const char *name) {
if (name == 0)
return false;
- bool ret_val = m_fontimp->load(name);
- if (ret_val && name == 0) { //prevent from having a bad fontimp
- m_fontstr = name; // if the load really succeded then set font string
- } else {
- m_fontstr = "";
- }
-
- return ret_val;
+ m_fontstr = name;
+ return m_fontimp->load(name);
}
unsigned int Font::textWidth(const char * const text, unsigned int size) const {

View File

@ -1,21 +0,0 @@
$OpenBSD: patch-src_Screen_cc,v 1.3 2002/11/27 17:48:52 brad Exp $
--- src/Screen.cc.orig Sun Nov 17 12:27:28 2002
+++ src/Screen.cc Sun Nov 24 07:21:51 2002
@@ -284,7 +284,7 @@ resource(rm, screenname, altscreenname)
image_control->setDither(*resource.image_dither);
theme = new Theme(getBaseDisplay()->getXDisplay(), getRootWindow(), colormap(), getScreenNumber(),
image_control, fluxbox->getStyleFilename(), getRootCommand().c_str());
-
+ theme->reconfigure(*resource.antialias);
const char *s = i18n->getMessage(
FBNLS::ScreenSet, FBNLS::ScreenPositionLength,
@@ -447,7 +447,6 @@ resource(rm, screenname, altscreenname)
XFree(children);
XFlush(getBaseDisplay()->getXDisplay());
- theme->reconfigure(*resource.antialias);
}
namespace {