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

« back to all changes in this revision

Viewing changes to src/findsubtitles/findsubtitles.pro

  • 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
TEMPLATE = app
 
2
LANGUAGE = C++
 
3
 
 
4
CONFIG += qt warn_on release
 
5
 
 
6
QT += network xml
 
7
 
 
8
INCLUDEPATH += ..
 
9
DEPENDPATH += ..
 
10
 
 
11
HEADERS += simplehttp.h \
 
12
           osparser.h \
 
13
           ../filechooser.h \
 
14
           ../languages.h \
 
15
           findsubtitlesconfigdialog.h \
 
16
           findsubtitleswindow.h
 
17
 
 
18
SOURCES += simplehttp.cpp \
 
19
           osparser.cpp \
 
20
           ../filechooser.cpp \
 
21
           ../languages.cpp \
 
22
           findsubtitlesconfigdialog.cpp \
 
23
           findsubtitleswindow.cpp \
 
24
           main.cpp
 
25
 
 
26
FORMS += ../filechooser.ui findsubtitleswindow.ui findsubtitlesconfigdialog.ui
 
27
 
 
28
DEFINES += NO_SMPLAYER_SUPPORT DOWNLOAD_SUBS
 
29
 
 
30
contains( DEFINES, DOWNLOAD_SUBS ) {
 
31
        INCLUDEPATH += filedownloader quazip
 
32
        DEPENDPATH += filedownloader quazip
 
33
 
 
34
        HEADERS += filedownloader.h subchooserdialog.h
 
35
        SOURCES += filedownloader.cpp subchooserdialog.cpp
 
36
 
 
37
        FORMS += subchooserdialog.ui
 
38
 
 
39
        HEADERS += crypt.h \
 
40
                   ioapi.h \
 
41
                   quazip.h \
 
42
                   quazipfile.h \
 
43
                   quazipfileinfo.h \
 
44
                   quazipnewinfo.h \
 
45
                   unzip.h \
 
46
                   zip.h
 
47
 
 
48
        SOURCES += ioapi.c \
 
49
                   quazip.cpp \
 
50
                   quazipfile.cpp \
 
51
                   quazipnewinfo.cpp \
 
52
                   unzip.c \
 
53
                   zip.c
 
54
 
 
55
        LIBS += -lz
 
56
        
 
57
        win32 {
 
58
                INCLUDEPATH += c:\development\zlib-1.2.3
 
59
                LIBS += -Lc:\development\zlib-1.2.3
 
60
        }
 
61
}
 
62
 
 
63
unix {
 
64
  UI_DIR = .ui
 
65
  MOC_DIR = .moc
 
66
  OBJECTS_DIR = .obj
 
67
}
 
68
 
 
69
win32 {
 
70
  CONFIG += console
 
71
}
 
72