blob: 0859b2f04109fee254bf69c8c40e174de31efedb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# New ports collection makefile for: GNU emacs
# Version required: 19.34b
# Date created: 29 October 1994
# Whom: jkh
#
# $Id: Makefile,v 1.25 1996/11/18 10:22:58 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; do \
strip ${PREFIX}/bin/$$file; \
done
.include <bsd.port.mk>
|