diff options
author | pav <pav@FreeBSD.org> | 2003-12-04 19:15:03 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2003-12-04 19:15:03 +0800 |
commit | 2c506bb5150dd0d750bbbbdbead164095380879f (patch) | |
tree | e1e62b4c04bdd10deefb9b99de66f34c07b3fd31 /www/bluefish-devel/Makefile | |
parent | 79305b6a0f31c0cc26e21869380d42b8b3756350 (diff) | |
download | freebsd-ports-gnome-2c506bb5150dd0d750bbbbdbead164095380879f.tar.gz freebsd-ports-gnome-2c506bb5150dd0d750bbbbdbead164095380879f.tar.zst freebsd-ports-gnome-2c506bb5150dd0d750bbbbdbead164095380879f.zip |
- Update to 0.12
- Add new knobs WITHOUT_WEBLINT, WITH_TIDY and WITHOUT_SPLASH
- Add conflicts
PR: ports/59931, ports/59585
Submitted by: Koop Mast <einekoai@chello.nl> (maintainer)
Diffstat (limited to 'www/bluefish-devel/Makefile')
-rw-r--r-- | www/bluefish-devel/Makefile | 31 |
1 files changed, 22 insertions, 9 deletions
diff --git a/www/bluefish-devel/Makefile b/www/bluefish-devel/Makefile index f77c73c144cf..eda564cc3ff3 100644 --- a/www/bluefish-devel/Makefile +++ b/www/bluefish-devel/Makefile @@ -6,27 +6,33 @@ # PORTNAME= bluefish -PORTVERSION= 0.11.20031031 +PORTVERSION= 0.12 CATEGORIES= www editors MASTER_SITES= http://pkedu.fbt.eitn.wau.nl/~olivier/${DOWNLOAD}/ \ ftp://bluefish.advancecreations.com/pub/bluefish/${DOWNLOAD}/ \ http://bluefish.mrball.net/${DOWNLOAD}/ \ ftp://ftp.ratisbona.com/pub/bluefish/${DOWNLOAD}/ \ http://bluefish.shellhung.org/${DOWNLOAD}/ -DISTNAME= ${PORTNAME}-2003-10-31 MAINTAINER= einekoai@chello.nl COMMENT= HTML editor designed for the experienced web designer LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre \ aspell.15:${PORTSDIR}/textproc/aspell -RUN_DEPENDS= weblint:${PORTSDIR}/www/weblint -DOWNLOAD= snapshots -WRKSRC= ${WRKDIR}/bluefish-gtk2 +.if !defined(WITHOUT_WEBLINT) +RUN_DEPENDS+= weblint:${PORTSDIR}/www/weblint +.endif +.if defined(WITH_TIDY) +RUN_DEPENDS+= tidy:${PORTSDIR}/www/tidy +.endif + +CONFLICTS= bluefish-0.7* + +DOWNLOAD= downloads NO_LATEST_LINK= yes USE_BZIP2= yes -USE_GNOME= gnomehier gtk20 +USE_GNOME= gnomehier gtk20 gnomevfs2 USE_X_PREFIX= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ @@ -39,10 +45,17 @@ CONFIGURE_ARGS= --with-gnome2-menu=${PREFIX}/share/gnome/apps/Applications \ CONFIGURE_ARGS+= --with-debugging-output .endif +.if defined(WITHOUT_SPLASH) +CONFIGURE_ARGS+= --disable-splash-screen +.endif + pre-everything:: -.if !defined(WITH_DEBUG) @${ECHO_MSG} "" - @${ECHO_MSG} "WITH_DEBUG=yes for debug support" -.endif + @${ECHO_MSG} "Bluefish has the following tunable option(s):" + @${ECHO_MSG} " WITH_DEBUG for debug support" + @${ECHO_MSG} " WITHOUT_WEBLINT disable the weblint syntax and style checker" + @${ECHO_MSG} " WITH_TIDY for the tidy html cleanup program" + @${ECHO_MSG} " WITHOUT_SPLASH disable the splash screen" + @${ECHO_MSG} "" .include <bsd.port.mk> |