22005c53e4
Complete Web Authoring System that combines web file management and easy-to-use WYSIWYG web page editing. Kompozer (formally Nvu) is based on the Firefox codebase and is designed to be extremely easy to use, making it ideal for non-technical computer users who want to create an attractive, professional looking web site without needing to know HTML or web coding. Features: - FTP site manager - A new color picker - Tabs! - CSS editor - A dash of style(s) - Customizable toolbars - Forms - Cleaner markup - Visible marks WWW: http://www.kompozer.net/ Repocopied from: www/nvu Repocopied by: marcus
49 lines
1.3 KiB
Makefile
49 lines
1.3 KiB
Makefile
# New ports collection makefile for: nvu
|
|
# Date created: August 21, 2004
|
|
# Whom: Thierry Thomas <thierry@pompo.net>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/www/nvu/Makefile,v 1.5 2006/07/18 15:07:36 ahze Exp $
|
|
#
|
|
|
|
PORTNAME= kompozer
|
|
DISTVERSION= 0.7.10
|
|
CATEGORIES= www
|
|
MASTER_SITES= SF
|
|
DISTNAME= ${PORTNAME}-${DISTVERSION}dfsg-src
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Complete Web Authoring Suite
|
|
|
|
WANT_GNOME= yes
|
|
WANT_PERL= yes
|
|
USE_GMAKE= yes
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION}/mozilla
|
|
MAKEFILE= client.mk
|
|
ALL_TARGET= build_all
|
|
MOZ_EXTENSIONS= wallet,xml-rpc,xmlextras,pref,universalchardet,spellcheck
|
|
PORT_MOZCONFIG= ${WRKSRC}/composer/config/mozconfig.linux
|
|
|
|
DESKTOP_ENTRIES="Kompozer" "${COMMENT}" \
|
|
"${PREFIX}/lib/kompozer/icons/mozicon50.xpm" "${PORTNAME}" \
|
|
"Application;Network;" true
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.include "${PORTSDIR}/www/mozilla/Makefile.common"
|
|
|
|
.if ${ARCH} == "ia64"
|
|
BROKEN= does not build
|
|
.endif
|
|
|
|
.if ${ARCH}=="sparc64"
|
|
.if ${OSVERSION} < 601101 || ${OSVERSION} >= 700042
|
|
IGNORE= does not build
|
|
.endif
|
|
.endif
|
|
|
|
post-patch:
|
|
@${RM} -f ${WRKSRC}/config.status ${WRKSRC}/config.cache
|
|
@${ECHO_CMD} "LDFLAGS += -L${LOCALBASE}/lib" >> ${WRKSRC}/toolkit/components/Makefile.in
|
|
@${ECHO_CMD} "LDFLAGS += -L${LOCALBASE}/lib" >> ${WRKSRC}/toolkit/components/gnome/Makefile.in
|
|
|
|
.include <bsd.port.post.mk>
|