* client/Makefile.am:

* client/gabriel-client.c:
* client/gabriel-client.h:
* client/gabriel-main.c:
* client/gabriel-session.c:
* client/gabriel-session.h:
* server/Makefile.am:
* server/gabriel-dbus.conf:
* server/gabriel-server-start.in:
* server/gabriel-server-stop:
  - Remove server side as it's no more needed.
  - Rename client to src as gabriel is just a proxy now.


git-svn-id: https://gabriel.svn.sourceforge.net/svnroot/gabriel@13 841437c2-2226-0410-8ced-e7c76d862a31
This commit is contained in:
zeenix 2007-01-29 12:52:25 +00:00
parent 53559028f9
commit 41acd25dbe
11 changed files with 15 additions and 106 deletions

View File

@ -1,3 +1,18 @@
2007-01-29 Zeeshan Ali <zeenix@gstreamer.net>
* client/Makefile.am:
* client/gabriel-client.c:
* client/gabriel-client.h:
* client/gabriel-main.c:
* client/gabriel-session.c:
* client/gabriel-session.h:
* server/Makefile.am:
* server/gabriel-dbus.conf:
* server/gabriel-server-start.in:
* server/gabriel-server-stop:
- Remove server side as it's no more needed.
- Rename client to src as gabriel is just a proxy now.
2007-01-29 Zeeshan Ali <zeenix@gstreamer.net>
* client/gabriel-main.c: (main): Fix a small typo.

View File

@ -1,34 +0,0 @@
#
# server/Makefile.am
#
# Part of Gabriel project
# Copyright (C) 2007, Zeeshan Ali <zeenix@gstreamer.net>
#
# Gabriel 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 2 of the License, or
# (at your option) any later version.
#
# Gabriel 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 Gabriel; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
dist_bin_SCRIPTS = gabriel-server-start
bin_SCRIPTS = gabriel-server-stop
sysconf_DATA = gabriel-dbus.conf
CLEANFILES = gabriel-server-start
gabriel-server-start: Makefile gabriel-server-start.in
sed -e 's,@SYSCONF_DIR\@,$(sysconfdir),g' \
-e 's,gabriel-server-start.in,gabriel-server-start,g' \
$(srcdir)/gabriel-server-start.in > $(top_builddir)/server/gabriel-server-start
chmod +x $(top_builddir)/server/gabriel-server-start
EXTRA_DIST = $(dist_bin_SCRIPTS) gabriel-server-start.in gabriel-server-stop gabriel-dbus.conf

View File

@ -1,10 +0,0 @@
<!-- This configuration file controls the per-user-login-session message bus.
Add a session-local.conf and edit that rather than changing this
file directly. -->
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-Bus Bus Configuration 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
<busconfig>
<include>/etc/dbus-1/session.conf</include>
<listen>unix:path=/tmp/gabriel</listen>
</busconfig>

View File

@ -1,31 +0,0 @@
#!/bin/sh
#
# server/gabriel-server-start.in
#
# Part of Gabriel project
# Copyright (C) 2007, Zeeshan Ali <zeenix@gstreamer.net>
#
# Gabriel 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 2 of the License, or
# (at your option) any later version.
#
# Gabriel 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 Gabriel; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
set -e
PID_FILE=${1:-"/tmp/gabriel-server.pid"}
if test ! -r ${PID_FILE}; then
/usr/bin/dbus-daemon --config-file=@SYSCONF_DIR@/gabriel-dbus.conf \
--fork --print-pid > ${PID_FILE}
fi
exit 0

View File

@ -1,31 +0,0 @@
#!/bin/sh
#
# server/gabriel-server-stop
#
# Part of Gabriel project
# Copyright (C) 2007, Zeeshan Ali <zeenix@gstreamer.net>
#
# Gabriel 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 2 of the License, or
# (at your option) any later version.
#
# Gabriel 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 Gabriel; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
set -e
PID_FILE=${1:-"/tmp/gabriel-server.pid"}
if test -r ${PID_FILE}; then
/bin/kill `cat ${PID_FILE}`
rm ${PID_FILE}
fi
exit 0