New port: New custom library for mule.

This commit is contained in:
Shigeyuki Fukushima 1999-04-30 03:01:44 +00:00
parent aabfebfa8b
commit 8c2dbcb3ef
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=18193
3 changed files with 59 additions and 0 deletions

View file

@ -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>

View file

@ -0,0 +1 @@
The Custom Library for mule.

View file

@ -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>.