* Improve configure and make files.
* Bump version for release. * Set svn keywords. (Old svn revision: 2397)
This commit is contained in:
parent
9b84ce6f4a
commit
9a6c68184a
17 changed files with 141 additions and 34 deletions
|
|
@ -1,3 +1,10 @@
|
|||
# $Id$
|
||||
|
||||
INCLUDES = \
|
||||
-I$(top_srcdir) \
|
||||
-DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
|
||||
-DTHEMESDIR=\"$(datadir)/xfce4/eyes/themes\"
|
||||
|
||||
plugindir = $(libexecdir)/xfce4/panel-plugins
|
||||
plugin_PROGRAMS = xfce4-eyes-plugin
|
||||
|
||||
|
|
@ -8,12 +15,9 @@ xfce4_eyes_plugin_SOURCES = \
|
|||
themes.c
|
||||
|
||||
xfce4_eyes_plugin_CFLAGS = \
|
||||
-I$(top_srcdir) \
|
||||
$(LIBXFCEGUI4_CFLAGS) \
|
||||
$(LIBXFCE4PANEL_CFLAGS) \
|
||||
-DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
|
||||
-DTHEMESDIR=\"$(datadir)/xfce4/eyes/themes\"
|
||||
|
||||
$(LIBXFCE4PANEL_CFLAGS)
|
||||
|
||||
xfce4_eyes_plugin_LDADD = \
|
||||
$(LIBXFCE4PANEL_LIBS) \
|
||||
$(LIBXFCEGUI4_LIBS)
|
||||
|
|
@ -33,3 +37,4 @@ CLEANFILES = \
|
|||
$(desktop_in_files) \
|
||||
$(desktop_DATA)
|
||||
|
||||
# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
/*
|
||||
/* $Id$
|
||||
*
|
||||
* Copyright (c) Benedikt Meurer <benedikt.meurer@unix-ag.uni-siegen.de>>
|
||||
* Copyright (c) Danny Milosavljevic <danny_milo@gmx.net>
|
||||
* Copyright (c) Dave Camp
|
||||
|
|
|
|||
|
|
@ -1,5 +1,21 @@
|
|||
|
||||
|
||||
/* $Id$
|
||||
*
|
||||
* Copyright (C) 1999 Dave Camp <dave@davec.dhs.org>
|
||||
*
|
||||
* 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 2 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, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef __EYES_H__
|
||||
#define __EYES_H__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
/*
|
||||
/* $Id$
|
||||
*
|
||||
* Copyright (C) 1999 Dave Camp <dave@davec.dhs.org>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
|
@ -14,7 +15,6 @@
|
|||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,22 @@
|
|||
/* $Id$
|
||||
*
|
||||
* Copyright (C) 1999 Dave Camp <dave@davec.dhs.org>
|
||||
*
|
||||
* 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 2 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, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef __THEMES_H__
|
||||
#define __THEMES_H__
|
||||
#include <gtk/gtk.h>
|
||||
|
|
|
|||
Reference in a new issue