047e4448e1
This is the start of some basic convenience wrappers around dbus to ease integrating dbus with EFL based applications. When using e_dbus, direct use of the low level dbus api is still heavily required for processing messages. with feedback and tweaks by me. committing on behalf of laurent@
30 lines
693 B
Makefile
30 lines
693 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2010/01/11 15:05:49 jasper Exp $
|
|
|
|
COMMENT = enlightenment DBus component
|
|
DISTNAME = e_dbus-0.5.0.061
|
|
|
|
SO_VERSION = 0.0
|
|
.for _lib in edbus enotify enm ehal
|
|
SHARED_LIBS += ${_lib} ${SO_VERSION} \
|
|
${_lib}-ver-svn-02 ${SO_VERSION}
|
|
.endfor
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB += c crypto eet eina evas expat fontconfig freetype jpeg
|
|
WANTLIB += m pthread ssl z
|
|
|
|
USE_LIBTOOL = Yes
|
|
|
|
LIB_DEPENDS = dbus-1.>=7::x11/dbus \
|
|
ecore::x11/e17/ecore \
|
|
|
|
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
.include <bsd.port.mk>
|