Compare commits
6 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d415312d03 | ||
|
|
8f8e3ac150 | ||
|
|
dba55e59fc | ||
|
|
e1365f0b6e | ||
|
|
74a0d90873 | ||
| aec55984ea |
6 changed files with 167 additions and 21 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
vidalia-0.1.15.tar.gz
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: vidalia
|
||||
# $Id$
|
||||
NAME := vidalia
|
||||
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 $$/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)
|
||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
005afad126dc6142d7748ec185d9fafe vidalia-0.1.15.tar.gz
|
||||
12
vidalia.desktop
Normal file
12
vidalia.desktop
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Encoding=UTF-8
|
||||
Name=Vidalia
|
||||
GenericName=GUI controller for the Tor Onion Routing Network
|
||||
GenericName[de]=Kontrolloberfläche für das Tor Onion Routing Netzwerk
|
||||
Exec=vidalia
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Network;KDE;Qt;Security;
|
||||
StartupNotify=true
|
||||
Icon=vidalia
|
||||
153
vidalia.spec
Normal file
153
vidalia.spec
Normal file
|
|
@ -0,0 +1,153 @@
|
|||
Name: vidalia
|
||||
Version: 0.1.15
|
||||
Release: 1%{?dist}
|
||||
Summary: GUI controller for the Tor Onion Routing Network
|
||||
|
||||
Group: Applications/Internet
|
||||
License: GPLv2+
|
||||
URL: https://www.torproject.org/vidalia/
|
||||
Source0: https://www.torproject.org/%{name}/dist/%{name}-%{version}.tar.gz
|
||||
Source1: %{name}.desktop
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: openssl-devel
|
||||
BuildRequires: qt4-devel
|
||||
BuildRequires: cmake
|
||||
|
||||
Requires: tor
|
||||
Requires: privoxy
|
||||
Requires: hicolor-icon-theme
|
||||
|
||||
|
||||
%description
|
||||
Vidalia is a cross-platform controller GUI for Tor, built using the Qt
|
||||
framework. Vidalia allows you to start and stop Tor, view the status of Tor at
|
||||
a glance, and monitor Tor's bandwidth usage. Vidalia also makes it easy to
|
||||
contribute to the Tor network by helping you setup a Tor server, if you wish.
|
||||
|
||||
|
||||
%package doc
|
||||
Summary: Documentation for %{name}
|
||||
Group: Documentation
|
||||
BuildRequires: doxygen
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
|
||||
%description doc
|
||||
Doxygen generated documentations for %{name}.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
|
||||
%build
|
||||
%if 0%{?_qt4_bindir:1}
|
||||
PATH=%{_qt4_bindir}:$PATH; export PATH
|
||||
%else
|
||||
PATH=%{_libdir}/qt4/bin:$PATH; export PATH
|
||||
%endif
|
||||
|
||||
%cmake .
|
||||
|
||||
make %{?_smp_mflags}
|
||||
|
||||
cd doc
|
||||
doxygen Doxyfile.in
|
||||
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
|
||||
make install \
|
||||
INSTALL="install -p" \
|
||||
DESTDIR=%{buildroot}
|
||||
|
||||
rm -rf %{buildroot}%{_datadir}/applications/%{name}.desktop
|
||||
|
||||
install -Dpm0644 doc/%{name}.1 \
|
||||
%{buildroot}%{_mandir}/man1/%{name}.1
|
||||
|
||||
desktop-file-install \
|
||||
%if 0%{?rhel}
|
||||
--vendor="" \
|
||||
%endif
|
||||
--dir %{buildroot}%{_datadir}/applications \
|
||||
%{SOURCE1}
|
||||
|
||||
mkdir -p %{buildroot}%{_docdir}/%{name}-%{version}-doxygen/
|
||||
install -Dpm0644 doc/html/* \
|
||||
%{buildroot}%{_docdir}/%{name}-%{version}-doxygen/
|
||||
|
||||
|
||||
%post
|
||||
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
|
||||
|
||||
%postun
|
||||
if [ $1 -eq 0 ] ; then
|
||||
touch --no-create %{_datadir}/icons/hicolor &>/dev/null
|
||||
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
fi
|
||||
|
||||
|
||||
%posttrans
|
||||
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc CHANGELOG CREDITS HACKING LICENSE LICENSE-GPLV2 LICENSE-GPLV3 LICENSE-OPENSSL README
|
||||
%{_bindir}/%{name}
|
||||
%{_mandir}/man1/%{name}*
|
||||
%{_datadir}/applications/%{name}.desktop
|
||||
%{_datadir}/icons/hicolor/*/apps/%{name}.png
|
||||
|
||||
|
||||
%files doc
|
||||
%defattr(-,root,root,-)
|
||||
%{_docdir}/%{name}-%{version}-doxygen/
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Sep 02 2009 Simon Wesp <cassmodiah@fedoraproject.org> - 0.15-1
|
||||
- New upstream release
|
||||
|
||||
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 0.1.14-3
|
||||
- rebuilt with new openssl
|
||||
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.14-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Tue Jul 07 2009 Simon Wesp <cassmodiah@fedoraproject.org> - 0.1.14-1
|
||||
- New upstream release
|
||||
|
||||
* Mon Jun 01 2009 Simon Wesp <cassmodiah@fedoraproject.org> - 0.1.13-2
|
||||
- Merge builds for fedora and epel
|
||||
|
||||
* Mon Jun 01 2009 Simon Wesp <cassmodiah@fedoraproject.org> - 0.1.13-1
|
||||
- Update to 0.1.13
|
||||
- Adjust to fedora and epel
|
||||
|
||||
* Sun Apr 06 2009 Simon Wesp <cassmodiah@fedoraproject.org> - 0.1.12-1
|
||||
- New upstream release
|
||||
- Correct typo in URL
|
||||
- Add R: hicolor for new handling of icons
|
||||
- Add update-icon-cache sniplet
|
||||
- Use summary of upstream for Desktopfile and in spec file
|
||||
- Create doxygen-documentations
|
||||
|
||||
* Sun Feb 15 2009 Simon Wesp <cassmodiah@fedoraproject.org> - 0.1.10-2
|
||||
- Correct Qt in Summary
|
||||
- Correct Qt in desktop-file-source
|
||||
- Add a german Translation in the desktop-file-source
|
||||
- Using CMAKE-macro instead of cmake
|
||||
- Add more files to more documentation
|
||||
|
||||
* Tue Feb 10 2009 Simon Wesp <cassmodiah@fedoraproject.org> - 0.1.10-1
|
||||
- Initial Package build
|
||||
Loading…
Add table
Add a link
Reference in a new issue