diff options
author | mharo <mharo@FreeBSD.org> | 1999-04-14 13:56:14 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-04-14 13:56:14 +0800 |
commit | 7ad54704c8faa4be0d72afb398ad6cb275b77c5c (patch) | |
tree | e61fbbd9f4cc4c6a0caa50f7e4dee85309a0ef07 | |
parent | 2ef6b669ebd6831f3c2c6c3100c94eba70364966 (diff) | |
download | freebsd-ports-gnome-7ad54704c8faa4be0d72afb398ad6cb275b77c5c.tar.gz freebsd-ports-gnome-7ad54704c8faa4be0d72afb398ad6cb275b77c5c.tar.zst freebsd-ports-gnome-7ad54704c8faa4be0d72afb398ad6cb275b77c5c.zip |
Really small editor and has syntax highlighting for quit a few languages.
PR: 11106
Submitted by: Chris Piazza cpiazza@home.net
-rw-r--r-- | editors/lpe/Makefile | 35 | ||||
-rw-r--r-- | editors/lpe/distinfo | 1 | ||||
-rw-r--r-- | editors/lpe/pkg-comment | 1 | ||||
-rw-r--r-- | editors/lpe/pkg-descr | 10 | ||||
-rw-r--r-- | editors/lpe/pkg-plist | 7 |
5 files changed, 54 insertions, 0 deletions
diff --git a/editors/lpe/Makefile b/editors/lpe/Makefile new file mode 100644 index 000000000000..a6b4fa8246d9 --- /dev/null +++ b/editors/lpe/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: lpe +# Version required: 1.1.5 +# Date created: 12 April 1999 +# Whom: Chris Piazza <cpiazza@home.net> +# +# $Id$ +# + +DISTNAME= lpe-1.1.5 +CATEGORIES= editors +MASTER_SITES= http://cdsmith.twu.net/lpe/ + +MAINTAINER= cpiazza@home.net + +LIB_DEPENDS= slang.1:${PORTSDIR}/devel/libslang + +USE_GMAKE= yes + +MAN1= lpe.1 + +post-patch: + @${SED} -e s#__PREFIX__#${PREFIX}#g ${WRKSRC}/options.h > ${WRKSRC}/options.h.new + @${MV} -f ${WRKSRC}/options.h.new ${WRKSRC}/options.h + +do-install: + ${MKDIR} ${PREFIX}/lib/lpe + ${INSTALL_PROGRAM} ${WRKSRC}/lpe ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/cmode.so ${PREFIX}/lib/lpe + ${INSTALL_DATA} ${WRKSRC}/cppmode.so ${PREFIX}/lib/lpe + ${INSTALL_DATA} ${WRKSRC}/htmlmode.so ${PREFIX}/lib/lpe + ${INSTALL_DATA} ${WRKSRC}/perlmode.so ${PREFIX}/lib/lpe + ${INSTALL_DATA} ${WRKSRC}/sgmlmode.so ${PREFIX}/lib/lpe + ${INSTALL_MAN} ${WRKSRC}/lpe.1 ${PREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/editors/lpe/distinfo b/editors/lpe/distinfo new file mode 100644 index 000000000000..107ffa1fa826 --- /dev/null +++ b/editors/lpe/distinfo @@ -0,0 +1 @@ +MD5 (lpe-1.1.5.tar.gz) = 708371d5ddfe4e663b0bff2952851731 diff --git a/editors/lpe/pkg-comment b/editors/lpe/pkg-comment new file mode 100644 index 000000000000..abf21284bdf4 --- /dev/null +++ b/editors/lpe/pkg-comment @@ -0,0 +1 @@ +A "lightweight programmer's editor." diff --git a/editors/lpe/pkg-descr b/editors/lpe/pkg-descr new file mode 100644 index 000000000000..62918bfbaf15 --- /dev/null +++ b/editors/lpe/pkg-descr @@ -0,0 +1,10 @@ +A very small and fast slang-based editor that features syntax-highlighting +via plug-in modules for C, C++, perl, html, and sgml. + +Homepage: +http://cdsmith.twu.net/lpe/ +Author: +Chris Smith <cd_smith@ou.edu> + +-Chris Piazza +cpiazza@home.net diff --git a/editors/lpe/pkg-plist b/editors/lpe/pkg-plist new file mode 100644 index 000000000000..b8bc834ac5b0 --- /dev/null +++ b/editors/lpe/pkg-plist @@ -0,0 +1,7 @@ +bin/lpe +lib/lpe/cmode.so +lib/lpe/cppmode.so +lib/lpe/htmlmode.so +lib/lpe/perlmode.so +lib/lpe/sgmlmode.so +@dirrm lib/lpe |