Index: Makefile =================================================================== RCS file: /home/pcvs/ports/net-im/gaim-hotkeys/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- Makefile 3 May 2007 15:13:53 -0000 1.3 +++ Makefile 7 May 2007 13:21:34 -0000 @@ -7,20 +7,21 @@ PORTNAME= gaim-hotkeys PORTVERSION= 0.2.2 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= SF MAINTAINER= garga@FreeBSD.org COMMENT= A gaim plugin that allows user to assign global hotkeys -LIB_DEPENDS= gaim.0:${PORTSDIR}/net-im/libpurple -BUILD_DEPENDS= gaim:${PORTSDIR}/net-im/pidgin -RUN_DEPENDS= gaim:${PORTSDIR}/net-im/pidgin +LIB_DEPENDS= purple.0:${PORTSDIR}/net-im/libpurple +BUILD_DEPENDS= pidgin:${PORTSDIR}/net-im/pidgin +RUN_DEPENDS= pidgin:${PORTSDIR}/net-im/pidgin USE_GNOME= pkgconfig gtk20 GNU_CONFIGURE= yes -PLIST_FILES= lib/gaim/hotkeys.so \ - lib/gaim/hotkeys.la +PLIST_FILES= lib/pidgin/hotkeys.so \ + lib/pidgin/hotkeys.la .include Index: files/patch-configure =================================================================== RCS file: files/patch-configure diff -N files/patch-configure --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-configure 7 May 2007 13:21:34 -0000 @@ -0,0 +1,12 @@ +--- ../gaim-hotkeys-0.2.2.orig/configure Mon May 7 09:02:50 2007 ++++ configure Mon May 7 09:03:46 2007 +@@ -19868,7 +19868,7 @@ + + + gtk_modules="gtk+-2.0 >= 2.4.0" +-gaim_modules="gaim >= 2.0.0" ++gaim_modules="pidgin >= 2.0.0" + + + if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then +diff -ruN ../gaim-hotkeys-0.2.2.orig/src/hotkeys.c ./src/hotkeys.c Index: files/patch-src_Makefile.in =================================================================== RCS file: files/patch-src_Makefile.in diff -N files/patch-src_Makefile.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src_Makefile.in 7 May 2007 13:21:34 -0000 @@ -0,0 +1,11 @@ +--- ../gaim-hotkeys-0.2.2.orig/src/Makefile.in Mon May 7 09:02:50 2007 ++++ src/Makefile.in Mon May 7 09:20:48 2007 +@@ -220,7 +220,7 @@ + target_cpu = @target_cpu@ + target_os = @target_os@ + target_vendor = @target_vendor@ +-plugindir = $(libdir)/gaim ++plugindir = $(libdir)/pidgin + hotkeys_la_LDFLAGS = -module -avoid-version $(am__append_1) + hotkeys_la_LIBADD = $(GAIM_LIBS) $(GTK_LIBS) $(am__append_2) + plugin_LTLIBRARIES = hotkeys.la Index: files/patch-src_hotkeys.c =================================================================== RCS file: files/patch-src_hotkeys.c diff -N files/patch-src_hotkeys.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src_hotkeys.c 7 May 2007 13:21:34 -0000 @@ -0,0 +1,34 @@ +--- ../gaim-hotkeys-0.2.2.orig/src/hotkeys.c Mon May 7 09:02:50 2007 ++++ src/hotkeys.c Mon May 7 09:20:48 2007 +@@ -22,15 +22,21 @@ + #include + + #define GAIM_PLUGINS +-#include +-#include +-#include +-#include +-#include +-#include +-#include +-#include +-#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include + + #ifdef GDK_WINDOWING_X11 + #include +diff -ruN ../gaim-hotkeys-0.2.2.orig/src/hotkeys.c ./src/hotkeys.c