This commit is contained in:
Florian Rivoal 2010-12-16 14:18:52 +09:00
parent 23d9b4720d
commit 3084a9baad
22 changed files with 17 additions and 303 deletions

View file

@ -1,5 +1,3 @@
# $Id$
SUBDIRS = \ SUBDIRS = \
panel-plugin \ panel-plugin \
themes \ themes \

5
README
View file

@ -2,5 +2,6 @@
eyes is a xfce4 panel plugin that adds eyes which watch your every step. eyes is a xfce4 panel plugin that adds eyes which watch your every step.
Scary! Scary!
Portions of the xfce4-eyes code were taken from geyes and are licensed under Portions of the xfce4-eyes code were taken from geyes. These, and the rest of
the terms of the GNU General public license, see the COPYING.GPL file. the code are licensed under the terms of the GNU General public license; see
the COPYING file.

View file

@ -1,32 +1,19 @@
#!/bin/sh #!/bin/sh
# #
# $Id: autogen.sh 1972 2006-09-06 08:21:54Z nick $ # Copyright (c) 2002-2010
# The Xfce development team. All rights reserved.
# #
export XDT_AUTOGEN_REQUIRED_VERSION="4.7.0"
(type xdt-autogen) >/dev/null 2>&1 || { (type xdt-autogen) >/dev/null 2>&1 || {
cat >&2 <<EOF cat >&2 <<EOF
autogen.sh: You don't seem to have the Xfce development tools installed on autogen.sh: You don't seem to have the Xfce development tools installed on
your system, which are required to build this software. your system, which are required to build this software.
Please install the xfce4-dev-tools package first, it is available Please install the xfce4-dev-tools package first, available from
from http://www.xfce.org/. http://xfce.org/~benny/projects/xfce4-dev-tools/.
EOF EOF
exit 1 exit 1
} }
# verify that po/LINGUAS is present xdt-autogen $@
(test -f po/LINGUAS) >/dev/null 2>&1 || {
cat >&2 <<EOF
autogen.sh: The file po/LINGUAS could not be found. Please check your snapshot
or try to checkout again.
EOF
exit 1
}
# substitute revision and linguas
linguas=`sed -e '/^#/d' po/LINGUAS`
revision=`LC_ALL=C svn info $0 | awk '/^Revision: / {printf "%05d\n", $2}'`
sed -e "s/@LINGUAS@/${linguas}/g" \
-e "s/@REVISION@/${revision}/g" \
< "configure.in.in" > "configure.in"
exec xdt-autogen $@

View file

