~jtaylor/ubuntu/precise/gnome-games/lp-995281

« back to all changes in this revision

Viewing changes to .pc/01_lpi.patch/quadrapassel/src/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2012-02-06 22:22:58 UTC
  • mfrom: (1.1.103)
  • Revision ID: package-import@ubuntu.com-20120206222258-28gah1dnl2ij0kw0
Tags: 1:3.3.5-0ubuntu1
* New upstream release.
  - Performance was improved in Iagno, Mahjongg & Mines
  - Statusbar was removed from Iagno and Mines
  - Mines has a new game screen
  - Quadrapassel was ported to Vala
  - Quadrapassel has a new option to show where block
    will land
* debian/control.in:
  - Bump vala to valac-0.16 and GTK to 3.3.11
  - Build-Depend on yelp-tools instead of gnome-doc-utils
* Update install files for new help install location
* debian/patches/01_lpi.patch: Refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
bin_PROGRAMS = quadrapassel
 
2
 
 
3
quadrapassel_SOURCES = \
 
4
        config.vapi \
 
5
        quadrapassel.vala \
 
6
        preview.vala \
 
7
        game.vala \
 
8
        game-view.vala
 
9
 
 
10
quadrapassel_CFLAGS = \
 
11
        -I$(top_srcdir)/libgames-support \
 
12
        -DVERSION=\"$(VERSION)\" \
 
13
        -DGETTEXT_PACKAGE=\"$(GETTEXT_PACKAGE)\" \
 
14
        -DDATA_DIRECTORY=\"$(datadir)/quadrapassel\" \
 
15
        -DSOUND_DIRECTORY=\"$(datadir)/quadrapassel/sounds\" \
 
16
        -DLOCALEDIR=\"$(datadir)/locale\" \
 
17
        $(GTK_CFLAGS) \
 
18
        $(CANBERRA_GTK_CFLAGS) \
 
19
        $(CLUTTER_GTK_CFLAGS) \
 
20
        $(CLUTTER_CFLAGS)
 
21
 
 
22
quadrapassel_VALAFLAGS = \
 
23
        --pkg posix \
 
24
        --pkg gtk+-3.0 \
 
25
        --pkg pango \
 
26
        --pkg pangocairo \
 
27
        --pkg clutter-1.0 \
 
28
        --pkg clutter-gtk-1.0 \
 
29
        --pkg cogl-1.0 \
 
30
        --pkg libcanberra \
 
31
        --pkg libcanberra-gtk \
 
32
        --vapidir $(top_srcdir)/libgames-support \
 
33
        --pkg GnomeGamesSupport-1.0
 
34
 
 
35
quadrapassel_LDADD = \
 
36
        $(top_builddir)/libgames-support/libgames-support.la \
 
37
        $(CANBERRA_GTK_LIBS) \
 
38
        $(CLUTTER_GTK_LIBS) \
 
39
        $(CLUTTER_LIBS) \
 
40
        $(GTK_LIBS) \
 
41
        $(INTLLIBS)
 
42
 
 
43
if HAVE_RSVG
 
44
quadrapassel_CFLAGS += $(RSVG_CFLAGS) 
 
45
quadrapassel_LDADD += $(RSVG_LIBS)
 
46
endif
 
47
 
 
48
install-exec-hook:
 
49
        -if test "$(setgid)" = "true"; then \
 
50
          chgrp $(scores_group) $(DESTDIR)$(bindir)/quadrapassel && chmod 2555 $(DESTDIR)$(bindir)/quadrapassel ;\
 
51
        fi
 
52
 
 
53
CLEANFILES = \
 
54
        $(patsubst %.vala,%.c,$(filter %.vala, $(SOURCES))) \
 
55
        *_vala.stamp
 
56
 
 
57
-include $(top_srcdir)/git.mk