diff options
author | rodent <rodent@pkgsrc.org> | 2013-04-17 01:19:03 +0000 |
---|---|---|
committer | rodent <rodent@pkgsrc.org> | 2013-04-17 01:19:03 +0000 |
commit | 5bf210a06e4e9a1676fe3baf07acfc326e8bea04 (patch) | |
tree | 1b29cb24241f6ce602add19c7377dc82c5f39e6a /converters/gbase/patches | |
parent | 3cf18e0e7453eb7313b1cf00c8e6c28fce637206 (diff) | |
download | pkgsrc-5bf210a06e4e9a1676fe3baf07acfc326e8bea04.tar.gz |
Import gbase-0.5 as converters/gbase.
GBase is a GTK program designed to convert between the four common bases used in
programming (decimal, hexadecimal, octal and binary). It converts numbers
on-the-fly as they are typed in. It can also convert numbers entered on the
command line. It can correctly handle both signed and unsigned 32-bit integers.
Diffstat (limited to 'converters/gbase/patches')
-rw-r--r-- | converters/gbase/patches/patch-Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/converters/gbase/patches/patch-Makefile b/converters/gbase/patches/patch-Makefile new file mode 100644 index 00000000000..6bd80282c71 --- /dev/null +++ b/converters/gbase/patches/patch-Makefile @@ -0,0 +1,26 @@ +$NetBSD: patch-Makefile,v 1.1 2013/04/17 01:19:03 rodent Exp $ + +Fix gtk2 detection. + +--- Makefile.orig 1999-10-27 21:23:51.000000000 +0000 ++++ Makefile +@@ -1,6 +1,6 @@ + CC = gcc +-CCFLAGS = `gtk-config --cflags` +-LDFLAGS = `gtk-config --libs` ++CFLAGS += `pkg-config --cflags gtk+-2.0` ++LDFLAGS = `pkg-config --libs gtk+-2.0` + + gbase: gbase.o + $(CC) gbase.o $(LDFLAGS) -o gbase +@@ -8,8 +8,4 @@ gbase: gbase.o + clean: + rm -f gbase gbase.o gbase.c~ + +-# Make object files: +-%.o: +- $(CC) $(CCFLAGS) -c $*.c +- +-gbase.o: gbase.c +\ No newline at end of file ++gbase.o: gbase.c |