~ubuntu-branches/ubuntu/wily/smplayer/wily

« back to all changes in this revision

Viewing changes to src/findsubtitles/quazip/README

  • Committer: Bazaar Package Importer
  • Author(s): Maia Kozheva
  • Date: 2009-03-31 23:05:43 UTC
  • mfrom: (1.2.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: james.westby@ubuntu.com-20090331230543-0h2hfwpwlu9opbv2
* New upstream release. (Closes: #523791)
  - Reworked subtitle font preferences. (Closes: #503295)
  - No longer installs qt_fr.qm. (Closes: #486314)
* debian/control:
  - Bumped Standards-Version to 3.8.1.
  - Changed maintainer name (still the same person and GPG key).
  - Changed section to video.
  - Build-depend on zlib1g-dev for findsubtitles.
  - Require Qt >= 4.3 per readme.
  - Added ${misc:Depends}.
  - Make smplayer-translations depend on smplayer and smplayer recommend
    smplayer-translations, not the other way round. (Closes: #489375)
* debian/copyright:
  - Significantly expanded per-file with new upstream authors.
* debian/rules:
  - Make make use correct uic in install.
  - Clean svn_revision.
  - Removed get-orig-source - not needed with uscan --repack.
* debian/patches/01_gl_translation.patch:
  - Added patch to fix lrelease error on smplayer_gl.ts.
* Added debian/README.source for simple-patchsys.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
QuaZIP is the C++ wrapper for the Gilles Vollant's ZIP/UNZIP package
 
2
using Trolltech's Qt library.
 
3
 
 
4
It contains original ZIP/UNZIP package C code and therefore depends on
 
5
zlib library.
 
6
 
 
7
Also, it depends on Qt 4.
 
8
 
 
9
To comile it on UNIX dialect:
 
10
 
 
11
$ cd quazip
 
12
$ qmake
 
13
$ make
 
14
 
 
15
You must make sure that:
 
16
* You have Qt 4 properly and fully installed (including tools and
 
17
  headers, not just library)
 
18
* "qmake" command runs Qt 4's qmake, not some other version (you'll have
 
19
  to type full path to qmake otherwise).
 
20
 
 
21
To install compiled static library, just type:
 
22
 
 
23
$ make install
 
24
 
 
25
By default, it installs in /usr/local, but you may change it using
 
26
 
 
27
$ qmake PREFIX=/wherever/you/whant/to/install
 
28
 
 
29
You do not have to compile and install QuaZIP to use it. You can just
 
30
(and sometimes it may be the best way) add QuaZIP's source files to your
 
31
project and use them.
 
32
 
 
33
See doc/html or, if you do not have a browser, quazip/*.h and
 
34
quazip/doc/* files for the more detailed documentation.
 
35
 
 
36
Copyright notice:
 
37
 
 
38
Copyright (C) 2005 Sergey A. Tachenov
 
39
 
 
40
This program is free software; you can redistribute it and/or modify it
 
41
under the terms of the GNU General Public License as published by the
 
42
Free Software Foundation; either version 2 of the License, or (at your
 
43
option) any later version.
 
44
 
 
45
This program is distributed in the hope that it will be useful, but
 
46
WITHOUT ANY WARRANTY; without even the implied warranty of
 
47
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
 
48
Public License for more details.
 
49
 
 
50
You should have received a copy of the GNU General Public License along
 
51
with this program; if not, write to the Free Software Foundation, Inc.,
 
52
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
53
 
 
54
See COPYING file for the full GPL text.
 
55
 
 
56
Original ZIP package is copyrighted by Gilles Vollant, see
 
57
quazip/(un)zip.h files for details.