summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <drac@gentoo.org>2008-04-29 19:40:43 +0000
committerSamuli Suominen <drac@gentoo.org>2008-04-29 19:40:43 +0000
commit4fb4936257e499c03d651ada19059469c4dbec0d (patch)
tree6f51f4f347d761551cf972a2b3ba4ba823c73fe7 /x11-misc
parentfix broken mask (diff)
downloadgentoo-2-4fb4936257e499c03d651ada19059469c4dbec0d.tar.gz
gentoo-2-4fb4936257e499c03d651ada19059469c4dbec0d.tar.bz2
gentoo-2-4fb4936257e499c03d651ada19059469c4dbec0d.zip
old
(Portage version: 2.1.5_rc6)
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/hotkeys/files/hotkeys-0.5.7.1-r1-gentoo.diff47
-rw-r--r--x11-misc/hotkeys/hotkeys-0.5.7.1-r1.ebuild45
2 files changed, 0 insertions, 92 deletions
diff --git a/x11-misc/hotkeys/files/hotkeys-0.5.7.1-r1-gentoo.diff b/x11-misc/hotkeys/files/hotkeys-0.5.7.1-r1-gentoo.diff
deleted file mode 100644
index 06092cc88134..000000000000
--- a/x11-misc/hotkeys/files/hotkeys-0.5.7.1-r1-gentoo.diff
+++ /dev/null
@@ -1,47 +0,0 @@
---- src/kbddef.c.org 2003-08-15 13:20:45.000000000 +0200
-+++ src/kbddef.c 2003-08-15 13:21:06.000000000 +0200
-@@ -37,8 +37,8 @@
- */
- #include "XF86keysym.h"
-
--#include <xmlmemory.h>
--#include <parser.h>
-+#include <libxml2/libxml/xmlmemory.h>
-+#include <libxml2/libxml/parser.h>
-
- #include "hotkeys.h"
- #include "kbddef.h"
-
---- src/Makefile.in 2002-12-08 15:34:44.000000000 +0100
-+++ src/Makefile.in 2003-08-27 22:36:18.000000000 +0200
-@@ -102,7 +102,7 @@
- man_MANS = hotkeys.1
-
- CFLAGS = @CFLAGS@ @X_CFLAGS@ @XML_CFLAGS@ @LIBXOSD_CFLAGS@ @GTK_CFLAGS@ -I.. # -DDEBUG
--LIBS = @LIBS@ @X_LIBS@ @XML_LIBS@ @LIBXOSD_LIBS@ @GTK_LIBS@
-+LIBS = @LIBS@ @X_LIBS@ @XML_LIBS@ @LIBXOSD_LIBS@ @GTK_LIBS@ @libdir@/libdb.so.3
- DEFS = @DEFS@ -DSHAREDIR=\"@datadir@/@PACKAGE@\" -DCONFDIR=\"@sysconfdir@\" -DCONFIG_NAME=\"@PACKAGE@.conf\"
-
-
---- src/conf.c 2002-11-27 20:30:08.000000000 +0100
-+++ src/conf.c 2003-08-27 22:19:14.000000000 +0200
-@@ -25,7 +25,7 @@
- #include "common.h"
-
- #include <stdio.h>
--#include <db.h>
-+#include <db3/db.h>
- #include <string.h>
- #include <sys/param.h>
-
---- src/hotkeys.c 2002-12-03 20:26:32.000000000 +0100
-+++ src/hotkeys.c 2003-08-27 22:19:31.000000000 +0200
-@@ -37,7 +37,7 @@
- #include <stdio.h>
- #include <unistd.h>
- #include <stdarg.h>
--#include <db.h>
-+#include <db3/db.h>
- #include <errno.h>
- #ifdef HAVE_GETOPT_LONG
- #include <getopt.h>
diff --git a/x11-misc/hotkeys/hotkeys-0.5.7.1-r1.ebuild b/x11-misc/hotkeys/hotkeys-0.5.7.1-r1.ebuild
deleted file mode 100644
index d8d19b92fc3d..000000000000
--- a/x11-misc/hotkeys/hotkeys-0.5.7.1-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/hotkeys/hotkeys-0.5.7.1-r1.ebuild,v 1.17 2007/08/20 13:40:37 ulm Exp $
-
-inherit eutils
-
-DESCRIPTION="Make use of extra buttons on newer keyboards."
-HOMEPAGE="http://ypwong.org/hotkeys"
-SRC_URI="http://ypwong.org/hotkeys/${PV}/${PN}_${PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 sparc amd64 ppc"
-IUSE="gtk xosd"
-
-RDEPEND="x11-libs/libXmu
- x11-libs/libxkbfile
- >=dev-libs/libxml2-2.2.8
- =sys-libs/db-3.2*
- xosd? ( >=x11-libs/xosd-1 )
- gtk? ( >=x11-libs/gtk+-2 )"
-DEPEND="${RDEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${PF}-gentoo.diff
-}
-
-src_compile() {
- if use gtk; then
- opts="${opts} --with-gtk"
- fi
- econf \
- --disable-db3test \
- $(use_with xosd) \
- ${opts}
-
- emake || die "emake failed."
-}
-
-src_install () {
- emake DESTDIR="${D}" install || die "emake install failed."
- dodoc AUTHORS BUGS ChangeLog README TODO
-}