# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python class Recipe(recipe.Recipe): name = 'libsoup' version = '2.52.2' licenses = [License.LGPLv2Plus] stype = SourceType.TARBALL url = 'http://ftp.gnome.org/pub/gnome/sources/libsoup/2.52/libsoup-2.52.2.tar.xz' autoreconf = True autoreconf_sh = 'gtkdocize && intltoolize --automake --copy && autoreconf --force --install --verbose' configure_options = '--without-gnome --disable-more-warnings --disable-vala' deps = ['libxml2', 'glib'] patches = ['libsoup/0001-Rip-out-sqlite-based-cookie-storage.patch', 'libsoup/0002-Don-t-build-tests.patch', ] files_libs = ['libsoup-2.4'] files_devel = ['include/libsoup-2.4', 'lib/pkgconfig/libsoup-2.4.pc'] files_typelibs = ['Soup-2.4'] def prepare(self): if self.config.target_platform != Platform.LINUX: self.configure_options += ' --disable-gtk-doc' if self.config.target_platform != Platform.LINUX or \ self.config.target_distro_version in \ [DistroVersion.DEBIAN_SQUEEZE, DistroVersion.UBUNTU_MAVERICK, DistroVersion.UBUNTU_LUCID]: self.deps += [ 'glib-networking' ] if self.config.target_platform in [Platform.WINDOWS, Platform.IOS]: self.configure_options += ' --disable-tls-check'