diff options
author | tron <tron@pkgsrc.org> | 2002-07-11 14:23:37 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2002-07-11 14:23:37 +0000 |
commit | 459594708b1c7ee0893fda706c5c3b191d406059 (patch) | |
tree | 65850ce49c5a669471ed630d8606951bb867f702 /x11 | |
parent | c8e8e4a1cc808b790bb65739385950ae03a24c5c (diff) | |
download | pkgsrc-459594708b1c7ee0893fda706c5c3b191d406059.tar.gz |
Import new "xbindkeys-config" package:
Tool to configure xbindkeys graphically
This package was contributed by Julio Merino in PR pkg/17293.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xbindkeys/PLIST | 7 | ||||
-rw-r--r-- | x11/xbindkeys/distinfo | 7 | ||||
-rw-r--r-- | x11/xbindkeys/patches/patch-aa | 29 |
3 files changed, 35 insertions, 8 deletions
diff --git a/x11/xbindkeys/PLIST b/x11/xbindkeys/PLIST index 93232bb081d..f3a19528da2 100644 --- a/x11/xbindkeys/PLIST +++ b/x11/xbindkeys/PLIST @@ -1,5 +1,2 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2002/06/15 23:35:06 cjep Exp $ -bin/xbindkeys -bin/xbindkeys_show -man/man1/xbindkeys.1 -man/man1/xbindkeys_show.1 +@comment $NetBSD: PLIST,v 1.1.1.2 2002/07/11 14:23:37 tron Exp $ +bin/xbindkeys_config diff --git a/x11/xbindkeys/distinfo b/x11/xbindkeys/distinfo index cc314b96ca3..43ae2353074 100644 --- a/x11/xbindkeys/distinfo +++ b/x11/xbindkeys/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.1.1.1 2002/06/15 23:35:06 cjep Exp $ +$NetBSD: distinfo,v 1.1.1.2 2002/07/11 14:23:37 tron Exp $ -SHA1 (xbindkeys-1.5.5.tar.gz) = 56f814ab706a10b7207222b346433306d414a343 -Size (xbindkeys-1.5.5.tar.gz) = 73777 bytes +SHA1 (xbindkeys_config-0.1.2.tar.gz) = da6d3a5e5ba00dedad3d5f6dc145989fabacb491 +Size (xbindkeys_config-0.1.2.tar.gz) = 17579 bytes +SHA1 (patch-aa) = f96cea02e4e630b7f9a2ecedb8219ca2e4bbd683 diff --git a/x11/xbindkeys/patches/patch-aa b/x11/xbindkeys/patches/patch-aa new file mode 100644 index 00000000000..ebcbbaebdb4 --- /dev/null +++ b/x11/xbindkeys/patches/patch-aa @@ -0,0 +1,29 @@ +$NetBSD: patch-aa,v 1.1.1.1 2002/07/11 14:23:37 tron Exp $ + +--- Makefile.orig Tue Jun 4 11:35:45 2002 ++++ Makefile Sun Jun 16 20:51:30 2002 +@@ -1,13 +1,13 @@ + # makefile crée par Laurent VUIBERT + +-CC= gcc -O3 -Wall ++CC= gcc ${CFLAGS} + STD= _GNU_SOURCE +-GTK= `gtk-config --cflags --libs` +-GTK2= `gtk-config --cflags` ++GTK= `${BUILDLINK_DIR}/bin/gtk-config --cflags --libs` ++GTK2= `${BUILDLINK_DIR}/bin/gtk-config --cflags` + OBJS= xbindkeys_config.o menu.o middle.o speedc.o + NOM= xbindkeys_config + +-prefix= /usr ++prefix= ${LOCALBASE} + + .c.o: + $(CC) $(GTK2) -D$(STD) -c $< +@@ -22,5 +22,5 @@ + rm -rf .v* + + install: +- cp $(NOM) $(DESTDIR)$(prefix)/bin/ ++ install -m 555 -o root -g wheel -c $(NOM) $(DESTDIR)$(prefix)/bin/ + #End Makefile |