mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
27e88f10fc
/usr/local/share/emacs/site-lisp /usr/local/lib/mule-site-lisp as the "site-lisp" directories. Basically all I did was tuck --locallisppath=${PREFIX}/share/emacs/site-lisp:${PREFIX}/lib/mule/site-lisp to the end of CONFIGURE_ARGS. Also, all the patch-aa's are unnecessary because bsd.port.mk now will take ${CFLAGS} from /etc/make.conf and put it in the environment before calling configure.
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# New ports collection makefile for: mule
|
|
# Version required: 2.2.2
|
|
# Date created: 22 November 1994
|
|
# Whom: Satoshi Asami (asami)
|
|
#
|
|
# $Id: Makefile,v 1.18 1995/04/23 10:33:33 asami Exp $
|
|
#
|
|
|
|
DISTNAME= mule-2.2
|
|
PKGNAME= mule-2.2.2
|
|
CATEGORIES+= editors
|
|
MASTER_SITES= ftp://ftp.cs.buffalo.edu/pub/mule/ \
|
|
ftp://etlport.etl.go.jp/pub/mule/ \
|
|
ftp://sh.wide.ad.jp/JAPAN/mule/
|
|
|
|
PATCH_SITES= ftp://ftp.cs.buffalo.edu/pub/mule/ \
|
|
ftp://etlport.etl.go.jp/pub/mule/ \
|
|
ftp://sh.wide.ad.jp/JAPAN/mule/
|
|
PATCHFILES= patch-2.2.1.gz patch-2.2.2.gz
|
|
PATCH_DIST_STRIP= -p1
|
|
|
|
MAINTAINER= asami@FreeBSD.ORG
|
|
|
|
HAS_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
CONFIGURE_ARGS= i386--freebsd --prefix=${PREFIX} --with-x-toolkit \
|
|
--terminal-face \
|
|
--locallisppath=${PREFIX}/share/emacs/site-lisp:${PREFIX}/lib/mule/site-lisp
|
|
|
|
STRIP=
|
|
|
|
pre-build:
|
|
find ${WRKSRC} -name \*.orig -exec /bin/rm -f \{} \;
|
|
|
|
post-install:
|
|
# note that any2ps is a script
|
|
strip ${PREFIX}/bin/b2m
|
|
strip ${PREFIX}/bin/coco
|
|
strip ${PREFIX}/bin/m2ps
|
|
strip ${PREFIX}/bin/mule-19.28
|
|
gzip -9nf ${PREFIX}/man/man1/coco.1
|
|
gzip -9nf ${PREFIX}/man/man1/m2ps.1
|
|
gzip -9nf ${PREFIX}/man/man1/mule.1
|
|
|
|
.include <bsd.port.mk>
|