diff options
author | shige <shige@FreeBSD.org> | 1999-04-30 03:01:44 +0000 |
---|---|---|
committer | shige <shige@FreeBSD.org> | 1999-04-30 03:01:44 +0000 |
commit | 918c90230a6a617201cd4bcd4bb8d358c81733c8 (patch) | |
tree | 372759283cf6ff358345e15549eaa78b04cdc1d5 /editors | |
parent | a5f1aa1cf1b04a5b00da16fb6872829051be2081 (diff) | |
download | FreeBSD-ports-918c90230a6a617201cd4bcd4bb8d358c81733c8.zip FreeBSD-ports-918c90230a6a617201cd4bcd4bb8d358c81733c8.tar.gz |
New port: New custom library for mule.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/custom-mule/Makefile | 31 | ||||
-rw-r--r-- | editors/custom-mule/pkg-comment | 1 | ||||
-rw-r--r-- | editors/custom-mule/pkg-descr | 27 |
3 files changed, 59 insertions, 0 deletions
diff --git a/editors/custom-mule/Makefile b/editors/custom-mule/Makefile new file mode 100644 index 0000000..e6f82cf --- /dev/null +++ b/editors/custom-mule/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: custom for mule +# Version required: 1.9962 +# Date created: 27 December 1998 +# Whom: shige +# +# $Id$ +# + +MAINTAINER= shige@FreeBSD.ORG + +PATCHFILES= custom-1.9962.patch +PATCH_SITES= http://www.jpl.org/elips/semi-gnus-mule23@1934/ +PATCH_DIST_STRIP= -p1 + +# This is a slave port. +PORTCLASS= slave + +MASTERDIR= ${.CURDIR}/../../editors/custom-emacs + +# emacs port setup +EMACS_NAME= mule +EMACS_PORT= mule +EMACS_VER= 19.34 +EMACS_LIBDIR= share/${EMACS_NAME} +HAVE_COMMON_PORT= YES + +# pkg/* files but PLIST are used in ${.CURDIR} +PKGDIR= ${.CURDIR}/pkg +PLIST= ${MASTERDIR}/pkg/PLIST + +.include <${MASTERDIR}/Makefile> diff --git a/editors/custom-mule/pkg-comment b/editors/custom-mule/pkg-comment new file mode 100644 index 0000000..509d29e --- /dev/null +++ b/editors/custom-mule/pkg-comment @@ -0,0 +1 @@ +The Custom Library for mule. diff --git a/editors/custom-mule/pkg-descr b/editors/custom-mule/pkg-descr new file mode 100644 index 0000000..8a0452e --- /dev/null +++ b/editors/custom-mule/pkg-descr @@ -0,0 +1,27 @@ +The Custom Library for mule. + +--- Emacs Library Porting + +The Custom Library is intended for use by emacs lisp programmers who +want to make their emacs packages easily customizable. It allows the +programmer to + + - declare the type for each user option, + i.e. specify the set of legal values for each variable, + - specify and initialize the faces used by the package, and + - organize the user options into groups and hierarchies. + +The user will then be able to customize the user options through a +helpful structured interface that resembles the property editor in +modern GUI programs. + +How to use: + M-x customize + +Installed at: + ${PREFIX}/share/mule/19.34/site-lisp/ + +See also: + http://www.dina.kvl.dk/~abraham/custom/ + +--- Porting by <shige@FreeBSD.ORG>. |