~ubuntu-branches/ubuntu/raring/gdis/raring-proposed

« back to all changes in this revision

Viewing changes to makefile.src

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Leidert (dale)
  • Date: 2009-04-06 17:12:18 UTC
  • mfrom: (3.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090406171218-uizoe126jrq09ytt
Tags: 0.90-1
* New upstream release 0.90.
* Acknowledge NMU (closes: #492994). Thanks to Neil Williams.

* makefile.debian: Upstream doesn't provide a Makefile to edit - so created
  our own.
* debian/compat: Added and set to be 5.
* debian/control: Added Homepage, Vcs* and DM-Upload-Allowed fields.
  (Maintainer): Set to the debichem team with approval by Noèl.
  (Uploaders): Added myself.
  (Build-Depends): Increased debhelper version to 5. Removed glutg3-dev.
  Added dpatch.
  (Standards-Version): Bumped to 3.8.1.
  (Description): Removed homepage. Fixed a typo.
* debian/copyright: Updated, completed and adjusted.
* debian/dirs: Dropped useless file.
* debian/docs: Renamed to debian/gdis.docs.
* debian/menu: Renamed to debian/gdis.menu.
  (section): Fixed accordingly to policy.
* debian/gdis.1: Just some formatting changes.
* debian/gdis.desktop: Added file (with small fixes) provided by Phill Bull
  (LP: #111353).
* debian/gdis.install: Added.
* debian/rules: Cleaned. Installation is now done by dh_install. Make sure,
  the CVS directory is not copied. Added dh_desktop call.
* debian/source.lintian-overrides: makefile.debian is created for Debian but
  lives outside debian/.
* debian/watch: Added.
* debian/README.build: Dropped.
* debian/README.source: Added to be compliant to the policy v3.8.
* debian/patches/Debian_make.dpatch: Added.
  - gdis.h (ELEM_FILE): Moved fix for gdis.elemts path (#399132) to this
    patch.
* debian/patches/00list: Added.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# --- gdis Makefile sources
2
2
 
3
3
SRC =   main.c model.c coords.c connect.c matrix.c module.c task.c \
4
 
        type.c measure.c parse.c edit.c elem.c select.c surface.c dock.c \
5
 
        spatial.c render.c project.c numeric.c analysis.c image.c \
 
4
        type.c measure.c parse.c edit.c elem.c select.c surface.c \
 
5
        analysis.c spatial.c render.c numeric.c project.c grid.c \
6
6
        molsurf.c hirshfeld.c zone.c contents.c quaternion.c zmatrix.c \
7
7
        library.c geometry.c space.c sginfo.c sgclib.c sgio.c error.c \
8
 
        scan.c camera.c defect.c colourlib.c crystal_graph.c \
9
 
        mesch.c mesch_core.c \
 
8
        scan.c camera.c defect.c colourlib.c crystal_graph.c mdi.c \
 
9
        mesch.c mesch_core.c host.c job.c command.c undo.c count.c \
 
10
        ff.c ff_gulp.c test.c \
10
11
        file.c file_cif.c file_gulp.c file_gmf.c file_marvin.c file_xtl.c \
11
12
        file_arc.c file_xyz.c file_fdf.c file_gms.c file_diff.c file_xml.c \
12
13
        file_abinit.c file_pdb.c file_povray.c file_nwchem.c file_castep.c \
13
14
        file_gauss.c file_rietica.c file_geomview.c file_cssr.c file_cel.c \
14
 
        file_dmol.c file_dlpoly.c file_bgf.c file_cgf.c gui_monty.c file_dlp.c \
15
 
        gui_main.c gui_shorts.c gui_render.c gui_mdi.c gui_animate.c \
16
 
        gui_edit.c gui_gulp.c gui_surface.c gui_analysis.c gui_defect.c \
 
15
        file_dmol.c file_dlpoly.c file_bgf.c file_cgf.c file_dlp.c \
 
16
        file_gromacs.c file_meta.c
 
17
 
 
18
ifeq ($(USE_GUI), YES)
 
19
SRC := $(SRC) gui_main.c gui_canvas.c gui_shorts.c \
 
20
        gl_main.c gl_primitives.c gl_stereo.c gl_graph.c gl_varray.c \
 
21
        gui_gulp.c gui_siesta.c gui_render.c gui_mdi.c gui_animate.c \
 
22
        gui_edit.c gui_surface.c gui_analysis.c gui_defect.c \
17
23
        gui_molsurf.c gui_diffract.c gui_gms.c gui_library.c gui_setup.c \
18
24
        gui_gperiodic.c gui_space.c gui_measure.c gui_symmetry.c gui_zmatrix.c \
19
 
        gui_canvas.c gui_tree.c gui_dialog.c gui_task.c gui_help.c \
20
 
        gui_siesta.c \
21
 
        gl_main.c gl_primitives.c gl_stereo.c gl_graph.c gl_varray.c \
 
25
        gui_dialog.c gui_tree.c gui_task.c gui_help.c gui_monty.c gui_job.c \
 
26
        dock.c image.c gui_grid.c
 
27
endif
 
28
 
 
29
ifeq ($(USE_GRISU), YES)
 
30
SRC := $(SRC) grisu_client.c soapC.c soapClient.c logging.c 
 
31
endif
22
32