@ -1,5 +1,3 @@
dnl $Id$
dnl
dnl xfce4-eyes-plugin - eyes that spy on you dnl xfce4-eyes-plugin - eyes that spy on you
dnl dnl
@ -10,8 +8,8 @@ m4_define([eyes_version_major], [4])
m4_define([eyes_version_minor], [4]) m4_define([eyes_version_minor], [4])
m4_define([eyes_version_micro], [0]) m4_define([eyes_version_micro], [0])
m4_define([eyes_version_build], [r@REVISION@]) m4_define([eyes_version_build], [r@REVISION@])
m4_define([eyes_version_tag], [svn]) m4_define([eyes_version_tag], [git])
m4_define([eyes_version], [eyes_version_major().eyes_version_minor().eyes_version_micro()ifelse(eyes_version_tag(), [svn], [eyes_version_tag()-eyes_version_build()], [eyes_version_tag()])]) m4_define([eyes_version], [eyes_version_major().eyes_version_minor().eyes_version_micro()ifelse(eyes_version_tag(), [git], [eyes_version_tag()-eyes_version_build()], [eyes_version_tag()])])
dnl *************************** dnl ***************************
dnl *** Initialize autoconf *** dnl *** Initialize autoconf ***
@ -21,7 +19,6 @@ AC_COPYRIGHT([Copyright (c) 2006-2007
AC_INIT([xfce4-eyes-plugin], [eyes_version], [http://bugzilla.xfce.org/], [xfce4-eyes-plugin]) AC_INIT([xfce4-eyes-plugin], [eyes_version], [http://bugzilla.xfce.org/], [xfce4-eyes-plugin])
AC_PREREQ([2.50]) AC_PREREQ([2.50])
AC_CANONICAL_TARGET() AC_CANONICAL_TARGET()
AC_REVISION([$Id])
dnl *************************** dnl ***************************
dnl *** Initialize automake *** dnl *** Initialize automake ***
@ -71,7 +68,6 @@ XDT_FEATURE_DEBUG()
AC_OUTPUT([ AC_OUTPUT([
Makefile Makefile
xfce4-eyes.spec
po/Makefile.in po/Makefile.in
panel-plugin/Makefile panel-plugin/Makefile
icons/Makefile icons/Makefile

View file

@ -1,5 +1,3 @@
# $Id$
iconsdir = $(datadir)/icons/hicolor/48x48/apps iconsdir = $(datadir)/icons/hicolor/48x48/apps
icons_DATA = \ icons_DATA = \
xfce4-eyes.png xfce4-eyes.png

View file

@ -1,5 +1,3 @@
# $Id$
SUBDIRS = \ SUBDIRS = \
48x48 48x48

View file

@ -1,5 +1,3 @@
# $Id$
INCLUDES = \ INCLUDES = \
-I$(top_srcdir) \ -I$(top_srcdir) \
-DPACKAGE_LOCALE_DIR=\"$(localedir)\" \ -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \

View file

@ -1,6 +1,4 @@
/* $Id$ /* Copyright (c) Benedikt Meurer <benedikt.meurer@unix-ag.uni-siegen.de>>
*
* Copyright (c) Benedikt Meurer <benedikt.meurer@unix-ag.uni-siegen.de>>
* Copyright (c) Danny Milosavljevic <danny_milo@gmx.net> * Copyright (c) Danny Milosavljevic <danny_milo@gmx.net>
* Copyright (c) Dave Camp * Copyright (c) Dave Camp
* Copyright (c) Davyd Madeley <davyd@madeley.id.au> * Copyright (c) Davyd Madeley <davyd@madeley.id.au>

View file

@ -1,6 +1,4 @@
/* $Id$ /* Copyright (C) 1999 Dave Camp <dave@davec.dhs.org>
*
* Copyright (C) 1999 Dave Camp <dave@davec.dhs.org>
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by

View file

@ -1,6 +1,4 @@
/* $Id$ /* Copyright (C) 1999 Dave Camp <dave@davec.dhs.org>
*
* Copyright (C) 1999 Dave Camp <dave@davec.dhs.org>
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by

View file

@ -1,6 +1,4 @@
/* $Id$ /* Copyright (C) 1999 Dave Camp <dave@davec.dhs.org>
*
* Copyright (C) 1999 Dave Camp <dave@davec.dhs.org>
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by

View file

@ -1,175 +0,0 @@
2009-08-08 Mike Massonnet <mmassonnet@xfce.org>
* ast.po: Asturian translation added (Marcos Alvarez Costales)
2009-07-24 Gabor Kelemen <kelemeng@gnome.hu>
* hu.po: Translation updated.
2009-05-29 Mike Massonnet <mmassonnet@xfce.org>
* ur_PK.po: Urdu Pakistan translation update (Muhammad Ali Makki)
* ur.po: Urdu translation update (Muhammad Ali Makki)
2009-04-16 Mike Massonnet <mmassonnet@xfce.org>
* gl.po: Galician translation update (Leandro Regueiro)
2009-03-14 Maximilian Schleiss <maximilian@xfce.org>
* gl.po: Galician translation update (Leandro Regueiro)
2009-03-05 Mike Massonnet <mmassonnet@xfce.org>
* pt.po: Renamed pt_PT.po to pt.po (bug #4574)
2009-03-05 Mike Massonnet <mmassonnet@xfce.org>
* nb.po: Renamed nb_NO.po to nb.po (bug #4574)
2008-12-13 Alexander Toresson <eulex@xfce.org>
* sv.po: Swedish translation update (Daniel Nylander)
2008-12-13 Maximilian Schleiss <maximilian@xfce.org>
* zh_CN.po: Simplified Chinese translation update (Hunt Xu)
2008-11-16 Eren Türkay <erenturkay@xfce.org>
* tr.po: Turkish translation update (Gökmen Görgen)
2008-11-12 Piarres Beobide <pi@beobide.net>
* eu.po: Basque translation update
2008-11-09 Maximilian Schleiss <maximilian@xfce.org>
* es.po: Spanish translation update (Abel Martín)
* sq.po: Albanian translation update (Besnik Bleta)
2008-10-11 Lars Nielsen <lars@mit-web.dk>
* da.po: Danish translation update
2008-07-14 Maximilian Schleiss <maximilian@xfce.org>
* gl.po: Galician translation update (Leandro Regueiro)
2008-06-25 Maximilian Schleiss <maximilian@xfce.org>
* id.po, LINGUAS: Indonesian translation added (Andhika Padmawan)
2008-05-27 Mike Massonnet <mmassonnet@xfce.org>
* da.po, LINGUAS: Add Danish translation (Jens Hyllegaard)
2008-05-14 Mike Massonnet <mmassonnet@xfce.org>
* ja.po: Update Japanese translation (Nobuhiro Iwamatsu)
2008-05-10 Stavros Giannouris <stavrosg@hellug.gr>
* el.po, LINGUAS: Added Greek translation by Evaggelos Balaskas
2007-11-18 Maximilian Schleiss <maximilian@xfce.org>
* lv.po: Latvian translation added
by Rihards Priedītis <rprieditis@inbox.lv>
2007-11-15 Mike Massonnet <mmassonnet@xfce.org>
* ur.po: Update translation by Muhammad Ali Makki <makki.ma@gmail.com>
* pk.po, ur.po: Rename pk.po to ur.po.
2007-10-28 Mike Massonnet <mmassonnet@xfce.org>
* pk.po: Add new translation by محمد علي المكي <makki.ma@gmail.com>
2007-08-25 Og Maciel <ogmaciel@gnome.org>
* pt_BR: Brazilian Portuguese translation updated
by Vladimir Melo <vladimirmelo@foresightlinux.org>
2007-06-20 Maximilian Schleiss <maximilian@xfce.org>
* pt_PT: European Portuguese translation updated
by Nuno Miguel <nunis@netcabo.pt>
2007-06-13 Maximilian Schleiss <maximilian@xfce.org>
* it.po: Updated the translation
by Roberto Pariset <robdebian@gmail.com>
2007-03-31 Pau Rul-lan Ferragut <paurullan@bulma.net>
* gb.po: British translation
by Jeff Bailes <thepizzaking@gmail.com>
2007-03-13 Maxim Dziumanenko <dziumanenko@gmail.com>
* uk.po: Update Ukrainian translation by Dmitry Nikitin
2007-02-02 Maximilian Schleiss <maximilian@xfce.org>
* fr.po: Added the Albanian translation by
Besnik Bleta <besnik@programeshqip.org>
2007-01-20 Jari Rahkonen <jari.rahkonen@pp1.inet.fi>
* fi.po: Updated Finnish translation
2007-01-20 Alexander Nyakhaychyk <nyakhaychyk@gmail.com>
* be.po: Updated Belarusian Translation
2006-12-15 Pau Rul-lan Ferragut <paurullan@bulma.net>
* ca.po: Updated Catalan translation
by Carles Muñoz Gorriz <carlesmu@ya.com>
2006-12-11 Maximilian Schleiss <maximilian@xfce.org>
* ko.po: Updated the Korean translation by
ByungHyun Choi <byunghyun.choi@debianusers.org>
2006-11-03 Adriano Winter Bess <adriano@xfce.org>
* pt_BR.po: Updated brazilian portuguese translations.
2006-10-03 Jean-François Wauthy <pollux@xfce.org>
* nl.po: Updated Dutch translations by Stephan Arts <psybsd@gmail.com>
2006-09-23 Jean-François Wauthy <pollux@xfce.org>
* cs.po: Updated Czech translations by Michal Varady
<miko.vaji@gmail.com>
* de.po: Updated German translations by Ronny Steiner
<sir.steiner@gmx.de>
* fr.po: Updated French translations by Maximilian Schleiss
<maximilian@xfce.org>
2006-09-19 Piarres Beobide <pi@beobide.net>
* eu.po: Updated Basque trasnslations
2006-09-17 Jean-François Wauthy <pollux@xfce.org>
* pl.po: Updated Polish translations
2006-09-07 Sylvain Vedrenne <gnu_sylvain@xfce.org>
* eo.po: Added Esperanto translations by Jarbas Araujo
<jarbasaraujojr@yahoo.com.br>
2005-07-17 Danny Milosavljevic <dannym@xfce.org>
* ChangeLog, Makefile.in.in, POTFILES.in, POTFILES.in~, ar.po,
az.po, be.po, bg.po, bn_IN.po, ca.po, cs.po, de.po, en_GB.po,
es.po, es_MX.po, et.po, eu.po, fa.po, fi.po, fr.po, gu.po,
he.po, hi.po, hu.po, it.po, ja.po, ko.po, lt.po, mr.po, ms.po,
nb_NO.po, nl.po, pa.po, pl.po, pt_BR.po, pt_PT.po, ro.po,
ru.po, sk.po, sv.po, ta.po, tr.po, uk.po, vi.po,
xfce4-toys.pot, zh_CN.po, zh_TW.po: add translations

View file

@ -1,2 +0,0 @@
# set of available languages (in alphabetic order)
ar ast az be bg bn_IN ca cs da de el en_GB es es_MX et eu fa fi fr gl gu he hi hu id it ja ko lt lv mr ms nl nb pa pl pt_BR pt ro ru sv sk ta tr uk ur ur_PK vi zh_CN zh_TW

View file

@ -1,29 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-11 15:00+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../panel-plugin/eyes.c:288 ../panel-plugin/eyes.desktop.in.in.h:1
msgid "Eyes"
msgstr ""
#: ../panel-plugin/eyes.c:304
msgid "_Select a theme:"
msgstr ""
#: ../panel-plugin/eyes.desktop.in.in.h:2
msgid "Eyes that spy on you"
msgstr ""

View file

@ -1,5 +1,3 @@
# $Id$
Bizarredir = $(datadir)/xfce4/eyes/themes/Bizarre Bizarredir = $(datadir)/xfce4/eyes/themes/Bizarre
Bizarre_DATA = \ Bizarre_DATA = \

View file

@ -1,5 +1,3 @@
# $Id$
Bloodshotdir = $(datadir)/xfce4/eyes/themes/Bloodshot Bloodshotdir = $(datadir)/xfce4/eyes/themes/Bloodshot
Bloodshot_DATA = \ Bloodshot_DATA = \

View file

@ -1,5 +1,3 @@
# $Id$
Default_tinydir = $(datadir)/xfce4/eyes/themes/Default-tiny Default_tinydir = $(datadir)/xfce4/eyes/themes/Default-tiny
Default_tiny_DATA = \ Default_tiny_DATA = \

View file

@ -1,5 +1,3 @@
# $Id$
Defaultdir = $(datadir)/xfce4/eyes/themes/Default Defaultdir = $(datadir)/xfce4/eyes/themes/Default
Default_DATA = \ Default_DATA = \

View file

@ -1,5 +1,3 @@
# $Id$
Horriddir = $(datadir)/xfce4/eyes/themes/Horrid Horriddir = $(datadir)/xfce4/eyes/themes/Horrid
Horrid_DATA = \ Horrid_DATA = \

View file

@ -1,5 +1,3 @@
# $Id$
SUBDIRS = \ SUBDIRS = \
Bizarre \ Bizarre \
Bloodshot \ Bloodshot \

View file

@ -1,5 +1,3 @@
# $Id$
Tangodir = $(datadir)/xfce4/eyes/themes/Tango Tangodir = $(datadir)/xfce4/eyes/themes/Tango
Tango_DATA = \ Tango_DATA = \

View file

@ -1,34 +0,0 @@
Summary: Eyes that spy on you
Name: xfce4-eyes
Version: @VERSION@
Release: 1
License: BSD
URL: http://www.xfce.org/
Source0: %{name}-%{version}.tar.gz
Group: User Interface/Desktops
BuildRoot: %{_tmppath}/%{name}-root
Requires: xfce4-panel >= @XFCE4_PANEL_REQUIRED_VERSION@
BuildRequires: xfce4-panel >= @XFCE4_PANEL_REQUIRED_VERSION@
%description
xfce4-eyes is an "xeyes"/geyes rip-off
%prep
%setup -q
%build
%configure
make
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir}
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc README ChangeLog NOTES INSTALL COPYING AUTHORS
%{_libdir}/*
%{_datadir}/*