Import new "xbindkeys-config" package:

Tool to configure xbindkeys graphically

This package was contributed by Julio Merino in PR pkg/17293.
This commit is contained in:
tron 2002-07-11 14:25:25 +00:00
parent b4e0611318
commit b2012d400d
5 changed files with 55 additions and 0 deletions

View file

@ -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.

View file

@ -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"

View file

@ -0,0 +1,2 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2002/07/11 14:25:25 tron Exp $
bin/xbindkeys_config

View file

@ -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

View file

@ -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