summaryrefslogtreecommitdiffstats
path: root/x11-toolkits/py-gnome-extras/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'x11-toolkits/py-gnome-extras/Makefile')
-rw-r--r--x11-toolkits/py-gnome-extras/Makefile107
1 files changed, 107 insertions, 0 deletions
diff --git a/x11-toolkits/py-gnome-extras/Makefile b/x11-toolkits/py-gnome-extras/Makefile
new file mode 100644
index 000000000..27dd37f62
--- /dev/null
+++ b/x11-toolkits/py-gnome-extras/Makefile
@@ -0,0 +1,107 @@
+# New ports collection makefile for: py-gnome-extras
+# Date created: 22 November 2005
+# Whom: Koop Mast <kwm@FreeBSD.org>
+#
+# $FreeBSD$
+# $MCom$
+#
+
+PORTNAME= gnome
+PORTVERSION= 2.12.0
+CATEGORIES= x11-toolkits python gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/gnome-python-extras/${PORTVERSION:C/..$//}
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+PKGNAMESUFFIX= -extras
+DISTNAME= gnome-python-extras-${PORTVERSION}
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= A set of Python bindings for GNOME 2
+
+BUILD_DEPENDS= ${X11BASE}/lib/${MOZILLA}/components/libwidget_gtk2.so:${PORTSDIR}/www/${MOZILLA}
+LIB_DEPENDS= gtkspell.0:${PORTSDIR}/textproc/gtkspell2 \
+ gtop-2.0.2:${PORTSDIR}/devel/libgtop2 \
+ totem-plparser.1:${PORTSDIR}/multimedia/totem-gstreamer \
+ gksu1.2.0:${PORTSDIR}/sysutils/libgksu \
+ gksuui1.0.0:${PORTSDIR}/sysutils/libgksuui \
+ gnome-media-profiles.0:${PORTSDIR}/audio/gnomemedia2 \
+ gdl-1.0:${PORTSDIR}/x11-toolkits/gdl
+RUN_DEPENDS= ${X11BASE}/lib/${MOZILLA}/components/libwidget_gtk2.so:${PORTSDIR}/www/${MOZILLA}
+
+MOZILLA= firefox
+HEADERS_SUFX=
+MOZ_BUILD= firefox
+
+.if !defined(WITH_MOZILLA)
+MOZILLA= firefox
+.else
+.if ${WITH_MOZILLA}=="mozilla"
+MOZILLA= mozilla
+MOZ_BUILD= mozilla
+.else
+.if ${WITH_MOZILLA}=="seamonkey"
+MOZILLA= seamonkey
+HEADERS_SUFX=
+MOZ_BUILD= seamonkey
+.else
+MOZILLA= firefox
+HEADERS_SUFX=
+.endif
+.endif
+.endif
+
+USE_BZIP2= yes
+USE_GMAKE= yes
+USE_PYTHON= yes
+USE_GNOME= gnomehack libgnomeprintui libgtkhtml gnomepanel \
+ gtksourceview libwnck nautiluscdburner pygnome2
+USE_AUTOTOOLS= libtool:15
+CONFIGURE_ARGS= --with-gtkmozembed=${MOZ_BUILD}
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+EG_SRC_DIR= ${WRKSRC}/examples
+EG_DST_DIR= ${PREFIX}/share/examples/py-gnome
+.if !defined(NOPORTDOCS)
+DOCSDIR= ${PREFIX}/share/doc/py-gnome-extras
+.else
+DOCSDIR= ${WRKSRC}/share/doc/py-gnome-extras
+.endif
+
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} < 500000
+.if ${MOZILLA}=="seamonkey" || ${MOZILLA}=="firefox"
+USE_GCC= 3.4
+.endif
+.endif
+
+post-patch:
+ @${REINPLACE_CMD} -e 's|mozilla-gtkmozembed|${MOZ_BUILD}-gtkmozembed${HEADERS_SUFX}|g ; \
+ s|mozilla-xpcom|${MOZ_BUILD}-xpcom${HEADERS_SUFX}|g ; \
+ s|$$MOZILLA-gtkmozembed|$$MOZILLA-gtkmozembed${HEADERS_SUFX}|g ; \
+ s|$$MOZILLA-xpcom|$$MOZILLA-xpcom${HEADERS_SUFX}|g' \
+ ${WRKSRC}/configure
+ @${FIND} ${WRKSRC}/docs -name Makefile.in | ${XARGS} ${REINPLACE_CMD} \
+ -e 's|^HTML_DIR =.*|HTML_DIR = ${DOCSDIR}|g'
+ @${REINPLACE_CMD} -e 's|-DHAVE_GNOMEPRINT28||g' \
+ ${WRKSRC}/configure
+
+.if !defined(NOPORTDOCS)
+post-install:
+ ${MKDIR} ${EG_DST_DIR}
+ ${TAR} -C ${EG_SRC_DIR} -cf - . | ${TAR} -C ${EG_DST_DIR} -xf -
+ ${CHOWN} -R ${BINOWN}:${BINGRP} ${EG_DST_DIR}
+.endif
+
+pre-everything::
+ @${ECHO_MSG} ""
+ @${ECHO_MSG} " By default py-gnome-extras uses www/firefox for html rendering, but you can"
+ @${ECHO_MSG} " change this by defining WITH_MOZILLA to one of the following values:"
+ @${ECHO_MSG}
+ @${ECHO_MSG} " mozilla "
+ @${ECHO_MSG} " seamonkey "
+ @${ECHO_MSG} ""
+
+.include <bsd.port.post.mk>