mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
f350303547
split mule into three ports: editors/mule: no language-specific support japanese/mule-canna: Japanese support, Canna library built-in japanese/mule-wnn: Japanese support, Wnn library built-in Note that the two ports under japanese/ will overwrite some of the emacs support files. Although this itself isn't a problem, if you pkg_delete it, you will lose some files needed for emacs. (This is explained in DESCR, although god knows who reads them.) Also I've listed every single file in the PLIST.
45 lines
1.1 KiB
Makefile
45 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.17 1995/04/22 12:39:19 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
|
|
|
|
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>
|