blob: 984fd7d0d25fc15cd3c04112bfc003f582d92f5a (
plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# New ports collection makefile for: GNU emacs
# Date created: 29 October 1994
# Whom: jkh
#
# $FreeBSD$
#
PORTNAME= emacs
PORTVERSION= 20.7
CATEGORIES+= editors ipv6
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= emacs
MAINTAINER= jseger@FreeBSD.org
USE_AUTOCONF= yes
USE_GMAKE= yes
CONFIGURE_TARGET= ${MACHINE_ARCH}--freebsd
.if !defined(WITHOUT_X11)
CONFIGURE_ARGS= --with-x-toolkit --with-pop
USE_XLIB= yes
.else
CONFIGURE_ARGS= --with-x=no --with-pop
.endif
MAKE_ENV= INSTALL_SCRIPT="${INSTALL_SCRIPT}"
MAN1= emacs.1 etags.1 ctags.1
PLIST_SUB= EMACS_VER=20.7 EMACS_ARCH=${CONFIGURE_TARGET}
#WRKSRC= ${WRKDIR}/emacs-20.7
.if defined(WITH_XPG4)
CONFIGURE_ARGS+= --with-xpg4
.endif
pre-fetch:
.if !defined(WITH_XPG4)
@${ECHO_MSG} "NOTE: You can have international locale library support "
@${ECHO_MSG} "by adding \"WITH_XPG4=yes\" to argument of make."
.endif
pre-build:
${RM} -rf ${WRKSRC}/info/*
.include <bsd.port.mk>
|