Annotation of OpenXM/misc/packages/FreeBSD/openxm-ports/openxm-1.1.3/Makefile, Revision 1.3
1.3 ! takayama 1: # $OpenXM: OpenXM/misc/packages/FreeBSD/openxm-ports/openxm-1.1.3/Makefile,v 1.2 2000/09/23 07:41:25 takayama Exp $
1.1 takayama 2:
1.2 takayama 3: ## The name of this directory should be changed to openxm from openxm-1.1.3
4: ## For debugging.
5: #TAR_WORK=$(HOME)/tmp
6: #DISTDIR=${TAR_WORK}
1.1 takayama 7:
1.2 takayama 8: ## OpenXM is put under ${PREFIX}/OpenXM and ${PREFIX}/bin, man
9: ## The default value of PREFIX is /usr/local
10: ## The next is for debugging. Do not forget to mkdir tmp2/bin.
11: #PREFIX=$(HOME)/tmp2
1.1 takayama 12:
1.2 takayama 13: ## How to update pkg/PLIST
14: # (1) uncomment #PREFIX=, #DISTDIR.
15: # Put the source tar-ball under $DISTDIR
16: # (2) make
17: # Double check all the files are properly genered under work/openxm-1.1.3
18: # (3) (cd files ; make ; ./gen-plist.shell)
19: # (4) Copy plist-tmp2 to pkg/PLIST and commit pkg/PLIST
1.1 takayama 20:
1.2 takayama 21: ################ NOTE ########################
22: ## Before typing in make, set your path to
23: ## set path=(/usr/local/jdk1.1.8/bin $path)
24: ## rehash
1.1 takayama 25:
1.2 takayama 26: ### How to test the port for openxm
27: ### cd /usr/ports/math ; tar xzvf ${TAR_WORK}/openxm-port.tar.gz
28: ### cp ${TAR_WORK}/openxm-1.1.3.tar.gz /usr/ports/distfiles
29: ### cd /usr/ports/math/openxm ; make install
30: ### [Try also make package , make deinstall, pkg_delete openxm-1.1.3 ,
31: ### pkg_add openxm-1.1.3.tgz]
32:
1.3 ! takayama 33: PORTNAME=openxm
! 34: PORTVERSION=1.1.3
1.2 takayama 35: CATEGORIES= math
36: ### Note
37: ### We do not have openxm-1.1.3.tar.gz at the master site, because
38: ### the source code distribution is not allowed for OpenXM_contrib2/asir2000.
39: ### Put openxm-1.1.3.tar.gz under /usr/ports/distfiles
40: ### The tar-ball can be generated by
41: ### (cd OpenXM/misc/packages/Generic ; make clean-work ; make tar-ball )
42:
43:
44: MAINTAINER= takayama@math.sci.kobe-u.ac.jp
45:
46: BUILD_DEPENDS= nkf:${PORTSDIR}/japanese/nkf \
47: platex:${PORTSDIR}/japanese/platex-euc \
48: xdvi:${PORTSDIR}/japanese/xdvik-vflib \
49: dvips:${PORTSDIR}/japanese/dvipsk-vflib \
50: /usr/local/bin/perl:${PORTSDIR}/japanese/perl5 \
51: jlatex2html:${PORTSDIR}/japanese/latex2html \
52: jmakeinfo:${PORTSDIR}/japanese/texinfo \
53: texi2html:${PORTSDIR}/textproc/texi2html \
54: /usr/local/jdk1.1.8/bin/javac:${PORTSDIR}/java/jdk \
55: bash:${PORTSDIR}/shells/bash2 \
56: autoconf:${PORTSDIR}/devel/autoconf \
57: ## I could not find a package for makeinfo.
58: ## makeinfo:${PORTSDIR}/print/texinfo \
59: ### Note:
60: ### In order to make dvips work, you need to modify
61: ### /usr/local/share/texmf/web2c/texmf.cnf.
62: ### See /var/db/pkg/japanese/dvipsk-vflib/+DISPLAY.
63: ### If your dvips does not work properly after this change,
64: ### uncomment the line xdvi:${PORTSDIR}/japanese/xdvik-vflib \
65: ### However, xdvi itself does not work fine: try to generate pkfonts that
66: ### already exist.
67: ### Unfortunately, japanese/vfxdvik is empty (2000, 3/4).
68:
69: RUN_DEPENDS=/compat/linux/usr/i486-linux-libc5/lib/libc.so.5:${PORTSDIR}/emulators/linux_base \
70: java:${PORTSDIR}/java/jdk \
71: ## /compat/linux/usr/bin/i386-redhat-linux-egcs:${PORTSDIR}/devel/linux_devtools \
72:
73:
74:
75: pre-install:
76: -/bin/rm -rf ${PREFIX}/OpenXM
77:
78:
79: OpenXM_MANPAGES=${PREFIX}/OpenXM/man/man1/sm1.1 ${PREFIX}/OpenXM/man/man1/openxm.1
80:
81: post-install :
82: # Reguild shell files to start binaries and copy it to ${PREFIX}/bin
83: # Modify pkg/INSTALL, too.
84: (cd ${PREFIX}/OpenXM/rc ; make clean ; make install PREFIX=${PREFIX})
85: #
86: -cp $(OpenXM_MANPAGES) ${PREFIX}/man/man1
87: -gzip -f ${PREFIX}/man/man1/sm1.1 ${PREFIX}/man/man1/openxm.1
88: -cat pkg/MESSAGE
89:
90: ## see /usr/share/mk/bsd.port.mk ==> /usr/ports/Mk/bsd.port/mk
91: ## make -d A
92: .include <bsd.port.mk>
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>