diff options
author | edwin <edwin@FreeBSD.org> | 2003-10-06 20:37:31 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-10-06 20:37:31 +0800 |
commit | 5f810c9eb5e6f2dfc9bf7311b967dbd15cb06574 (patch) | |
tree | 8f1d294a1abd4a09e4c69be7b151608ee3349c84 /editors/zoinks/Makefile | |
parent | 1fb2e8005f7e9eca52df2f9f20586902014d70c5 (diff) | |
download | freebsd-ports-gnome-5f810c9eb5e6f2dfc9bf7311b967dbd15cb06574.tar.gz freebsd-ports-gnome-5f810c9eb5e6f2dfc9bf7311b967dbd15cb06574.tar.zst freebsd-ports-gnome-5f810c9eb5e6f2dfc9bf7311b967dbd15cb06574.zip |
new port for ports tree (editors/zoinks)
Zoinks is a programmer's editor and development environment
for Unix/X11 systems. The editor has features similar to
Mac text editors like MPW and CodeWarrior. It also has
some features for HTML authoring. Zoinks supports
comparing/diffing files and directory hierarchies. It also
supports inputting and editing multi-byte text (e.g. Japanese
and other Asian languages).
PR: ports/54886
Submitted by: Mike Lockwood <mike@mikelockwood.com>
Diffstat (limited to 'editors/zoinks/Makefile')
-rw-r--r-- | editors/zoinks/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/editors/zoinks/Makefile b/editors/zoinks/Makefile new file mode 100644 index 000000000000..d21708140875 --- /dev/null +++ b/editors/zoinks/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: zoinks +# Date created: 26 July 2003 +# Whom: Mike Lockwood <mike@mikelockwood.com> +# +# $FreeBSD$ +# + +PORTNAME= zoinks +PORTVERSION= 0.3.5 +CATEGORIES= editors +MASTER_SITES= http://zoinks.mikelockwood.com/download/ +DISTNAME= ${PORTNAME}-${PORTVERSION} + +MAINTAINER= mike@mikelockwood.com +COMMENT= An X11 programmer's editor and development environment + +.if defined(WITH_IMLIB) +USE_GNOME= imlib +CONFIGURE_ARGS+= --enable-imlib +.else +CONFIGURE_ARGS+= --disable-imlib +.endif + +USE_XPM= yes +GNU_CONFIGURE= yes + +pre-everything:: + @${ECHO_MSG} "" + @${ECHO_MSG} "Zoinks can be built with optional support for calculating image sizes" + @${ECHO_MSG} "and image thumbnail creation for HTML files." + @${ECHO_MSG} "These features require the Gnome imlib library." + @${ECHO_MSG} "Use WITH_IMLIB=yes to enable these features." + @${ECHO_MSG} "" + +.include <bsd.port.mk> |