Galago is a desktop presence framework, designed to transmit presence information between programs. To put it in simpler terms, it takes information on who is online and their away/idle states from an instant messenger (such as gaim) or other similar programs and lets other programs (such as Ximian's Evolution) to make use of it. The advantage of such a framework is that it brings your programs closer together. When you receive an e-mail from a friend who is in your buddy list, you'll be able to immediately tell their online status, for example. feedback and ok ajactoutot@
37 lines
855 B
Makefile
37 lines
855 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/10/19 09:03:37 jasper Exp $
|
|
|
|
COMMENT= desktop presence framework
|
|
|
|
DISTNAME= libgalago-0.5.2
|
|
SHARED_LIBS += galago 0.0 # .3.0
|
|
CATEGORIES= net devel
|
|
|
|
HOMEPAGE= http://www.galago-project.org/news/
|
|
|
|
# LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://www.galago-project.org/files/releases/source/libgalago/
|
|
|
|
WANTLIB= dbus-1 glib-2.0 gobject-2.0
|
|
|
|
MODULES= devel/gettext
|
|
|
|
LIB_DEPENDS= dbus-glib-1::x11/dbus-glib
|
|
BUILD_DEPENDS= :check->=0.9.5:devel/check
|
|
REGRESS_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
USE_LIBTOOL= Yes
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --enable-tests
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
post-extract:
|
|
echo REGRESS=${REGRESS_DEPENDS}
|
|
|
|
.include <bsd.port.mk>
|