[dev] mkmk for plan9port/9base?

2012-05-03 Thread Jens Staal
Hi all I just wondered if anyone has tried to adopt mkmk [1] to 9base and/or plan9port. In my (rather amateurish) attempts to port various stuff to plan9 [2], I have found mkmk to be a really great tool to make mkfiles for various packages that otherwise need autoconf etc... I just read up on the

[dev] about patch xft on FreeBSD

2012-05-03 Thread alphachi
Hello! I'm using dwm 6.0 on FreeBSD 9.0 Release amd64. I need font antialias and CJK supports for statusbar. When I patch http://dwm.suckless.org/patches/dwm-6.0-xft.diff, some errors show: # cd /usr/ports/x11-wm/dwm/work/dwm-6.0/ # patch -p1 < ~/dwm-6.0-xft.diff Hmm... Looks like a unified diff

[dev] Spherical Cow

2012-05-03 Thread Christoph Lohmann
Greetings comrades, just some fun about our newest enemy: Fedora[0]. As you can see, some people at Fedora still realize how they bloat. Sincerely, Christoph Lohmann [0] https://lists.fedoraproject.org/pipermail/announce/2012-April/003067.html

Re: [dev] about patch xft on FreeBSD

2012-05-03 Thread Carlos Torres
Looks like you don't have freetype or freetype dev headers. On May 3, 2012 9:34 AM, "alphachi" wrote: > Hello! > > I'm using dwm 6.0 on FreeBSD 9.0 Release amd64. I need font antialias and > CJK supports for statusbar. When I patch > http://dwm.suckless.org/patches/dwm-6.0-xft.diff, some errors s

Re: [dev] about patch xft on FreeBSD

2012-05-03 Thread Ruben Gonzalez Arnau
Hi, Try to change this on config.mk INCS = -I. -I/usr/include -I${X11INC} to INCS = -I. -I/usr/include -I${X11INC} -I/usr/local/include/freetype2 Hope it helps. On 05/03/2012 15:34, alphachi wrote: Hello! I'm using dwm 6.0 on FreeBSD 9.0 Release amd64. I need font antialias and CJK suppor

Re: [dev] about patch xft on FreeBSD

2012-05-03 Thread Lee Fallat
Yeah, I've been meaning to fix the config.mk error. I'll put up a fix this weekend, but you should be fine looking at the .rej file and placing the fix in yourself. On Thu, May 3, 2012 at 10:46 AM, Ruben Gonzalez Arnau wrote: > Hi, > > Try to change this on config.mk > > INCS = -I. -I/usr/includ

Re: [dev] mkmk for plan9port/9base?

2012-05-03 Thread Anselm R Garbe
On 3 May 2012 09:36, Jens Staal wrote: > I just wondered if anyone has tried to adopt mkmk [1] to 9base and/or > plan9port. In my (rather amateurish) attempts to port various stuff to > plan9 [2], I have found mkmk to be a really great tool to make mkfiles > for various packages that otherwise nee

Re: [dev] Spherical Cow

2012-05-03 Thread Benoît T
Hi all, Le 3 mai 2012 à 15:43, Christoph Lohmann a écrit : > just some fun about our newest enemy: Fedora[0]. > > As you can see, some people at Fedora still realize how > they bloat. By far the wittiest post ever! Thanks for the good laugh :-) -- Benoit Triquet .''`. : :' : We are de

Re: [dev] about patch xft on FreeBSD

2012-05-03 Thread alphachi
After modified to INCS = -I. -I/usr/include -I${X11INC} -I/usr/local/include/freetype2, the building is OK, but still no font antialias and CJK supports.

Re: [dev] about patch xft on FreeBSD

2012-05-03 Thread Lee Fallat
It only implements TTF fonts. I think antialias is dependent on fontconfig or something? My fonts looks antialiased. Try dejavu with a font size of 12, or use mkfontdir and mkfontscale on a ttf font to see what sizes are 'optimal'. On Thu, May 3, 2012 at 10:16 PM, alphachi wrote: > After modifie