Compare commits
No commits in common. "rawhide" and "F-13-split" have entirely different histories.
rawhide
...
F-13-split
6 changed files with 102 additions and 1 deletions
1
.cvsignore
Normal file
1
.cvsignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
amora-server-1.1.tar.gz
|
||||
21
Makefile
Normal file
21
Makefile
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# Makefile for source rpm: amora
|
||||
# $Id: Makefile,v 1.1 2008/01/17 17:17:23 kevin Exp $
|
||||
NAME := amora
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
77
amora.spec
Normal file
77
amora.spec
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
Name: amora
|
||||
Version: 1.1
|
||||
Release: 5%{?dist}
|
||||
Summary: A mobile remote assistant
|
||||
|
||||
Group: Applications/Communications
|
||||
License: GPLv2+
|
||||
URL: http://code.google.com/p/amora
|
||||
Source0: http://amora.googlecode.com/files/amora-server-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: libX11 libXtst-devel bluez-libs-devel imlib2-devel dbus-devel
|
||||
#Requires:
|
||||
|
||||
%description
|
||||
Amora is an application that enables you to control your PC desktop using a
|
||||
cellphone. It uses bluetooth to send mouse and keyboard events to the
|
||||
graphical session. With it you can control your slides in OpenOffice.org,
|
||||
movies or any other application. Amora also has a screenshot feature, where
|
||||
you can see a thumbnail in the cellphone screen of the currently focused
|
||||
window in your desktop.
|
||||
|
||||
In order to use amora, you need a mobile phone with amora-client
|
||||
installed and running. The current client is implemented in Python
|
||||
for S60 (Nokia cellphones) and is available at
|
||||
http://code.google.com/p/amora/
|
||||
|
||||
%prep
|
||||
%setup -q -n amora-server-%{version}
|
||||
|
||||
|
||||
%build
|
||||
%configure
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -p"
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc README COPYING
|
||||
%{_bindir}/amorad
|
||||
%{_mandir}/man7/amora.7.gz
|
||||
%{_mandir}/man8/amorad.8.gz
|
||||
|
||||
%changelog
|
||||
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
|
||||
* Fri Jan 23 2009 Allisson Azevedo <allisson@gmail.com> 1.1-3
|
||||
- Rebuild
|
||||
|
||||
* Thu Sep 11 2008 - Bastien Nocera <bnocera@redhat.com> 1.1-2
|
||||
- Rebuild
|
||||
|
||||
* Sat Sep 6 2008 Allisson Azevedo <allisson@gmail.com> 1.1-1
|
||||
- Update to 1.1
|
||||
- Added dbus-devel in BuildRequires
|
||||
|
||||
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.0-2
|
||||
- Autorebuild for GCC 4.3
|
||||
|
||||
* Tue Jan 15 2008 Allisson Azevedo <allisson@gmail.com> 1.0-1
|
||||
- Update to 1.0
|
||||
|
||||
* Mon Dec 17 2007 Allisson Azevedo <allisson@gmail.com> 0.9-1
|
||||
- Initial RPM release
|
||||
|
|
@ -1 +0,0 @@
|
|||
Orphaned for 6+ weeks
|
||||
2
import.log
Normal file
2
import.log
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
amora-1_1-1_fc9:HEAD:amora-1.1-1.fc9.src.rpm:1220722039
|
||||
amora-1_1-3_fc10:HEAD:amora-1.1-3.fc10.src.rpm:1232710340
|
||||
1
sources
Normal file
1
sources
Normal file
|
|
@ -0,0 +1 @@
|
|||
274d53f40feabb09563eb90ae1c1b38f amora-server-1.1.tar.gz
|
||||
Reference in a new issue