~ubuntu-branches/ubuntu/precise/ipe/precise

« back to all changes in this revision

Viewing changes to src/config.pri

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2008-11-07 04:25:40 UTC
  • mfrom: (4.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20081107042540-4nzheasbudy9p2o9
Tags: 6.0pre31-1
* New upstream.
  - debian/patches/gcc43.diff
  - debian/patches/ipe-bug-253.diff:
  - debian/patches/decimal-point.patch: Remove.  Applied upstream.
  - debian/patches/config.diff: Remove IPEBROWSER hunk; upstream changed
    it to sensible-browser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#
24
24
# Installing Ipe:
25
25
#
26
 
IPEVERS = 6.0pre30
 
26
IPEVERS = 6.0pre31
27
27
#
28
28
# IPEPREFIX is the global prefix for the Ipe directory structure, which
29
29
# you can override individually for any of the specific directories.
36
36
# while the documentation and fonts can be shared.
37
37
#
38
38
#IPEPREFIX  = /usr/local/ipe
39
 
IPEPREFIX  = /usr
 
39
#IPEPREFIX  = /usr
40
40
#IPEPREFIX  = /opt/ipe-6.0
41
41
#
 
42
!win32:isEmpty( IPEPREFIX ) {
 
43
  error( "You need to specify IPEPREFIX!")
 
44
}
42
45
#
43
46
# Where Ipe executables will be installed ('ipe', 'ipe5toxml' etc)
44
47
IPEBINDIR  = $${IPEPREFIX}/bin
58
61
#
59
62
# IPEDOCDIR will contain the Ipe documentation (mostly html files)
60
63
#
61
 
IPEDOCDIR  = $${IPEPREFIX}/share/doc/ipe/doc
 
64
isEmpty( IPEDOCDIR ) {
 
65
  IPEDOCDIR  = $${IPEPREFIX}/share/ipe/$${IPEVERS}/doc
 
66
}
62
67
#
63
68
# IPELANGDIR will contain Ipe UI translations (none exist yet)
64
69
#
89
94
# --------------------------------------------------------------------
90
95
#linux-g++:QMAKE_CXXFLAGS_WARN_ON += -Werror
91
96
# --------------------------------------------------------------------
 
97
win32 {
 
98
  DEFINES           += WIN32
 
99
  ZLIB_INCLUDE      = c:/Home/devel/zlib/src
 
100
  ZLIB_LIBPATH      = c:/Home/devel/zlib/lib
 
101
  FREETYPE_INCLUDE  = c:/Home/devel/freetype/include
 
102
  FREETYPE_LIBPATH  = c:/Home/devel/freetype/lib
 
103
}
92
104
# --------------------------------------------------------------------
93
 
# If this is not used, a build from /usr/.... will generate
94
 
# Makefiles with relative paths for install.  This totally
95
 
# fucks up using INSTALL_ROOT for a staged install.
96
 
# See http://bugs.debian.org/180240
97
 
#QMAKE_PROJECT_DEPTH=1