It has been a while both does not depend anymore on esound, before this change esound dependency was wrongly added to plenty of packages which actually does not depend on it. While here: - audio/glame: remove esound support - games/monkeybubble: add an explicit dependency on esound - sysutils/gnome-schedule: add en explicit dependency on pkg-config - comms/kb: add missing dependency on pkgconfig - x11-toolkits/libgnomeui: * update to 2.4.5 * use USES=localbase
54 lines
1.8 KiB
Makefile
54 lines
1.8 KiB
Makefile
# Created by: Michael Johnson <ahze@FreeBSD.org>
|
|
# $FreeBSD$
|
|
# $MCom: ports/deskutils/conduit/Makefile,v 1.7 2008/03/18 14:53:42 ahze Exp $
|
|
|
|
PORTNAME= conduit
|
|
PORTVERSION= 0.3.17
|
|
PORTREVISION= 11
|
|
CATEGORIES= deskutils
|
|
MASTER_SITES= GNOME
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Synchronization application for GNOME
|
|
|
|
BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/goocanvasmodule.so:graphics/py-goocanvas@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}vobject>=0.4.8:deskutils/py-vobject@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}dbus>0:devel/py-dbus@${PY_FLAVOR}
|
|
LIB_DEPENDS= libdbus-1.so:devel/dbus
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/goocanvasmodule.so:graphics/py-goocanvas@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}vobject>=0.4.8:deskutils/py-vobject@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}dbus>0:devel/py-dbus@${PY_FLAVOR} \
|
|
xdg-open:devel/xdg-utils
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gettext gmake pathfix pkgconfig python:2.7 \
|
|
shebangfix
|
|
INSTALLS_OMF= yes
|
|
INSTALLS_ICONS= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
USE_GNOME= intltool pygnome2 gnomeprefix gnomedocutils
|
|
CONFIGURE_ARGS= --disable-nautilus-extension
|
|
SHEBANG_FILES= conduit/conduit.real \
|
|
tools/conduit-client
|
|
|
|
OPTIONS_DEFINE= EOG
|
|
OPTIONS_DEFAULT=EOG
|
|
EOG_DESC= Build Eye-Of-Gnome Plugin
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MEOG}
|
|
BUILD_DEPENDS+= eog:graphics/eog
|
|
RUN_DEPENDS+= eog:graphics/eog
|
|
CONFIGURE_ARGS+= --enable-eog-plugin
|
|
.endif
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -type f | ${XARGS} ${REINPLACE_CMD} -e 's|/bin/bash|${SH}|' \
|
|
-e 's|/usr/bin/python|${LOCALBASE}/bin/python|' \
|
|
-e 's|/usr/lib/firefox*|${LOCALBASE}/lib/firefox|'
|
|
|
|
.include <bsd.port.mk>
|