~ubuntu-branches/ubuntu/precise/gnome-games/precise-updates

« back to all changes in this revision

Viewing changes to gnotski/src/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2012-03-19 20:46:10 UTC
  • mfrom: (1.1.105)
  • Revision ID: package-import@ubuntu.com-20120319204610-2nd2xqq39j8y7t5q
Tags: 1:3.3.92-0ubuntu1
* New upstream release.
  - Swell Foop ported to Vala, no longer in staging
    (LP: #939200, LP: #939210)
* debian/patches/git_fix-iagno-ai.patch: Dropped, upstream
* debian/control.in:
  - Drop no longer needed swell-foop dependencies
* debian/rules:
  - Don't install staging games
* debian/swell-foop.install:
  - Don't install gir files any more; they're not needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
gnotski_CFLAGS = \
12
12
        -DDATA_DIRECTORY=\"$(datadir)/gnotski\" \
13
13
        -DLOCALEDIR=\"$(datadir)/locale\" \
14
 
        $(GTK_CFLAGS)   \
 
14
        $(GTK_CFLAGS) \
 
15
        $(RSVG_CFLAGS) \
15
16
        $(AM_CFLAGS)
16
17
 
17
18
gnotski_LDADD = \
18
19
        $(top_builddir)/libgames-support/libgames-support.la \
19
20
        $(GTK_LIBS)     \
 
21
        $(RSVG_LIBS) \
20
22
        $(INTLLIBS)
21
23
 
22
 
if HAVE_RSVG
23
 
gnotski_CFLAGS += $(RSVG_CFLAGS)
24
 
gnotski_LDADD += $(RSVG_LIBS)
25
 
endif
26
 
 
27
24
install-exec-hook:
28
25
        -if test "$(setgid)" = "true"; then \
29
26
          chgrp $(scores_group) $(DESTDIR)$(bindir)/gnotski && chmod 2555 $(DESTDIR)$(bindir)/gnotski ;\