mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
11137ee7a2
easy-to-use WYSIWYG web page editing. Nvu 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 This is a pre-compiled Linux/i386 version. WWW: http://www.nvu.com/ PR: ports/66607 Submitted by: Ilya Khamushkin <ilya@space.rootshell.ru> Approved by: adamw (mentor)
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
# New ports collection makefile for: linux-nvu
|
|
# Date created: 2004-05-10
|
|
# Whom: Ilya Khamushkin
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nvu
|
|
PORTVERSION= 0.20
|
|
CATEGORIES= www linux
|
|
MASTER_SITES= http://cvs.nvu.com/download/
|
|
PKGNAMEPREFIX= linux-
|
|
DISTFILES= ${DISTNAME}-pc-linux-gnu${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= ilya@space.rootshell.ru
|
|
COMMENT= A complete Web Authoring System
|
|
|
|
RUN_DEPENDS= \
|
|
${LINUXBASE}/usr/X11R6/lib/libX11.so.6:${PORTSDIR}/x11/linux-XFree86-libs \
|
|
${LINUXBASE}/usr/lib/libgobject-2.0.so.0:${PORTSDIR}/devel/linux-glib2 \
|
|
${LINUXBASE}/usr/lib/libgtk-x11-2.0.so.0:${PORTSDIR}/x11-toolkits/linux-gtk2 \
|
|
${LINUXBASE}/usr/lib/libatk-1.0.so.0:${PORTSDIR}/accessibility/linux-atk \
|
|
${LINUXBASE}/usr/lib/libpango-1.0.so.0:${PORTSDIR}/x11-toolkits/linux-pango \
|
|
${LINUXBASE}/usr/lib/libfontconfig.so.1:${PORTSDIR}/x11-fonts/linux-fontconfig
|
|
|
|
NO_BUILD= yes
|
|
NO_FILTER_SHLIBS= yes
|
|
ONLY_FOR_ARCHS= i386
|
|
USE_X_PREFIX= yes
|
|
NVULIB_DIR= lib/${UNIQUENAME}
|
|
INSTALL_DIR= ${PREFIX}/${NVULIB_DIR}
|
|
PLIST_SUB= NVULIB_DIR=${NVULIB_DIR}
|
|
|
|
do-install:
|
|
@${MKDIR} ${INSTALL_DIR}
|
|
@cd ${WRKSRC} && ${FIND} * | \
|
|
${CPIO} -pdm -L -R ${LIBOWN}:${LIBGRP} ${INSTALL_DIR}
|
|
@${LN} -s ${INSTALL_DIR}/${PORTNAME} \
|
|
${PREFIX}/bin/${UNIQUENAME}
|
|
|
|
.include <bsd.port.mk>
|