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

« back to all changes in this revision

Viewing changes to extensions/Exporters/PicasaWebExport/google-sharp/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
ASSEMBLY_NAME = Mono.Google
 
4
 
 
5
ASSEMBLY_SOURCES =                              \
 
6
        $(srcdir)/AlbumAccess.cs                \
 
7
        $(srcdir)/AssemblyInfo.cs               \
 
8
        $(srcdir)/Authentication.cs             \
 
9
        $(srcdir)/CaptchaException.cs           \
 
10
        $(srcdir)/CreateAlbumException.cs       \
 
11
        $(srcdir)/DeleteAlbumException.cs       \
 
12
        $(srcdir)/GDataApi.cs                   \
 
13
        $(srcdir)/GoogleConnection.cs           \
 
14
        $(srcdir)/GoogleService.cs              \
 
15
        $(srcdir)/MultipartRequest.cs           \
 
16
        $(srcdir)/NoCheckCertificatePolicy.cs   \
 
17
        $(srcdir)/PicasaAlbum.cs                \
 
18
        $(srcdir)/PicasaAlbumCollection.cs      \
 
19
        $(srcdir)/PicasaPicture.cs              \
 
20
        $(srcdir)/PicasaPictureCollection.cs    \
 
21
        $(srcdir)/PicasaWeb.cs                  \
 
22
        $(srcdir)/UploadPictureException.cs     \
 
23
        $(srcdir)/UploadProgressEventArgs.cs    \
 
24
        $(srcdir)/UploadProgressEventHandler.cs \
 
25
        $(srcdir)/XmlUtil.cs
 
26
 
 
27
REFS = -r:System.Web
 
28
 
 
29
PKGS =
 
30
 
 
31
ASSEMBLY = $(ASSEMBLY_NAME).dll
 
32
 
 
33
all: $(ASSEMBLY)
 
34
 
 
35
$(ASSEMBLY): $(ASSEMBLY_SOURCES)
 
36
        $(CSC_LIB) -out:$@ $(PKGS) $(REFS) $(ASSEMBLY_SOURCES)
 
37
 
 
38
assemblydir = $(pkglibdir)
 
39
assembly_DATA = $(ASSEMBLY)
 
40
 
 
41
EXTRA_DIST = $(ASSEMBLY_SOURCES)
 
42
 
 
43
CLEANFILES =                    \
 
44
        $(ASSEMBLY)             \
 
45
        $(ASSEMBLY).mdb