~ubuntu-branches/debian/squeeze/f-spot/squeeze

« back to all changes in this revision

Viewing changes to dpap-sharp/DPAPService/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Iain Lane, Mirco Bauer, Iain Lane
  • Date: 2009-02-07 20:23:32 UTC
  • mfrom: (1.1.18 upstream)
  • Revision ID: james.westby@ubuntu.com-20090207202332-oc93rfjo1st0571s
Tags: 0.5.0.3-2
[ Mirco Bauer]
* Upload to unstable.
* debian/control:
  + Lowered GNOME# build-deps to 2.0 ABI as that transition didn't happen
    yet in unstable.

[ Iain Lane ]
* debian/patches/svn-r4545_locales-import.dpatch: Patch backported from SVN
  trunk revision 4545 - initialize the translation catalog earlier (LP: #293305)
  (Closes: #514457). Thanks to Florian Heinle for finding the patch and to
  Chris Coulson for preparing the update.
* debian/control: Build-depend on libmono-dev (>= 1.2.4) to match configure
  checks.
* debian/rules: Pass CSC=/usr/bin/csc to configure for gio-sharp to fix FTBFS

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include $(top_srcdir)/Makefile.include
 
2
 
 
3
PLUGIN_NAME = DPAPService
 
4
 
 
5
PLUGIN_MANIFEST = $(PLUGIN_NAME).addin.xml
 
6
 
 
7
PLUGIN_ASSEMBLY = $(PLUGIN_NAME).dll
 
8
 
 
9
PLUGIN_SOURCES =                        \
 
10
        $(srcdir)/DPAPService.cs        
 
11
#       $(srcdir)/BeagleNotifier.cs
 
12
 
 
13
 
 
14
REFS =                                  \
 
15
        -r:../../src/f-spot.exe         \
 
16
        -r:../../src/FSpot.Core.dll     \
 
17
        -r:../../src/FSpot.Widgets.dll \
 
18
        -r:../../src/FSpot.Utils.dll    \
 
19
        -r:../lib/dpap-sharp.dll        
 
20
#       $(LINK_BEAGLE)
 
21
 
 
22
PKGS =                                  \
 
23
        -pkg:gtk-sharp-2.0
 
24
 
 
25
RESOURCES =                             \
 
26
        -resource:$(srcdir)/$(PLUGIN_MANIFEST)
 
27
 
 
28
all: $(PLUGIN_ASSEMBLY)
 
29
 
 
30
mpack: $(PLUGIN_ASSEMBLY)
 
31
        mautil p $(PLUGIN_ASSEMBLY)
 
32
 
 
33
$(PLUGIN_ASSEMBLY): $(PLUGIN_SOURCES) $(PLUGIN_MANIFEST)
 
34
        $(CSC_LIB) -out:$@ $(CSC_DEFINES) $(PLUGIN_SOURCES) $(REFS) $(PKGS) $(ASSEMBLIES) $(RESOURCES)
 
35
 
 
36
plugindir = $(pkglibdir)/extensions
 
37
 
 
38
plugin_DATA =                   \
 
39
        $(PLUGIN_ASSEMBLY)
 
40
 
 
41
EXTRA_DIST =                    \
 
42
        $(PLUGIN_SOURCES)       \
 
43
        $(PLUGIN_MANIFEST)
 
44
 
 
45
CLEANFILES =                    \
 
46
        $(PLUGIN_ASSEMBLY)      \
 
47
        $(PLUGIN_ASSEMBLY).mdb  \
 
48
        *.mpack