See http://library.gnome.org/misc/release-notes/2.24/ for the general release notes. On the FreeBSD front, this release introduces Fuse support in HAL, adds multi-CPU support to libgtop, WebKit updates, and fixes some long-standing seahorse and gnome-keyring bugs. The documentation updates to the website are forthcoming. This release features commits by adamw, ahze, kwm, mezz, and myself. It would not have been possible without are contributors and testers: Alexander Loginov Craig Butler [1] Dmitry Marakasov [6] Eric L. Chen Joseph S. Atkinson Kris Moore Lapo Luchini [7] Nikos Ntarmos Pawel Worach Romain Tartiere TAOKA Fumiyoshi [3] Yasuda Keisuke Zyl aZ [4] bf [2] [5] Florent Thoumie Peter Wemm pluknet PR: 125857 [1] 126993 [2] 130031 [3] 127399 [4] 127661 [5] 124302 [6] 129570 [7] 129936 123790
61 lines
1.7 KiB
Makefile
61 lines
1.7 KiB
Makefile
# New ports collection makefile for: py-gnome-extras
|
|
# Date created: 22 November 2005
|
|
# Whom: Koop Mast <kwm@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/x11-toolkits/py-gnome-extras/Makefile,v 1.45 2008/10/21 14:16:43 kwm Exp $
|
|
#
|
|
|
|
PORTNAME= gnome
|
|
PORTVERSION= 2.19.1
|
|
PORTREVISION= 5
|
|
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
|
|
|
|
LIB_DEPENDS= gtkspell.0:${PORTSDIR}/textproc/gtkspell \
|
|
gksu1.2.0:${PORTSDIR}/sysutils/libgksu \
|
|
gksuui1.0.1:${PORTSDIR}/sysutils/libgksuui \
|
|
gdl-1.0:${PORTSDIR}/x11-toolkits/gdl
|
|
|
|
USE_GECKO= firefox seamonkey xulrunner mozilla
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_PYTHON= yes
|
|
USE_GNOME= gnomehack libgtkhtml pygnome2 libgda3
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-gtkmozembed=${GECKO}
|
|
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>
|
|
.include "${PORTSDIR}/www/mozilla/bsd.gecko.mk"
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC}/docs -name Makefile.in | ${XARGS} ${REINPLACE_CMD} \
|
|
-e 's|^HTML_DIR =.*|HTML_DIR = ${DOCSDIR}|g'
|
|
|
|
.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}
|
|
${CHMOD} -R go-w ${EG_DST_DIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|