# Template file for 'libunique1'. pkgname=libunique1 version=1.1.6 revision=5 wrksrc="libunique-${version}" patch_args="-Np1" build_style=gnu-configure configure_args="--disable-static --disable-dbus" hostmakedepends="libtool automake pkg-config gobject-introspection" makedepends="gtk+-devel" short_desc="Library for writing single instance applications (GTK+2)" maintainer="xtraeme " homepage="http://live.gnome.org/LibUnique" license="LGPL-2.1" distfiles="${GNOME_SITE}/libunique/1.1/libunique-$version.tar.bz2" checksum=e5c8041cef8e33c55732f06a292381cb345db946cf792a4ae18aa5c66cdd4fbb long_desc=" Unique is a library for writing single instance application. If you launch a single instance application twice, the second instance will either just quit or will send a message to the running instance. Unique makes it easy to write this kind of applications, by providing a base class, taking care of all the IPC machinery needed to send messages to a running instance, and also handling the startup notification side. Unique aims to replace the BaconMessageConnection code that has been copied by many projects and the code using Bonobo and D-Bus. This package is built against GTK+2 toolkit, unlike libunique which uses the GTK+3 toolkit." pre_configure() { # Fix build with glib 2.30. for f in $(find ${wrksrc} -name *.[ch]); do sed -i -s "s|G_CONST_RETURN|const|g" "$f" done sed -e "s,AM_CONFIG_HEADER,AC_CONFIG_HEADERS,g" \ -e "s,AM_PROG_CC_STDC,AC_PROG_CC,g" -i configure.ac autoreconf -fi } libunique1-devel_package() { depends="gtk+-devel ${sourcepkg}-${version}_${revision}" short_desc+=" -- development files" pkg_install() { vmove usr/include vmove usr/lib/pkgconfig vmove usr/share } } libunique1_package() { pkg_install() { vmove usr } }