1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
# Note that this is NOT a relocatable package
%define ver @VERSION@
%define rel SNAP
%define prefix /usr
Summary: GNOME Transfer Manager
Summary(pt): Gestor de Transfer�ncias GNOME
Summary(it): Gestore di traferimenti del GNOME
Summary(es): Gestor de Transferencias GNOME
Name: gtm
Version: %ver
Release: %rel
Copyright: GPL
Group: X11/Utilities
Source: gtm-%{PACKAGE_VERSION}.tar.gz
URL: http://camoes.rnl.ist.utl.pt/~bapm/gtm/
BuildRoot: /tmp/gtm-%{PACKAGE_VERSION}-root
Packager: Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
Requires: wget
Requires: gnome-libs >= 1.0.0
Requires: ORBit >= 0.4.0
Docdir: %{prefix}/doc
%description
GTransferManager allows the user to retrieve multiple files from the web.
These files can be retrieved in multiple parts and each part retrieved on a
separate session that the user is connected to the Internet. This is
most useful to users with dialup connections. The program performs
this tasks using wget as it's back-end.
%description -l pt
GTransferManager permite ao utilizador obter m�ltiplos ficheiros da web.
Eles podem ser obtidos em m�ltiplas partes e cada parte obtida numa diferente
sess�o em que o utilizador esta ligado � Internet. Isto � muito �til para
utilizadores com liga��es dialup. O programa executa estas tarefas usando o
wget.
%description -l it
GTransferManager permette all'utente di scaricare piu' file dal web.Questi file possono essere scaricati in piu' parti e ogni parte scaricatain una differente sessione in cui l'utente e' collegato ad Internet.Questo puo' essere utile agli utenti che hanno una connessione dial-up
con Internet. Il programma esegue i suoi compiti usando wget come back-end.
%description -l es
GTransferManager permite al usuario descargar m�ltiples ficheros de la web.
Estos ficheros pueden ser descargados en varias partes y cada parte puede ser
descargada en una sesi�n diferente en la que el usuario est� conectado a
Internet. Esto es especialmente util a los usuarions con conexiones tipo dialup
(modems). El programa realiza estas tareas utilizando el wget como herramienta
de descarga.
%changelog
* Thu Dec 23 1999 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
- Added the configuration for the sound events to the package
* Fri Sep 3 1999 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
- Change the location of sysconfdir to /etc.
* Mon May 3 1999 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
- Internationalization of spec. Portuguese, Italian and Spanish.
* Mon Apr 26 1999 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
- I didn't understand quite well the CORBA stuff. To develop CORBA clients of
gtm is only needed the idl file so the main package has also the idl file
and there is no development package.
* Sun Apr 4 1999 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
- Added the new development package that allows other programs to request
the download of files with GTransferManager
* Sat Apr 3 1999 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
- Added new directories with files to the distribution because the program
now uses corba
* Tue Mar 23 1999 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
- added portuguese translation for rpm
* Sat Feb 27 1999 Bruno Pires Marinho <bapm@camoes.rnl.ist.utl.pt>
- First try at an RPM
%prep
%setup
%build
if [ ! -f configure ]; then
CFLAGS="$RPM_OPT_FLAGS" ./autogen.sh --prefix=%{prefix} \
--with-gnome --without-debug --sysconfdir=/etc
else
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} \
--with-gnome --without-debug --sysconfdir=/etc
fi
if [ "$SMP" != "" ]; then
(make "MAKE=make -k -j $SMP"; exit 0)
make
else
make
fi
%install
rm -rf $RPM_BUILD_ROOT
make prefix=$RPM_BUILD_ROOT%{prefix} sysconfdir=$RPM_BUILD_ROOT/etc install
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-, root, root)
%doc AUTHORS COPYING ChangeLog NEWS README TODO
%{prefix}/bin/*
%{prefix}/share/*
%config /etc/*
|