summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2002-07-11 14:25:25 +0000
committertron <tron@pkgsrc.org>2002-07-11 14:25:25 +0000
commitb2012d400d2d408f512c691a61ff20f69a75e8e8 (patch)
tree950fc6e05fd55de66d452526aad6ecc0946d6d83 /x11
parentb4e0611318d06ec4e8b63c2dc0a8f7923dd7d523 (diff)
downloadpkgsrc-b2012d400d2d408f512c691a61ff20f69a75e8e8.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-config/DESCR3
-rw-r--r--x11/xbindkeys-config/Makefile16
-rw-r--r--x11/xbindkeys-config/PLIST2
-rw-r--r--x11/xbindkeys-config/distinfo5
-rw-r--r--x11/xbindkeys-config/patches/patch-aa29
5 files changed, 55 insertions, 0 deletions
diff --git a/x11/xbindkeys-config/DESCR b/x11/xbindkeys-config/DESCR
new file mode 100644
index 00000000000..a4810a5b975
--- /dev/null
+++ b/x11/xbindkeys-config/DESCR
@@ -0,0 +1,3 @@
+xbindkeys_config is an easy to use gtk program for configuring
+xbindkeys, which is a tool to launch programs trough mouse or
+keyboard events.
diff --git a/x11/xbindkeys-config/Makefile b/x11/xbindkeys-config/Makefile
new file mode 100644
index 00000000000..1c24695b84f
--- /dev/null
+++ b/x11/xbindkeys-config/Makefile
@@ -0,0 +1,16 @@
+# $NetBSD: Makefile,v 1.1.1.1 2002/07/11 14:25:25 tron Exp $
+
+DISTNAME= xbindkeys_config-0.1.2
+PKGNAME= xbindkeys-config-0.1.2
+CATEGORIES= x11
+MASTER_SITES= http://www.netchampagne.com/xbindkeys_config/
+
+MAINTAINER= jmmv@hispabsd.org
+HOMEPAGE= http://www.netchampagne.com/xbindkeys_config/
+COMMENT= Tool to configure xbindkeys graphically
+
+DEPENDS+= xbindkeys-[0-9]*:../xbindkeys
+
+.include "../../x11/gtk/buildlink.mk"
+.include "../../mk/x11.buildlink.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/x11/xbindkeys-config/PLIST b/x11/xbindkeys-config/PLIST
new file mode 100644
index 00000000000..32d70d2abce
--- /dev/null
+++ b/x11/xbindkeys-config/PLIST
@@ -0,0 +1,2 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2002/07/11 14:25:25 tron Exp $
+bin/xbindkeys_config
diff --git a/x11/xbindkeys-config/distinfo b/x11/xbindkeys-config/distinfo
new file mode 100644
index 00000000000..6036ddf153e
--- /dev/null
+++ b/x11/xbindkeys-config/distinfo
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2002/07/11 14:25:25 tron Exp $
+
+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-config/patches/patch-aa b/x11/xbindkeys-config/patches/patch-aa
new file mode 100644
index 00000000000..96efa67163e
--- /dev/null
+++ b/x11/xbindkeys-config/patches/patch-aa
@@ -0,0 +1,29 @@
+$NetBSD: patch-aa,v 1.1.1.1 2002/07/11 14:25:25 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