diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-03-14 03:41:22 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-03-14 03:41:22 +0000 |
commit | 1b1bf89f0a0cd2e441c3da32de119dce16ba16a4 (patch) | |
tree | ffd258c129c8059e366cd502b2d6a88956c4a429 /www/epiphany-extensions/Makefile | |
parent | 6a5fb2dc6ba7356921e75c2899cf356abd844818 (diff) |
Notes
Diffstat (limited to 'www/epiphany-extensions/Makefile')
-rw-r--r-- | www/epiphany-extensions/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/epiphany-extensions/Makefile b/www/epiphany-extensions/Makefile index ee3bb7f651b0..a1f4edffba49 100644 --- a/www/epiphany-extensions/Makefile +++ b/www/epiphany-extensions/Makefile @@ -29,6 +29,9 @@ HEADERS_SUFX= MOZILLA= mozilla HEADERS_SUFX= .else +.if ${WITH_MOZILLA}=="firefox" +MOZILLA= firefox +.else .if ${WITH_MOZILLA}=="mozilla-devel" || ${WITH_MOZILLA}=="mozilla-devel-gtk2" MOZILLA= mozilla-devel HEADERS_SUFX= -devel @@ -37,6 +40,7 @@ MOZILLA= mozilla HEADERS_SUFX= .endif .endif +.endif USE_BZIP2= yes USE_X_PREFIX= yes @@ -45,7 +49,8 @@ USE_LIBTOOL_VER=15 USE_GMAKE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_CFLAGS}" \ LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" -CONFIGURE_ARGS= --with-extensions="all" +CONFIGURE_ARGS= --with-extensions="all" \ + --with-mozilla=${MOZILLA} PLIST_SUB= VERSION="1.6" EPHY_VERSION="1.6" @@ -77,6 +82,7 @@ pre-everything:: @${ECHO_MSG} " By default epiphany-extensions builds with www/mozilla support, but you can" @${ECHO_MSG} " change this by defining WITH_MOZILLA to one of the following values:" @${ECHO_MSG} + @${ECHO_MSG} " firefox " @${ECHO_MSG} " mozilla-devel " @${ECHO_MSG} "" @${ECHO_MSG} "Epiphany-extensions also supports the following tunable option(s):" |