fcf3243d74
- Extract appendices as root:wheel. PR: ports/41762 Submitted by: Kazu TAKAMUNE <takamune@avrl.mei.co.jp> (MAINTAINER) With the following changes: - Since ftp.sra.co.jp occasionally returns a "502 Bad Gateway" error, add a decent mirror site ftp.eos.hokudai.ac.jp to MASTER_SITES. - Update genius2 to 1.1. - Bump PORTREVISION.
75 lines
1.9 KiB
Makefile
75 lines
1.9 KiB
Makefile
# New ports collection makefile for: eb
|
|
# Date created: 20 Jan 1999
|
|
# Whom: Motoyuki Kasahara <m-kasahr@sra.co.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= eb
|
|
PORTVERSION= 2.3.8
|
|
PORTREVISION= 1
|
|
CATEGORIES= japanese
|
|
MASTER_SITES= ftp://ftp.sra.co.jp/pub/misc/eb/ \
|
|
ftp://ftp.eos.hokudai.ac.jp/pub/network/ndtp/eb/ \
|
|
ftp://ftp.sra.co.jp/pub/misc/eb/old/2.3/:oldfiles
|
|
DISTFILES= ${EBFILES}:oldfiles \
|
|
${LISTFILES} \
|
|
${APPENDIXFILES}
|
|
EXTRACT_ONLY= ${EBFILES}
|
|
|
|
PATCH_SITES= ftp://ftp.sra.co.jp/pub/misc/eb/old/2.3/
|
|
PATCHFILES= ${DISTNAME}+.diff
|
|
|
|
MAINTAINER= takamune@avrl.mei.co.jp
|
|
|
|
EBFILES= ${DISTNAME}${EXTRACT_SUFX}
|
|
LISTFILES= appendix/LIST \
|
|
appendix/LIST-ja
|
|
APPENDIXFILES= appendix/cencro-1.0.tar.gz \
|
|
appendix/chujiten-2.3.tar.gz \
|
|
appendix/chujiten2-2.0.tar.gz \
|
|
appendix/chujiten6-2.3.tar.gz \
|
|
appendix/colloc-2.0.tar.gz \
|
|
appendix/crownfj-2.0.tar.gz \
|
|
appendix/daihyakka-1.0.tar.gz \
|
|
appendix/daijirin-2.0.tar.gz \
|
|
appendix/dd75-2.0.tar.gz \
|
|
appendix/genius-1.0.tar.gz \
|
|
appendix/genius2-1.1.tar.gz \
|
|
appendix/global-2.0.tar.gz \
|
|
appendix/heritage-2.2.tar.gz \
|
|
appendix/izumi-2.0.tar.gz \
|
|
appendix/jitenban-2.4.tar.gz \
|
|
appendix/jitenban97-2.1.tar.gz \
|
|
appendix/kanjigen-2.0.tar.gz \
|
|
appendix/kanjigen2-2.0.tar.gz \
|
|
appendix/kojien-2.3.tar.gz \
|
|
appendix/kojien2-2.0.tar.gz \
|
|
appendix/kojien4-2.2.tar.gz \
|
|
appendix/oxford-2.0.tar.gz \
|
|
appendix/plus-2.0.tar.gz \
|
|
appendix/readers-2.2.tar.gz \
|
|
appendix/readers2-2.0.tar.gz \
|
|
appendix/superdic98-1.0.tar.gz
|
|
|
|
DIST_SUBDIR= eb
|
|
USE_LIBTOOL= yes
|
|
INSTALLS_SHLIB= yes
|
|
CONFIGURE_ARGS= --with-zlib
|
|
|
|
APPENDIXDIR= ${PREFIX}/share/eb/appendix
|
|
|
|
post-extract:
|
|
cd ${WRKSRC} && ${RM} -rf zlib
|
|
|
|
post-install:
|
|
.for file in ${LISTFILES}
|
|
${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${file} ${APPENDIXDIR}
|
|
.endfor
|
|
.for file in ${APPENDIXFILES}
|
|
${TAR} --no-same-owner --exclude CVS -C ${APPENDIXDIR} -zxmf\
|
|
${DISTDIR}/${DIST_SUBDIR}/${file}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|