~ubuntu-branches/ubuntu/lucid/jhbuild/lucid

« back to all changes in this revision

Viewing changes to sample.jhbuildrc

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort, Loic Minier, Emilio Pozuelo Monfort
  • Date: 2009-11-09 20:28:48 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20091109202848-m9ec7dmzptqtchtj
Tags: 2.28.0-1
[ Loic Minier ]
* Cleanups.
* Ship scripts.
* Don't set GNOME_MODULE as it equals the name of the source package.

[ Emilio Pozuelo Monfort ]
* New upstream release. Closes: #524504.
  - Use 'git rev-parse' rather than 'git-rev-parse'. Closes: #544642.
* Ship install-check. Closes: #441008.
* Uploaders list regenerated. Closes: #523542, #554071.
* debian/control.in,
  debian/rules:
  - Stop shipping a copy of subprocess.py. Require python >= 2.4.
  - Switch to python-support.
* debian/control.in:
  - Bump Standards-Version to 3.8.3, no changes needed.
  - Build depend on intltool >= 0.35.0.
  - Build depend on pkg-config, gnome-doc-utils and rarian-compat to build
    the documentation.
  - Make jhbuild arch any since install-check is a binary. Depend on
    ${shlibs:Depends}.
  - Recommend, and not suggest, git-core. Also recommend mercurial.
* debian/watch:
  - Added.
* debian/patches/01_import_from_pkgdatadir.patch:
  - Added, import jhbuild from pkgdatadir if everything else fails.
    This way we can ship the jhbuild private modules in /usr/sharejhbuild.
* debian/jhbuild.docs:
  - Removed, the necessary docs are now installed by the upstream Makefile.
* debian/rules:
  - Include autotools.mk and gnome.mk.
  - Remove all the manual build process, autotools.mk does everything now.
  - Install the jhbuild modules in /usr/share/jhbuild.
* debian/install:
  - Install the modulesets and patches from here since the upstream build
    system doesn't install them.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- mode: python -*-
2
 
 
3
 
# edit this file to match your settings and copy it to ~/.jhbuildrc
4
 
 
5
 
# if you have a GNOME svn account, uncomment this line
6
 
#repos['svn.gnome.org'] = 'svn+ssh://user@svn.gnome.org/svn/'
7
 
 
8
 
 
9
 
# what module set should be used.  The default at the moment is 'gnome28',
10
 
# but it can be any of the files in the modulesets directory, or even
11
 
# the URL of a module set file on a web server.
12
 
# moduleset = 'gnome-2.18'
13
 
 
14
 
# A list of the modules to build.  Defaults to the Gnome Desktop and
15
 
# developer platform.
16
 
# modules = [ 'meta-gnome-desktop' ]
17
 
 
18
 
# what directory should the source be checked out to?
19
 
checkoutroot = os.path.expanduser('~/cvs/gnome2')
20
 
 
21
 
# the prefix to configure/install modules to (must have write access)
22
 
prefix = '/opt/gnome2'
23
 
 
24
 
# extra arguments to pass to all autogen.sh scripts
25
 
# to speed up builds of gnome2, try '--disable-static --disable-gtk-doc'
26
 
#autogenargs=''
27
 
 
28
 
# set CFLAGS:
29
 
#os.environ['CFLAGS'] = '-g -O2'
30
 
 
31
 
# On SMP systems you may use something like this to improve compilation time:
32
 
# be aware that not all modules compile correctly with make -j2
33
 
#os.environ['MAKE'] = 'make -j2'
34
 
 
35
 
# a alternative install program to use.
36
 
# The included install-check program won't update timestamps if the
37
 
# header hasn't changed
38
 
os.environ['INSTALL'] = os.path.expanduser('~/bin/install-check')