Re-roll the -awesome patch for the conky-1.6.1 release.

This commit is contained in:
Adam Weinberger 2008-08-19 23:10:55 +00:00
parent df2ed5bf4e
commit d9aa6f5324
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=218884
2 changed files with 7 additions and 7 deletions

View file

@ -10,15 +10,15 @@ PKGNAMESUFFIX= -awesome
MAINTAINER= adamw@FreeBSD.org MAINTAINER= adamw@FreeBSD.org
COMMENT= An advanced, highly configurable system monitor (configured for x11-wm/awesome) COMMENT= An advanced, highly configurable system monitor (configured for x11-wm/awesome)
MASTERDIR= ${.CURDIR}/../conky MASTERDIR= ${.CURDIR}/../../sysutils/conky
DESCR= ${.CURDIR}/pkg-descr DESCR= ${.CURDIR}/pkg-descr
EXTRA_PATCHES= ${.CURDIR}/files/patch-* EXTRA_PATCHES= ${.CURDIR}/files/patch-*
CONFLICTS= conky-[0-9]* CONFLICTS= conky-[0-9]*
USE_XORG= USE_XORG= # This is a comment
USE_GNOME= pkgconfig USE_GNOME= pkgconfig
CONFIGURE_ARGS+= --disable-x11 CONFIGURE_ARGS+= --disable-x11
.include "${MASTERDIR}/Makefile" .include "${MASTERDIR}/Makefile"

View file

@ -1,9 +1,9 @@
--- src/conky.c.orig 2008-05-27 00:43:05.000000000 -0400 --- src/conky.c.orig 2008-08-19 16:02:53.000000000 -0700
+++ src/conky.c 2008-05-27 00:43:36.000000000 -0400 +++ src/conky.c 2008-08-19 16:03:36.000000000 -0700
@@ -6513,7 +6513,7 @@ static void draw_string(const char *s) @@ -6672,7 +6672,7 @@ static void draw_string(const char *s)
width_of_s = get_string_width(s); width_of_s = get_string_width(s);
if (out_to_console) { if ((output_methods & TO_STDOUT) && draw_mode == FG) {
- printf("%s\n", s); - printf("%s\n", s);
+ printf("%s\n\n", s); + printf("%s\n\n", s);
fflush(stdout); /* output immediately, don't buffer */ fflush(stdout); /* output immediately, don't buffer */