diff options
author | hans <hans@pkgsrc.org> | 2012-03-07 20:38:53 +0000 |
---|---|---|
committer | hans <hans@pkgsrc.org> | 2012-03-07 20:38:53 +0000 |
commit | f3f2709f94cfa71ce6a49af80ff71dff193b27a4 (patch) | |
tree | 014927781dde7146bbe9ea4fcc3e30eb97dccbd1 /sysutils | |
parent | 3c63a71d2913fb4c273bb76bb26c71cde435869a (diff) | |
download | pkgsrc-f3f2709f94cfa71ce6a49af80ff71dff193b27a4.tar.gz |
Fix build on SunOS.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/bubblemon/distinfo | 4 | ||||
-rw-r--r-- | sysutils/bubblemon/patches/patch-make | 14 |
2 files changed, 15 insertions, 3 deletions
diff --git a/sysutils/bubblemon/distinfo b/sysutils/bubblemon/distinfo index ea037454ff5..3598ac3e3ce 100644 --- a/sysutils/bubblemon/distinfo +++ b/sysutils/bubblemon/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.2 2010/05/30 20:43:35 gdt Exp $ +$NetBSD: distinfo,v 1.3 2012/03/07 20:38:53 hans Exp $ SHA1 (bubblemon-dockapp-1.46.tar.gz) = 172de9ea7d78e4578143469187a72da8f836647a RMD160 (bubblemon-dockapp-1.46.tar.gz) = 79e8be36cd11a2c6f4998cd747b6125696603a81 Size (bubblemon-dockapp-1.46.tar.gz) = 40001 bytes SHA1 (patch-gtk2) = 70d4875dcf82dd50362275ddb2902a9d31444d03 SHA1 (patch-gtk2-api-change) = 03cefe092460f6be846fce91c9281895d2b43ad3 -SHA1 (patch-make) = df95f404612a88ff6b3449ad5476a5e188786435 +SHA1 (patch-make) = 1e1c7036cc897849f596ed3db66fd74ee502dffc SHA1 (patch-uvm) = 580451d5c75dc8d164a65652f0b4e5ae09689160 diff --git a/sysutils/bubblemon/patches/patch-make b/sysutils/bubblemon/patches/patch-make index 3ba7beb9b64..33341f6d763 100644 --- a/sysutils/bubblemon/patches/patch-make +++ b/sysutils/bubblemon/patches/patch-make @@ -1,4 +1,4 @@ -$NetBSD: patch-make,v 1.1.1.1 2009/07/20 14:06:02 ahoka Exp $ +$NetBSD: patch-make,v 1.2 2012/03/07 20:38:54 hans Exp $ --- Makefile.orig 2003-10-04 02:22:07.000000000 +0200 +++ Makefile @@ -56,6 +56,18 @@ $NetBSD: patch-make,v 1.1.1.1 2009/07/20 14:06:02 ahoka Exp $ #special things for SunOS ifeq ($(OS), SunOS) +@@ -62,9 +68,9 @@ ifeq ($(OS), SunOS) + ifeq ($(COMPILER), gcc) + CFLAGS=-O3 -Wall + endif +- CFLAGS +=`gtk-config --cflags` ${EXTRA} ++ CFLAGS +=`pkg-config --cflags gtk+-2.0` ${EXTRA} + OBJS += sys_sunos.o +- LIBS = `gtk-config --libs` -lkstat -lm ++ LIBS = `pkg-config --libs gtk+-2.0` -lkstat -lm -lX11 + INSTALL = -m 755 + endif + @@ -78,4 +84,4 @@ clean: rm -f bubblemon *.o *.bb* *.gcov gmon.* *.da *~ |