summaryrefslogtreecommitdiff
path: root/pkgtools/packagekit/patches
diff options
context:
space:
mode:
authorjmcneill <jmcneill@pkgsrc.org>2009-01-08 00:21:00 +0000
committerjmcneill <jmcneill@pkgsrc.org>2009-01-08 00:21:00 +0000
commit116630b258c6caa5e613acb1d6e895f1c12303c1 (patch)
treec600f0b0be3745ec5c0e2503fa6386630c36a815 /pkgtools/packagekit/patches
parent6a54aaac50d9bd81a9fc1ff492573b03a17fd27c (diff)
downloadpkgsrc-116630b258c6caa5e613acb1d6e895f1c12303c1.tar.gz
Import packagekit version 0.4.0. Much work to do.
PackageKit is a system designed to make installing and updating software on your computer easier. The primary design goal is to unify all the software graphical tools used in different distributions, and use some of the latest technology like PolicyKit to make the process suck less. The actual nuts-and-bolts distro tool (yum, apt, conary, etc) is used by PackageKit using compiled and scripted helpers. PackageKit isn't meant to replace these tools, instead providing a common set of abstractions that can be used by standard GUI and text mode package managers. PackageKit itself is a system activated daemon called packagekitd. Being system activated means that it's only being run when the user is using a text mode or graphical tool, and quits when it's no longer being used. This means we don't delay the boot sequence or session startup and don't consume memory when not being used.
Diffstat (limited to 'pkgtools/packagekit/patches')
-rw-r--r--pkgtools/packagekit/patches/patch-aa22
-rw-r--r--pkgtools/packagekit/patches/patch-ab32
-rw-r--r--pkgtools/packagekit/patches/patch-ac32
-rw-r--r--pkgtools/packagekit/patches/patch-ad12
-rw-r--r--pkgtools/packagekit/patches/patch-ae32
-rw-r--r--pkgtools/packagekit/patches/patch-af25
-rw-r--r--pkgtools/packagekit/patches/patch-ag32
-rw-r--r--pkgtools/packagekit/patches/patch-ah32
-rw-r--r--pkgtools/packagekit/patches/patch-ai13
-rw-r--r--pkgtools/packagekit/patches/patch-aj16
-rw-r--r--pkgtools/packagekit/patches/patch-ak13
-rw-r--r--pkgtools/packagekit/patches/patch-al25
-rw-r--r--pkgtools/packagekit/patches/patch-am17
-rw-r--r--pkgtools/packagekit/patches/patch-an54
-rw-r--r--pkgtools/packagekit/patches/patch-ao15
-rw-r--r--pkgtools/packagekit/patches/patch-ap30
16 files changed, 402 insertions, 0 deletions
diff --git a/pkgtools/packagekit/patches/patch-aa b/pkgtools/packagekit/patches/patch-aa
new file mode 100644
index 00000000000..80a3779329c
--- /dev/null
+++ b/pkgtools/packagekit/patches/patch-aa
@@ -0,0 +1,22 @@
+$NetBSD: patch-aa,v 1.1.1.1 2009/01/08 00:21:00 jmcneill Exp $
+
+--- data/packagekit-background.cron.orig 2008-10-06 06:49:49.000000000 -0400
++++ data/packagekit-background.cron
+@@ -12,7 +12,7 @@
+ [ -f /etc/sysconfig/packagekit-background ] && . /etc/sysconfig/packagekit-background
+
+ # are we disabled?
+-if [ "$ENABLED" == "no" ]; then
++if [ "$ENABLED" = "no" ]; then
+ exit 1
+ fi
+
+@@ -25,7 +25,7 @@ PKTMP=$(mktemp /var/run/packagekit-cron.
+ sleep $RANDOM
+
+ # do action
+-if [ "$CHECK_ONLY" == "yes" ]; then
++if [ "$CHECK_ONLY" = "yes" ]; then
+ pkcon get-updates > $PKTMP
+ else
+ pkcon update > $PKTMP
diff --git a/pkgtools/packagekit/patches/patch-ab b/pkgtools/packagekit/patches/patch-ab
new file mode 100644
index 00000000000..ecc366e8115
--- /dev/null
+++ b/pkgtools/packagekit/patches/patch-ab
@@ -0,0 +1,32 @@
+$NetBSD: patch-ab,v 1.1.1.1 2009/01/08 00:21:00 jmcneill Exp $
+
+--- client/egg-debug.c.orig 2008-11-06 03:19:07.000000000 -0500
++++ client/egg-debug.c
+@@ -39,7 +39,9 @@
+ #include <sys/stat.h>
+ #include <fcntl.h>
+ #include <time.h>
++#ifdef __linux__
+ #include <execinfo.h>
++#endif
+
+ #include "egg-debug.h"
+
+@@ -78,6 +80,7 @@ pk_set_console_mode (guint console_code)
+ void
+ egg_debug_backtrace (void)
+ {
++#ifdef __linux__
+ void *call_stack[512];
+ int call_stack_size;
+ char **symbols;
+@@ -95,6 +98,9 @@ egg_debug_backtrace (void)
+ pk_set_console_mode (CONSOLE_RESET);
+ free (symbols);
+ }
++#else
++ g_print ("egg_debug_backtrace not implemented on this platform\n");
++#endif
+ }
+
+ /**
diff --git a/pkgtools/packagekit/patches/patch-ac b/pkgtools/packagekit/patches/patch-ac
new file mode 100644
index 00000000000..38033602e04
--- /dev/null
+++ b/pkgtools/packagekit/patches/patch-ac
@@ -0,0 +1,32 @@
+$NetBSD: patch-ac,v 1.1.1.1 2009/01/08 00:21:00 jmcneill Exp $
+
+--- contrib/command-not-found/egg-debug.c.orig 2008-11-06 03:19:07.000000000 -0500
++++ contrib/command-not-found/egg-debug.c
+@@ -39,7 +39,9 @@
+ #include <sys/stat.h>
+ #include <fcntl.h>
+ #include <time.h>
++#ifdef __linux__
+ #include <execinfo.h>
++#endif
+
+ #include "egg-debug.h"
+
+@@ -78,6 +80,7 @@ pk_set_console_mode (guint console_code)
+ void
+ egg_debug_backtrace (void)
+ {
++#ifdef __linux__
+ void *call_stack[512];
+ int call_stack_size;
+ char **symbols;
+@@ -95,6 +98,9 @@ egg_debug_backtrace (void)
+ pk_set_console_mode (CONSOLE_RESET);
+ free (symbols);
+ }
++#else
++ g_print ("egg_debug_backtrace not implemented on this platform.\n");
++#endif
+ }
+
+ /**
diff --git a/pkgtools/packagekit/patches/patch-ad b/pkgtools/packagekit/patches/patch-ad
new file mode 100644
index 00000000000..a2aa62889cf
--- /dev/null
+++ b/pkgtools/packagekit/patches/patch-ad
@@ -0,0 +1,12 @@
+$NetBSD: patch-ad,v 1.1.1.1 2009/01/08 00:21:00 jmcneill Exp $
+
+--- contrib/command-not-found/pk-command-not-found.c.orig 2008-12-09 03:22:23.000000000 -0500
++++ contrib/command-not-found/pk-command-not-found.c
+@@ -22,6 +22,7 @@
+ #include "config.h"
+
+ #include <string.h>
++#include <locale.h>
+ #include <glib/gi18n.h>
+ #include <dbus/dbus-glib.h>
+ #include <packagekit-glib/packagekit.h>
diff --git a/pkgtools/packagekit/patches/patch-ae b/pkgtools/packagekit/patches/patch-ae
new file mode 100644
index 00000000000..76c6d1b4367
--- /dev/null
+++ b/pkgtools/packagekit/patches/patch-ae
@@ -0,0 +1,32 @@
+$NetBSD: patch-ae,v 1.1.1.1 2009/01/08 00:21:00 jmcneill Exp $
+
+--- lib/packagekit-glib/egg-debug.c.orig 2008-11-06 03:19:07.000000000 -0500
++++ lib/packagekit-glib/egg-debug.c
+@@ -39,7 +39,9 @@
+ #include <sys/stat.h>
+ #include <fcntl.h>
+ #include <time.h>
++#ifdef __linux__
+ #include <execinfo.h>
++#endif
+
+ #include "egg-debug.h"
+
+@@ -78,6 +80,7 @@ pk_set_console_mode (guint console_code)
+ void
+ egg_debug_backtrace (void)
+ {
++#ifdef __linux__
+ void *call_stack[512];
+ int call_stack_size;
+ char **symbols;
+@@ -95,6 +98,9 @@ egg_debug_backtrace (void)
+ pk_set_console_mode (CONSOLE_RESET);
+ free (symbols);
+ }
++#else
++ g_print ("egg_debug_backtrace not implemented on this platform\n");
++#endif
+ }
+
+ /**
diff --git a/pkgtools/packagekit/patches/patch-af b/pkgtools/packagekit/patches/patch-af
new file mode 100644
index 00000000000..81049b958d2
--- /dev/null
+++ b/pkgtools/packagekit/patches/patch-af
@@ -0,0 +1,25 @@
+$NetBSD: patch-af,v 1.1.1.1 2009/01/08 00:21:00 jmcneill Exp $
+
+--- lib/packagekit-glib/pk-client.c.orig 2008-12-09 03:22:23.000000000 -0500
++++ lib/packagekit-glib/pk-client.c
+@@ -33,7 +33,9 @@
+
+ #include <string.h>
+ #include <sys/types.h>
++#ifdef __linux__
+ #include <sys/prctl.h>
++#endif
+ #ifdef HAVE_UNISTD_H
+ #include <unistd.h>
+ #endif /* HAVE_UNISTD_H */
+@@ -4493,8 +4495,10 @@ pk_client_new (void)
+ __attribute__ ((constructor))
+ void init()
+ {
++#ifdef __linux__
+ /* this is a bandaid */
+ prctl (PR_SET_DUMPABLE, 0);
++#endif
+ }
+
+ /***************************************************************************
diff --git a/pkgtools/packagekit/patches/patch-ag b/pkgtools/packagekit/patches/patch-ag
new file mode 100644
index 00000000000..f93c91de28d
--- /dev/null
+++ b/pkgtools/packagekit/patches/patch-ag
@@ -0,0 +1,32 @@
+$NetBSD: patch-ag,v 1.1.1.1 2009/01/08 00:21:00 jmcneill Exp $
+
+--- src/egg-debug.c.orig 2008-11-06 03:19:07.000000000 -0500
++++ src/egg-debug.c
+@@ -39,7 +39,9 @@
+ #include <sys/stat.h>
+ #include <fcntl.h>
+ #include <time.h>
++#ifdef __linux__
+ #include <execinfo.h>
++#endif
+
+ #include "egg-debug.h"
+
+@@ -78,6 +80,7 @@ pk_set_console_mode (guint console_code)
+ void
+ egg_debug_backtrace (void)
+ {
++#ifdef __linux__
+ void *call_stack[512];
+ int call_stack_size;
+ char **symbols;
+@@ -95,6 +98,9 @@ egg_debug_backtrace (void)
+ pk_set_console_mode (CONSOLE_RESET);
+ free (symbols);
+ }
++#else
++ g_print ("egg_debug_backtrace not implemented on this platform\n");
++#endif
+ }
+
+ /**
diff --git a/pkgtools/packagekit/patches/patch-ah b/pkgtools/packagekit/patches/patch-ah
new file mode 100644
index 00000000000..fa0d630037d
--- /dev/null
+++ b/pkgtools/packagekit/patches/patch-ah
@@ -0,0 +1,32 @@
+$NetBSD: patch-ah,v 1.1.1.1 2009/01/08 00:21:00 jmcneill Exp $
+
+--- src/pk-main.c.orig 2008-12-04 08:45:11.000000000 -0500
++++ src/pk-main.c 2009-01-07 08:33:31.000000000 -0500
+@@ -178,9 +178,11 @@ main (int argc, char *argv[])
+ PkSyslog *syslog = NULL;
+ GError *error = NULL;
+ GOptionContext *context;
++#ifdef __linux__
+ const gchar *env_pk_verbose;
+ const gchar *env_pk_console;
+ const gchar *env_pk_logging;
++#endif
+
+ const GOptionEntry options[] = {
+ { "backend", '\0', 0, G_OPTION_ARG_STRING, &backend_name,
+@@ -251,6 +253,7 @@ main (int argc, char *argv[])
+ goto exit_program;
+ }
+
++#ifdef __linux__
+ /* we don't actually need to do this, except it rules out the
+ * 'it works from the command line but not service activation' bugs */
+ env_pk_verbose = g_getenv (EGG_VERBOSE);
+@@ -260,6 +263,7 @@ main (int argc, char *argv[])
+ g_setenv (EGG_VERBOSE, env_pk_verbose, FALSE);
+ g_setenv (EGG_CONSOLE, env_pk_console, FALSE);
+ g_setenv (EGG_LOGGING, env_pk_logging, FALSE);
++#endif
+
+ /* get values from the config file */
+ conf = pk_conf_new ();
diff --git a/pkgtools/packagekit/patches/patch-ai b/pkgtools/packagekit/patches/patch-ai
new file mode 100644
index 00000000000..305c58d8cd3
--- /dev/null
+++ b/pkgtools/packagekit/patches/patch-ai
@@ -0,0 +1,13 @@
+$NetBSD: patch-ai,v 1.1.1.1 2009/01/08 00:21:00 jmcneill Exp $
+
+--- contrib/Makefile.in.orig 2008-12-09 03:25:51.000000000 -0500
++++ contrib/Makefile.in
+@@ -314,7 +314,7 @@ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ SUBDIRS = udev $(am__append_1) $(am__append_2) $(am__append_3) \
+ $(am__append_4) $(am__append_5)
+-bashcompletiondir = ${SYSCONFDIR}/bash_completion.d
++bashcompletiondir = $(PREFIX)/share/examples/packagekit
+ dist_bashcompletion_DATA = pk-completion.bash
+ script_SCRIPTS = \
+ packagekit-bugreport.sh
diff --git a/pkgtools/packagekit/patches/patch-aj b/pkgtools/packagekit/patches/patch-aj
new file mode 100644
index 00000000000..feab534a536
--- /dev/null
+++ b/pkgtools/packagekit/patches/patch-aj
@@ -0,0 +1,16 @@
+$NetBSD: patch-aj,v 1.1.1.1 2009/01/08 00:21:00 jmcneill Exp $
+
+--- contrib/command-not-found/Makefile.in.orig 2008-12-09 03:25:51.000000000 -0500
++++ contrib/command-not-found/Makefile.in
+@@ -346,9 +346,9 @@ pk_command_not_found_LDADD = \
+ $(PK_GLIB_LIBS) \
+ $(NULL)
+
+-bashprofiledir = ${SYSCONFDIR}/profile.d
++bashprofiledir = $(PREFIX)/share/examples/packagekit
+ dist_bashprofile_DATA = PackageKit.sh
+-confdir = $(PK_CONF_DIR)
++confdir = $(PREFIX)/share/examples/packagekit
+ dist_conf_DATA = CommandNotFound.conf
+ all: all-am
+
diff --git a/pkgtools/packagekit/patches/patch-ak b/pkgtools/packagekit/patches/patch-ak
new file mode 100644
index 00000000000..e0953b0fc72
--- /dev/null
+++ b/pkgtools/packagekit/patches/patch-ak
@@ -0,0 +1,13 @@
+$NetBSD: patch-ak,v 1.1.1.1 2009/01/08 00:21:00 jmcneill Exp $
+
+--- contrib/udev/Makefile.in.orig 2008-12-09 03:25:51.000000000 -0500
++++ contrib/udev/Makefile.in
+@@ -290,7 +290,7 @@ target_alias = @target_alias@
+ top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+-udevrulesdir = ${SYSCONFDIR}/udev/rules.d
++udevrulesdir = $(PREFIX)/share/examples/packagekit
+ dist_udevrules_DATA = 51-packagekit-firmware.rules
+ EXTRA_DIST = packagekit-firmware.sh
+ all: all-am
diff --git a/pkgtools/packagekit/patches/patch-al b/pkgtools/packagekit/patches/patch-al
new file mode 100644
index 00000000000..2cf162416d1
--- /dev/null
+++ b/pkgtools/packagekit/patches/patch-al
@@ -0,0 +1,25 @@
+$NetBSD: patch-al,v 1.1.1.1 2009/01/08 00:21:00 jmcneill Exp $
+
+--- data/Makefile.in.orig 2008-12-09 03:25:51.000000000 -0500
++++ data/Makefile.in
+@@ -345,9 +345,9 @@ pkgconfig_DATA = \
+ packagekit-qt.pc \
+ $(NULL)
+
+-cronfiledir = ${SYSCONFDIR}/cron.daily
++cronfiledir = $(PREFIX)/share/examples/packagekit
+ cronfile_SCRIPTS = packagekit-background.cron
+-crondatadir = ${SYSCONFDIR}/sysconfig
++crondatadir = $(PREFIX)/share/examples/packagekit
+ crondata_SCRIPTS = packagekit-background
+ pmutilsdir = $(libdir)/pm-utils/sleep.d
+ pmutils_DATA = 95packagekit
+@@ -363,7 +363,7 @@ mime_in_files = \
+ $(NULL)
+
+ mime_DATA = $(mime_in_files:.xml.in=.xml)
+-dbusdir = ${SYSCONFDIR}/dbus-1/system.d
++dbusdir = $(PREFIX)/share/examples/packagekit
+ dist_dbus_DATA = \
+ org.freedesktop.PackageKit.conf \
+ org.freedesktop.PackageKitTestBackend.conf \
diff --git a/pkgtools/packagekit/patches/patch-am b/pkgtools/packagekit/patches/patch-am
new file mode 100644
index 00000000000..2cb8a0d3d4b
--- /dev/null
+++ b/pkgtools/packagekit/patches/patch-am
@@ -0,0 +1,17 @@
+$NetBSD: patch-am,v 1.1.1.1 2009/01/08 00:21:00 jmcneill Exp $
+
+--- etc/Makefile.in.orig 2008-12-09 03:25:52.000000000 -0500
++++ etc/Makefile.in
+@@ -291,10 +291,10 @@ top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ NULL =
+-confdir = $(PK_CONF_DIR)
++confdir = $(PREFIX)/share/examples/packagekit
+ conf_in_files = PackageKit.conf.in
+ conf_DATA = $(conf_in_files:.conf.in=.conf)
+-vendordir = $(PK_CONF_DIR)
++vendordir = $(PREFIX)/share/examples/packagekit
+ vendor_DATA = Vendor.conf
+ EXTRA_DIST = \
+ $(conf_in_files) \
diff --git a/pkgtools/packagekit/patches/patch-an b/pkgtools/packagekit/patches/patch-an
new file mode 100644
index 00000000000..be94522569d
--- /dev/null
+++ b/pkgtools/packagekit/patches/patch-an
@@ -0,0 +1,54 @@
+$NetBSD: patch-an,v 1.1.1.1 2009/01/08 00:21:00 jmcneill Exp $
+
+--- configure.ac.orig 2008-12-09 03:22:23.000000000 -0500
++++ configure.ac 2009-01-07 08:03:23.000000000 -0500
+@@ -353,6 +353,7 @@
+ AC_ARG_ENABLE(dummy, AS_HELP_STRING([--enable-dummy],[use the dummy backend]),enable_dummy=$enableval,enable_dummy=yes)
+ AC_ARG_ENABLE(opkg, AS_HELP_STRING([--enable-opkg],[use the OPKG backend]),enable_opkg=$enableval,enable_opkg=no)
+ AC_ARG_ENABLE(pisi, AS_HELP_STRING([--enable-pisi],[use the PiSi backend]),enable_pisi=$enableval,enable_pisi=no)
++AC_ARG_ENABLE(pkgsrc, AS_HELP_STRING([--enable-pkgsrc],[use the pkgsrc backend]),enable_pkgsrc=$enableval,enable_pkgsrc=no)
+ AC_ARG_ENABLE(poldek, AS_HELP_STRING([--enable-poldek],[use the poldek backend]),enable_poldek=$enableval,enable_poldek=no)
+ AC_ARG_ENABLE(razor, AS_HELP_STRING([--enable-razor],[use the razor backend]),enable_razor=$enableval,enable_razor=no)
+ AC_ARG_ENABLE(smart, AS_HELP_STRING([--enable-smart],[use the SMART backend]),enable_smart=$enableval,enable_smart=no)
+@@ -368,6 +369,7 @@
+ AM_CONDITIONAL(BACKEND_TYPE_DUMMY, [test x$enable_dummy = xyes], [using dummy backend])
+ AM_CONDITIONAL(BACKEND_TYPE_OPKG, [test x$enable_opkg = xyes], [using OPKG backend])
+ AM_CONDITIONAL(BACKEND_TYPE_PISI, [test x$enable_pisi = xyes], [using PiSi backend])
++AM_CONDITIONAL(BACKEND_TYPE_PKGSRC, [test x$enable_pkgsrc = xyes], [using pkgsrc backend])
+ AM_CONDITIONAL(BACKEND_TYPE_POLDEK, [test x$enable_poldek = xyes], [using poldek backend])
+ AM_CONDITIONAL(BACKEND_TYPE_RAZOR, [test x$enable_razor = xyes], [using Razor backend])
+ AM_CONDITIONAL(BACKEND_TYPE_SMART, [test x$enable_smart = xyes], [using SMART backend])
+@@ -494,7 +496,7 @@
+ AC_ARG_WITH([default_backend],
+ AS_HELP_STRING([--with-default-backend=<option>],
+ [Default backend to use
+- alpm,apt,box,conary,dummy,razor,smart,urpmi,yum,pisi,zypp,opkg (dummy)]))
++ alpm,apt,box,conary,dummy,razor,smart,urpmi,yum,pisi,pkgsrc,zypp,opkg (dummy)]))
+ # default to a sane option for the installed tool
+ if test x$with_default_backend = x; then
+ if test -f /usr/bin/yum ; then
+@@ -519,6 +521,8 @@
+ with_default_backend=urpmi
+ elif test -f /usr/bin/zypper ; then
+ with_default_backend=zypp
++ elif test -f /usr/sbin/pkg_add ; then
++ with_default_backend=pkgsrc
+ else
+ with_default_backend=dummy
+ fi
+@@ -622,6 +626,7 @@
+ backends/razor/Makefile
+ backends/yum/Makefile
+ backends/pisi/Makefile
++backends/pkgsrc/Makefile
+ backends/poldek/Makefile
+ backends/zypp/Makefile
+ data/Makefile
+@@ -678,6 +683,7 @@
+ OPKG backend: ${enable_opkg}
+ Razor backend: ${enable_razor}
+ PiSi backend: ${enable_pisi}
++ pkgsrc backend: ${enable_pkgsrc}
+ poldek backend: ${enable_poldek}
+ SMART backend: ${enable_smart}
+ URPMI backend: ${enable_urpmi}
diff --git a/pkgtools/packagekit/patches/patch-ao b/pkgtools/packagekit/patches/patch-ao
new file mode 100644
index 00000000000..c8475aefb3a
--- /dev/null
+++ b/pkgtools/packagekit/patches/patch-ao
@@ -0,0 +1,15 @@
+$NetBSD: patch-ao,v 1.1.1.1 2009/01/08 00:21:00 jmcneill Exp $
+
+--- backends/Makefile.am.orig 2009-01-07 07:54:46.000000000 -0500
++++ backends/Makefile.am
+@@ -52,6 +52,10 @@ if BACKEND_TYPE_POLDEK
+ SUBDIRS += poldek
+ endif
+
++if BACKEND_TYPE_PKGSRC
++SUBDIRS += pkgsrc
++endif
++
+ clean-local :
+ rm -f *~
+
diff --git a/pkgtools/packagekit/patches/patch-ap b/pkgtools/packagekit/patches/patch-ap
new file mode 100644
index 00000000000..69228ced857
--- /dev/null
+++ b/pkgtools/packagekit/patches/patch-ap
@@ -0,0 +1,30 @@
+$NetBSD: patch-ap,v 1.1.1.1 2009/01/08 00:21:00 jmcneill Exp $
+
+--- backends/Makefile.in.orig 2009-01-07 07:56:48.000000000 -0500
++++ backends/Makefile.in 2009-01-07 07:56:53.000000000 -0500
+@@ -44,6 +44,7 @@
+ @BACKEND_TYPE_PISI_TRUE@am__append_11 = pisi
+ @BACKEND_TYPE_ZYPP_TRUE@am__append_12 = zypp
+ @BACKEND_TYPE_POLDEK_TRUE@am__append_13 = poldek
++@BACKEND_TYPE_PKGSRC_TRUE@am__append_14 = pkgsrc
+ subdir = backends
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+@@ -68,7 +69,7 @@
+ ETAGS = etags
+ CTAGS = ctags
+ DIST_SUBDIRS = test alpm apt box conary dummy opkg razor smart urpmi \
+- yum pisi zypp poldek
++ yum pisi zypp poldek pkgsrc
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+ ACLOCAL = @ACLOCAL@
+ ALL_LINGUAS = @ALL_LINGUAS@
+@@ -309,7 +310,7 @@
+ $(am__append_4) $(am__append_5) $(am__append_6) \
+ $(am__append_7) $(am__append_8) $(am__append_9) \
+ $(am__append_10) $(am__append_11) $(am__append_12) \
+- $(am__append_13)
++ $(am__append_13) $(am__append_14)
+ all: all-recursive
+
+ .SUFFIXES: