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

« back to all changes in this revision

Viewing changes to extensions/Exporters/PicasaWebExport/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Iain Lane
  • Date: 2010-05-24 10:35:57 UTC
  • mfrom: (2.4.7 experimental)
  • Revision ID: james.westby@ubuntu.com-20100524103557-1j0i8f66caybci2n
* New upstream release 0.7.0
 + First release of the unstable 0.7 development series. Massive changes.
 + Reparenting and detaching support (Anton Keks) (Closes: #559745)
 + A new Mallard-based documentation (Harold Schreckengost)
 + No longer embeds flickrnet, uses distribution copy (Iain Lane)
 + Adoption of a large amount of Hyena functionality (Paul Lange, Peter
   Goetz)
 + No longer embeds gnome-keyring-sharp
 + Completely rewritten import, much faster and less memory hungry (Ruben
   Vermeersch) (Closes: #559080, #492658, #341790, #357811, #426017) (LP:
   #412091)
 + No longer use gphoto2-sharp, now uses gvfs which is less crash-pron
   (Ruben Vermeersch)
 + Fix Facebook support (Ruben Vermeersch)
 + Modernized unit tests
 + Revamped build (Mike Gemünde)
 + Much improved duplicate detection (much faster too) (Ruben Vermeersch)
 + Mouse selection in Iconview (Vincent Pomey)
 + Image panning support using middle mouse button (Wojciech Dzierżanowski)
 + Timeline slider now restricted to the size of the window (Iain Churcher)
 + Over 100 bugs closed (http://bit.ly/cyVjnD)
   - No more warnings about schema defaults (Closes: #584215) (LP: #586132)
* debian/control: Clean up build deps to match configure checks
* debian/rules: Don't run dh_makeshilbs as we don't ship any shared
  libraries. There are some private ones though, which get picked up and
  result in a useless postinst/postrm call to ldconfig. Thanks, lintian.
* debian/patches/debian_fix-distclean.patch,
  debian/patches/debian_fix_f-spot.exe.config.patch,
  debian/patches/debian_link-system-flickrnet.patch,
  debian/patches/debian_link-system-gnome-keyring.patch,
  debian/patches/debian_disable-unit-tests,
  debian/patches/git_transition_duration.patch,
  debian/patches/ubuntu_fix_folder_export_hang.patch:
  Clean up obsolete patches which are no longer necessary 
* debian/patches/*: Temporarily disable patches which originated from Ubuntu
  and no longer apply cleanly. We will get these back in a future upstream
  development release.
* debian/patches/*: Refresh to apply cleanly 
* debian/rules: Add new include dir to autoreconf call to pick up f-spot
  macros 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
include $(top_srcdir)/Makefile.include
2
 
 
3
 
PLUGIN_NAME = PicasaWebExport
4
 
 
5
 
PLUGIN_MANIFEST = $(PLUGIN_NAME).addin.xml
6
 
 
7
 
PLUGIN_ASSEMBLY = $(PLUGIN_NAME).dll
8
 
 
9
 
PLUGIN_SOURCES =                        \
10
 
        $(srcdir)/PicasaWebExport.cs
11
 
 
12
 
REFS =                                          \
13
 
        -r:$(top_builddir)/src/f-spot.exe       \
14
 
        -r:$(top_builddir)/src/FSpot.Core.dll   \
15
 
        -r:$(top_builddir)/src/FSpot.Utils.dll  \
16
 
        $(LINK_SEMWEB)                          \
17
 
        -r:google-sharp/Mono.Google.dll         \
18
 
        $(LINK_KEYRING)                         \
19
 
        $(LINK_GIOSHARP)                        \
20
 
        $(LINK_GPHOTO2)                         \
21
 
        $(LINK_UNIQUESHARP)                     \
22
 
        -r:System.Web                           \
23
 
        -r:Mono.Posix
24
 
 
25
 
PKGS =                                  \
26
 
        $(LINK_GTKSHARPBEANS)           \
27
 
        -pkg:gtk-sharp-2.0              \
28
 
        -pkg:glade-sharp-2.0
29
 
 
30
 
SUBDIRS =                       \
 
1
ASSEMBLY = FSpot.Exporters.PicasaWeb
 
2
TARGET = library
 
3
LINK = $(REF_FSPOT_EXTENSION_PICASAWEBEXPORT)
 
4
INSTALL_DIR = $(EXTENSIONS_INSTALL_DIR)
 
5
 
 
6
SOURCES = PicasaWebExport.cs
 
7
 
 
8
RESOURCES = \
 
9
        PicasaWebExport.addin.xml \
 
10
        PicasaWebExport.glade
 
11
 
 
12
SUBDIRS = \
31
13
        google-sharp
32
14
 
33
 
RESOURCES =                             \
34
 
        -resource:$(srcdir)/$(PLUGIN_MANIFEST)  \
35
 
        -resource:$(srcdir)/$(PLUGIN_NAME).glade
36
 
 
37
 
mpack: $(PLUGIN_ASSEMBLY)
38
 
        mautil p $(PLUGIN_ASSEMBLY)
39
 
 
40
 
$(PLUGIN_ASSEMBLY): $(PLUGIN_SOURCES) $(PLUGIN_MANIFEST)
41
 
        $(CSC_LIB) -out:$@ $(PLUGIN_SOURCES) $(REFS) $(PKGS) $(ASSEMBLIES) $(RESOURCES)
42
 
 
43
 
plugindir = $(pkglibdir)/extensions
44
 
 
45
 
install-data-hook:
46
 
        if [ -w $(DESTDIR)$(plugindir)/$(PLUGIN_NAME).addin.xml ] ; then rm -f $(DESTDIR)$(plugindir)/$(PLUGIN_NAME).addin.xml; fi
47
 
 
48
 
plugin_DATA =                   \
49
 
        $(PLUGIN_ASSEMBLY)
50
 
 
51
 
EXTRA_DIST =                    \
52
 
        $(PLUGIN_SOURCES)       \
53
 
        $(PLUGIN_MANIFEST)      \
54
 
        $(PLUGIN_NAME).glade
55
 
 
56
 
CLEANFILES =                    \
57
 
        $(PLUGIN_ASSEMBLY)      \
58
 
        $(PLUGIN_ASSEMBLY).mdb  \
59
 
        *.mpack
 
15
include $(top_srcdir)/build/build.mk