diff options
author | reed <reed> | 2008-04-25 02:16:11 +0000 |
---|---|---|
committer | reed <reed> | 2008-04-25 02:16:11 +0000 |
commit | 31ec9e730513e28801ed7818fbe4a376c1a25ce1 (patch) | |
tree | 6f1f55d3fb4b336a102dc7d7d0035faae70931ff /wm | |
parent | 1d3f9dd5b53c6582041c0329c3cc9f3eca583c87 (diff) | |
download | pkgsrc-31ec9e730513e28801ed7818fbe4a376c1a25ce1.tar.gz |
Add patch so amiwm won't immediately exit without lucida font.
I also sent upstream, but I don't know if this is maintained.
(If you use this window manager, please let me know.)
Diffstat (limited to 'wm')
-rw-r--r-- | wm/amiwm/Makefile | 4 | ||||
-rw-r--r-- | wm/amiwm/distinfo | 3 | ||||
-rw-r--r-- | wm/amiwm/patches/patch-aa | 13 |
3 files changed, 17 insertions, 3 deletions
diff --git a/wm/amiwm/Makefile b/wm/amiwm/Makefile index f3af9fcdd45..47fe89c5732 100644 --- a/wm/amiwm/Makefile +++ b/wm/amiwm/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.21 2008/04/14 23:31:29 rh Exp $ +# $NetBSD: Makefile,v 1.22 2008/04/25 02:16:11 reed Exp $ # DISTNAME= amiwm0.20pl48 PKGNAME= amiwm-0.20p48 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= x11 wm MASTER_SITES= ftp://ftp.lysator.liu.se/pub/X11/wm/amiwm/ diff --git a/wm/amiwm/distinfo b/wm/amiwm/distinfo index 2797879c6d0..465a329d723 100644 --- a/wm/amiwm/distinfo +++ b/wm/amiwm/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.3 2005/02/23 18:43:53 wiz Exp $ +$NetBSD: distinfo,v 1.4 2008/04/25 02:16:11 reed Exp $ SHA1 (amiwm0.20pl48.tar.gz) = 6cf5f7197403a9519ea1f3b272e67a8de4fdca43 RMD160 (amiwm0.20pl48.tar.gz) = abb5922a84501a28a73684c9e056dba6ac6969b7 Size (amiwm0.20pl48.tar.gz) = 141542 bytes +SHA1 (patch-aa) = 4927276af44a0c2257eb723959002eef90db6aaf diff --git a/wm/amiwm/patches/patch-aa b/wm/amiwm/patches/patch-aa new file mode 100644 index 00000000000..89caae2671c --- /dev/null +++ b/wm/amiwm/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2008/04/25 02:16:11 reed Exp $ + +--- libami/drawinfo.c.orig 2008-04-05 16:38:47.000000000 -0500 ++++ libami/drawinfo.c 2008-04-05 16:39:26.000000000 -0500 +@@ -143,7 +143,7 @@ + if(!(dri->dri_Font = XLoadQueryFont(dpy, default_screenfont))) { + fprintf(stderr, "%s: cannot open font %s\n", progname, + default_screenfont); +- exit(1); ++ dri->dri_Font = XLoadQueryFont(dpy, "fixed"); + } + if(override) + setdriprop(dpy, driatom, dritypatom, root, dri); |