mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
61770d0a45
(with all entries listed in emacs.texi) deleted only the first entry when the user did a pkg_delete (a bug in install-info, maybe?).
32 lines
785 B
Makefile
32 lines
785 B
Makefile
# New ports collection makefile for: GNU emacs
|
|
# Version required: 19.34b
|
|
# Date created: 29 October 1994
|
|
# Whom: jkh
|
|
#
|
|
# $Id: Makefile,v 1.27 1997/04/18 10:48:33 asami Exp $
|
|
#
|
|
|
|
DISTNAME= emacs-19.34b
|
|
CATEGORIES= editors
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
|
|
WRKSRC= ${WRKDIR}/emacs-19.34
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
CONFIGURE_ARGS= i386--freebsd --with-x-toolkit
|
|
STRIP=
|
|
MAN1= emacs.1 etags.1 ctags.1
|
|
|
|
post-install:
|
|
.for file in emacs-19.34 emacsclient etags ctags b2m
|
|
strip ${PREFIX}/bin/${file}
|
|
.endfor
|
|
if [ ! -f ${PREFIX}/info/dir ]; then \
|
|
sed -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \
|
|
fi
|
|
.for info in emacs vip viper forms gnus mh-e cl sc dired-x ediff ccmode
|
|
install-info ${PREFIX}/info/${info} ${PREFIX}/info/dir
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|