1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00

- Fix build with libxul 1.9.2

- Bump PORTREVISION after libxul update

PR:		ports/149044
Submitted by:	decke@
Expr-run by:	pav@
Approved by:	portmgr (pav)
This commit is contained in:
Beat Gaetzi 2010-08-08 08:58:16 +00:00
parent a34abe751e
commit b29c1fd022
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=258916
4 changed files with 15 additions and 11 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= moonlight
PORTVERSION= 2.2
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= multimedia www
MASTER_SITES= http://ftp.novell.com/pub/mono/sources/moon/${PORTVERSION}/
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
@ -32,8 +32,8 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
CONFIGURE_ARGS= --with-cairo=system \
--with-debug=yes \
--with-ff2=no \
--with-ff3=yes \
--with-ff36=no \
--with-ff3=no \
--with-ff36=yes \
--with-mcspath=${MONODIR}/mcs/ \
--with-mono-basic-path=${MONOBASICDIR}/

View File

@ -94,8 +94,8 @@ lib/moonlight/plugin/System.dll
lib/moonlight/plugin/System.dll.mdb
lib/moonlight/plugin/libmoonloader.la
lib/moonlight/plugin/libmoonloader.so
lib/moonlight/plugin/libmoonplugin-ff3bridge.la
lib/moonlight/plugin/libmoonplugin-ff3bridge.so
lib/moonlight/plugin/libmoonplugin-ff36bridge.la
lib/moonlight/plugin/libmoonplugin-ff36bridge.so
lib/moonlight/plugin/libmoonplugin.la
lib/moonlight/plugin/libmoonplugin.so
lib/moonlight/plugin/mscorlib.dll

View File

@ -5,7 +5,7 @@
# $FreeBSD$
#
PORTREVISION= 5
PORTREVISION= 6
CATEGORIES= net devel
PKGNAMESUFFIX= -mozjs
@ -27,7 +27,7 @@ CONFIGURE_ARGS=--without-gnome --without-kde --without-webkit \
LIBPROXY_SLAVE= yes
post-patch:
@${REINPLACE_CMD} -e 's|mozilla-js|mozilla-js libxul-unstable|g' \
@${REINPLACE_CMD} -e 's|mozilla-js|mozilla-js libxul|g' \
${WRKSRC}/configure
.include "${MASTERDIR}/Makefile"

View File

@ -8,7 +8,7 @@
PORTNAME= gnome-extras
PORTVERSION= 2.25.3
PORTREVISION= 8
PORTREVISION= 9
CATEGORIES= x11-toolkits python gnome
MASTER_SITES= GNOME
MASTER_SITE_SUBDIR= sources/gnome-python-extras/${PORTVERSION:C/..$//}
@ -44,13 +44,17 @@ DOCSDIR= ${WRKSRC}/share/doc/py-gnome-extras
.include <bsd.port.pre.mk>
.if defined(GECKO) && ${GECKO:Mlibxul}!=""
CONFIGURE_ARGS+= --with-gtkmozembed=mozilla
.else
.if defined(GECKO)
CONFIGURE_ARGS+= --with-gtkmozembed=${GECKO}
.endif
post-patch:
.if ${GECKO}=="libxul"
@${REINPLACE_CMD} -e 's|xulrunner|libxul|' \
${WRKSRC}/configure
.endif
@${REINPLACE_CMD} -e 's|$mozpackage-gtkmozembed|$mozpackage|' \
${WRKSRC}/configure
@${FIND} ${WRKSRC}/docs -name Makefile.in | ${XARGS} ${REINPLACE_CMD} \
-e 's|^HTML_DIR =.*|HTML_DIR = ${DOCSDIR}|g'