1999-07-27 06:12:45 +02:00
|
|
|
# New ports collection makefile for: bluefish
|
2005-01-13 22:26:35 +01:00
|
|
|
# Date created: 23 January 2003
|
|
|
|
# Whom: Koop Mast <einekoai@chello.nl>
|
1999-07-27 06:12:45 +02:00
|
|
|
#
|
1999-08-31 04:43:35 +02:00
|
|
|
# $FreeBSD$
|
1999-07-27 06:12:45 +02:00
|
|
|
#
|
|
|
|
|
2000-04-10 02:07:29 +02:00
|
|
|
PORTNAME= bluefish
|
2005-01-13 22:26:35 +01:00
|
|
|
PORTVERSION= 1.0
|
2005-03-12 11:54:27 +01:00
|
|
|
PORTREVISION= 2
|
1999-07-27 06:12:45 +02:00
|
|
|
CATEGORIES= www editors
|
2005-01-13 22:26:35 +01:00
|
|
|
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}/
|
1999-07-27 06:12:45 +02:00
|
|
|
|
2004-11-23 09:51:28 +01:00
|
|
|
MAINTAINER= kwm@FreeBSD.org
|
2003-03-07 07:14:21 +01:00
|
|
|
COMMENT= HTML editor designed for the experienced web designer
|
1999-07-27 06:12:45 +02:00
|
|
|
|
2005-01-13 22:26:35 +01:00
|
|
|
LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre \
|
|
|
|
aspell.16:${PORTSDIR}/textproc/aspell
|
1999-07-27 06:12:45 +02:00
|
|
|
|
2005-01-13 22:26:35 +01:00
|
|
|
.if !defined(WITHOUT_WEBLINT)
|
|
|
|
RUN_DEPENDS+= weblint:${PORTSDIR}/www/weblint
|
|
|
|
.endif
|
|
|
|
.if defined(WITH_TIDY)
|
|
|
|
RUN_DEPENDS+= tidy:${PORTSDIR}/www/tidy
|
|
|
|
.endif
|
2003-12-04 12:15:53 +01:00
|
|
|
|
2005-01-13 22:26:35 +01:00
|
|
|
DOWNLOAD= downloads
|
2000-05-17 21:44:04 +02:00
|
|
|
USE_BZIP2= yes
|
2005-01-13 22:26:35 +01:00
|
|
|
USE_GNOME= gnomehier gtk20 gnomevfs2
|
2005-02-14 23:42:50 +01:00
|
|
|
WANT_GNOME= yes
|
2001-01-06 09:31:15 +01:00
|
|
|
USE_X_PREFIX= yes
|
2005-01-13 22:26:35 +01:00
|
|
|
USE_REINPLACE= yes
|
2000-01-15 03:38:05 +01:00
|
|
|
GNU_CONFIGURE= yes
|
2005-01-13 22:26:35 +01:00
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
CONFIGURE_ARGS= --with-freedesktop_org-menu=${PREFIX}/share/gnome/applications \
|
|
|
|
--with-freedesktop_org-mime=${PREFIX}/share/mime \
|
|
|
|
--with-gnome2_4-mime=${PREFIX}/share/gnome/mime-info \
|
|
|
|
--with-gnome2_4-appreg=${PREFIX}/share/gnome/application-registry \
|
|
|
|
--with-icon-path=${PREFIX}/share/gnome/pixmaps
|
2001-12-11 10:45:55 +01:00
|
|
|
|
2005-01-13 22:26:35 +01:00
|
|
|
# Turns debugging output on
|
|
|
|
.if defined(WITH_DEBUG)
|
|
|
|
CONFIGURE_ARGS+= --with-debugging-output
|
|
|
|
.endif
|
2001-12-11 10:45:55 +01:00
|
|
|
|
2005-01-13 22:26:35 +01:00
|
|
|
.if defined(WITHOUT_SPLASH)
|
|
|
|
CONFIGURE_ARGS+= --disable-splash-screen
|
2001-12-11 10:45:55 +01:00
|
|
|
.endif
|
2000-10-05 08:57:56 +02:00
|
|
|
|
2000-08-11 03:04:47 +02:00
|
|
|
MAN1= bluefish.1
|
1999-07-27 06:12:45 +02:00
|
|
|
|
2005-01-13 22:26:35 +01:00
|
|
|
pre-everything::
|
|
|
|
@${ECHO_MSG} ""
|
|
|
|
@${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} ""
|
|
|
|
|
1999-07-27 06:12:45 +02:00
|
|
|
post-install:
|
2005-01-13 22:26:35 +01:00
|
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/debian/bluefish.1 ${PREFIX}/man/man1/bluefish.1
|
1999-07-27 06:12:45 +02:00
|
|
|
|
2005-02-14 23:42:50 +01:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if ${HAVE_GNOME:Mlibgnomeui}!=""
|
|
|
|
USE_GNOME+= libgnomeui
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|