Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
Mario Blättermann
f5d5ba5099 Removed %defattr 2011-07-18 21:22:25 +02:00
Mario Blättermann
17e9072824 Initial commit 2011-07-18 21:21:23 +02:00
4 changed files with 98 additions and 0 deletions

1
.gitignore vendored
View file

@ -0,0 +1 @@
/wmeyes-1.2.tar.gz

View file

@ -0,0 +1 @@
bb687b5fea83d49b35552a181083142b wmeyes-1.2.tar.gz

39
wmeyes.man Normal file
View file

@ -0,0 +1,39 @@
.TH "wmeyes" 1
.SH NAME
wmeyes is a dockapp with moving eyes that follow mouse movement
.SH SYNOPSIS
.B wmeyes
[\-h] [\-ws] [\-p pupclr] [\-o outclr] [\-i inclr] [\-d disp]
.SH DESCRIPTION
wmeyes is a dockapp with moving eyes that follow mouse movement.
This version also allows execition of a command by clicking the icon.
.SH OPTIONS
.TP
.B \-h
\-\-help display this help screen
.TP
.B \-w
\-\-withdrawn withdrawn window (for WindowMaker)
.TP
.B \-s
\-\-shape use shaped window
.TP
.B \-p
\-\-pupil set the color of the eyes' pupils (default #009966)
.TP
.B \-o
\-\-outside set the outside color of the eyes (default black)
.TP
.B \-i
\-\-inside et the inside color of the eyes (default white)
.TP
.B \-t
\-\-time set the interation time in msec (default 125)
.TP
.B \-e
\-\-exec command to run
.TP
.B \-d
\-\-display set the X display to use (this may be set multiple times)
.SH "SEE ALSO"
.I /usr/share/doc/wmeyes/README

57
wmeyes.spec Normal file
View file

@ -0,0 +1,57 @@
Summary: Dockapp with moving eyes that follow mouse movement
Summary(de): Dockapp mit einem Augenpaar, das dem Mauszeiger folgt
Name: wmeyes
Version: 1.2
Release: 3%{?dist}
License: MIT
Group: User Interface/X
URL: http://www.bstern.org/%{name}/
Source0: http://bstern.org/%{name}/%{name}-%{version}.tar.gz
Source1: %{name}.man
BuildRequires: libXext-devel
BuildRequires: libXmu-devel
BuildRequires: libXpm-devel
BuildRequires: xmkmf
%description
wmeyes is a dockapp with moving eyes that follow mouse movement.
This version also allows execution of a command by clicking the icon.
%description -l de
wmeyes ist ein Dockapp mit einem Augenpaar, das den Bewegungen des Mauszeigers
folgt. Diese Version ermöglicht die Ausführung eines Befehls durch Anklicken
des Symbols.
%prep
%setup -q
%build
cp -p %{SOURCE1} .
xmkmf
make CFLAGS='%{optflags}' %{?_smp_mflags}
%install
mkdir -p $RPM_BUILD_ROOT%{_bindir}
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
install -p -m 755 wmeyes $RPM_BUILD_ROOT%{_bindir}/
install -p -m 644 wmeyes.man $RPM_BUILD_ROOT%{_mandir}/man1/wmeyes.1
%files
%{_bindir}/%{name}
%{_mandir}/man1/*
%doc ChangeLog README LICENSE
%changelog
* Sun Jul 17 2011 Mario Blättermann <mariobl@fedoraproject.org> 1.2-3
- First packaging for Fedora.
- Fixed BuildRequires.
- Added German summary and description.
- Added CFLAGS.
* Tue Mar 21 2006 J. Krebs <rpm_speedy@yahoo.com> - 1.2-2
- changed prefix path to /usr.
* Thu Mar 24 2005 J. Krebs <rpm_speedy@yahoo.com> - 1.2-1
- Initial build.