grim/guifications3

b0f5c9e84b66
Parents b4f940405b2e
Children 61b6b132ace3
removing guifications-daemon-fuse since right now it's not really helpful or useful
--- a/guifications-daemon-fuse/Makefile.am Sat Sep 19 00:35:35 2009 -0500
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +0,0 @@
-SUBDIRS=po src
-
-DISTCLEANFILES=\
- intltool-extract \
- intltool-update \
- intltool-merge
-
-EXTRA_DIST=\
- AUTHORS \
- NEWS \
- INSTALL \
- COPYING \
- README \
- ChangeLog \
- configure.ac \
- po/ChangeLog
-
-$(OBJECTS): libtool
-
-libtool: $(LIBTOOL_DEPS)
- $(SHELL) ./config.status --recheck
-
--- a/guifications-daemon-fuse/autogen.sh Sat Sep 19 00:35:35 2009 -0500
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,30 +0,0 @@
-#!/bin/sh
-# Guifications - The end-all, be-all notification framework
-# Copyright (C) 2003-2009 Gary Kramlich <grim@reaperworld.com>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-PACKAGE="gfd-fuse"
-
-which gflib-autogen.sh || {
- echo "You need to install gflib to run autogen"
- exit 1
-}
-
-. gflib-autogen.sh
-
-add_default_commands
-
-autogen
-
--- a/guifications-daemon-fuse/configure.ac Sat Sep 19 00:35:35 2009 -0500
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,136 +0,0 @@
-dnl Process this file with autoconf to create configure.
-
-dnl ################################################################
-dnl # Initialize autoconf
-dnl ################################################################
-AC_INIT(guifications-daemon-fuse, 0.0.1dev, guifications-devel@lists.guifications.org)
-AC_PREREQ(2.50)
-AC_CANONICAL_SYSTEM
-AC_CONFIG_SRCDIR(config.h.in)
-AC_COPYRIGHT([Copyright 2003-2009 Gary Kramlich])
-
-dnl ################################################################
-dnl # Initialize automake
-dnl ################################################################
-AM_INIT_AUTOMAKE([foreign dist-bzip2])
-
-dnl # disable the static library
-AC_DISABLE_STATIC
-
-dnl ################################################################
-dnl # Configuration file
-dnl ################################################################
-AM_CONFIG_HEADER(config.h)
-
-dnl # Stash configure args
-AC_DEFINE_UNQUOTED(CONFIG_ARGS, "$ac_configure_args", [configure arguments])
-
-dnl #######################################################################
-dnl # Setup libtool
-dnl #######################################################################
-AM_PROG_LIBTOOL
-LIBTOOL="$LIBTOOL --silent"
-
-dnl #######################################################################
-dnl # Our header
-dnl #######################################################################
-
-AH_TOP([ /* our header */
-#ifndef CONFIG_H
-#define CONFIG_H
-])
-AH_BOTTOM([
-#endif /* CONFIG_H */
-])
-
-AC_MSG_CHECKING([for wasted cpu cycles])
-AC_MSG_RESULT([yes])
-
-dnl #######################################################################
-dnl # intltool
-dnl #######################################################################
-AC_PROG_INTLTOOL
-
-GETTEXT_PACKAGE=guifications-web
-AC_SUBST(GETTEXT_PACKAGE)
-AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, ["$GETTEXT_PACKAGE"], [Define the gettext package to be used])
-
-ALL_LINGUAS=""
-AM_GLIB_GNU_GETTEXT
-
-dnl #######################################################################
-dnl # Look for the C compiler
-dnl #######################################################################
-CFLAGS_save="$CFLAGS"
-AC_PROG_CC
-CFLAGS="$CFLAGS_save"
-
-AC_ARG_ENABLE(debug, [ --enable-debug compile with debugging support],,enable_debug=no)
-if test "x$enable_debug" = "xyes" ; then
- AC_DEFINE(DEBUG, 1, [Define if debugging is enabled.])
-
- if test "x$GCC" = "xyes"; then
- CFLAGS="$CFLAGS -Wall -g3"
- fi
-fi
-AC_SUBST(CFLAGS)
-
-dnl #######################################################################
-dnl # check for gflib
-dnl #######################################################################
-PKG_CHECK_MODULES(GFLIB, gflib)
-AC_SUBST(GFLIB_LIBS)
-AC_SUBST(GFLIB_CFLAGS)
-
-GFLIB_GENHEADER=`pkg-config --variable=gflib_genheader gflib`
-AC_SUBST(GFLIB_GENHEADER)
-
-dnl #######################################################################
-dnl # check for gfd and grab it's plugin dir
-dnl #######################################################################
-PKG_CHECK_MODULES(GFD, guifications-daemon)
-AC_SUBST(GFD_LIBS)
-AC_SUBST(GFD_CFLAGS)
-
-if test x"${prefix}" = x"NONE" ; then
- GFD_PLUGIN_DIR=`pkg-config --variable=plugin_dir guifications-daemon`
-else
- GFD_PLUGIN_DIR="${prefix}/lib/guifications-daemon/"
-fi
-
-AC_SUBST(GFD_PLUGIN_DIR)
-
-dnl #######################################################################
-dnl # check for glib and other glib dependencies
-dnl #######################################################################
-PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.6.0 gobject-2.0 >= 2.6.0)
-AC_SUBST(GLIB_CFLAGS)
-AC_SUBST(GLIB_LIBS)
-
-dnl #######################################################################
-dnl # FUSE Stuff
-dnl #######################################################################
-PKG_CHECK_MODULES(FUSE, fuse)
-AC_SUBST(FUSE_CFLAGS)
-AC_SUBST(FUSE_LIBS)
-
-dnl #######################################################################
-dnl # Finish up
-dnl #######################################################################
-AC_OUTPUT([Makefile
- po/Makefile.in
- src/Makefile
- ])
-
-dnl #######################################################################
-dnl # Ouput!!
-dnl #######################################################################
-echo;
-echo AC_PACKAGE_NAME AC_PACKAGE_VERSION Configuration complete
-echo;
-echo Debugging enabled....................: $enable_debug
-echo;
-echo guifications-daemon plugin directory.: $GFD_PLUGIN_DIR
-echo;
-echo Type make to compile
-echo;
--- a/guifications-daemon-fuse/src/Makefile.am Sat Sep 19 00:35:35 2009 -0500
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,26 +0,0 @@
-EXTRA_DIST =
-
-gfdfusedir = $(GFD_PLUGIN_DIR)
-
-gfdfuse_LTLIBRARIES = guifications-daemon-fuse.la
-
-guifications_daemon_fuse_la_SOURCES = \
- guifications-daemon-fuse.c
-
-guifications_daemon_fuse_la_LIBADD = \
- $(FUSE) \
- $(GFD_LIBS) \
- $(GFLIB_LIBS) \
- $(GLIB_LIBS)
-
-guifications_daemon_fuse_la_LDFLAGS = -avoid-version -module
-
-INCLUDES = -I$(top_srcdir)
-
-AM_CPPFLAGS = \
- -DLOCALEDIR=\"$(datadir)/locale\" \
- $(FUSE_CFLAGS) \
- $(GFD_CFLAGS) \
- $(GFLIB_CFLAGS) \
- $(GLIB_CFLAGS)
-
--- a/guifications-daemon-fuse/src/guifications-daemon-fuse.c Sat Sep 19 00:35:35 2009 -0500
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,63 +0,0 @@
-/*
- * Guifications - The end-all, be-all notification framework
- * Copyright (C) 2003-2009 Gary Kramlich <grim@reaperworld.com>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif /* HAVE_CONFIG_H */
-
-#include <gflib/gf_lib.h>
-#include <gflib/gf_intl.h>
-
-/******************************************************************************
- * Globals
- *****************************************************************************/
-
-/******************************************************************************
- * Plugin Stuff
- *****************************************************************************/
-G_MODULE_EXPORT gboolean
-gf_native_plugin_load(GfNativePlugin *plugin) {
-#ifdef ENABLE_NLS
- bindtextdomain(GETTEXT_PACKAGE, LOCALEDIR);
-# ifdef HAVE_BIND_TEXTDOMAIN_CODESET
- bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
-# endif /* HAVE_BIND_TEXTDOMAIN_CODESET */
-#endif /* ENABLE_NLS */
-
- return TRUE;
-}
-
-G_MODULE_EXPORT gboolean
-gf_native_plugin_unload(GfNativePlugin *plugin) {
- return TRUE;
-}
-
-static GfPluginInfo info = {
- GF_NATIVE_PLUGIN_ABI_VERSION,
- PACKAGE_NAME,
- PACKAGE_VERSION,
- N_("FUSE Interface for Guifications"),
- N_("This is a daemon plugin for monitoring via a file system mount."),
- "Gary Kramlich <grim@reaperworld.com>",
- "http://www.guifications.org/",
-};
-
-G_MODULE_EXPORT GfPluginInfo *
-gf_native_plugin_query(GfPlugin *plugin) {
- return &info;
-}
-