Compare commits
2 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f5d5ba5099 | ||
|
|
17e9072824 |
4 changed files with 98 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -0,0 +1 @@
|
|||
/wmeyes-1.2.tar.gz
|
||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
bb687b5fea83d49b35552a181083142b wmeyes-1.2.tar.gz
|
||||
39
wmeyes.man
Normal file
39
wmeyes.man
Normal 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
57
wmeyes.spec
Normal 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.
|
||||
Loading…
Add table
Add a link
Reference in a new issue