mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
aa85e6e0da
Changes (from PR): - japanese/ndtpd o Set default syslog file for `/var/log/ndtpd.log'. o Change the default working directory `/var/ndtpd' to `/var/run/ndtpd'. * It will created by `${PREFIX}/etc/rc.d/ndtpd.sh' (even if the user select "Inetd mode" !) * Lock files and a PID file are created under it. o Support some arguments in the startup script: ${PREFIX}/etc/rc.d/ndtpd.sh start|stop|kill|restart|status|terminate o Separate the session to build `ndtpd.sh.sample' from `post-install' into `post-build'. o Don't configure EB sybsystem in NDTPD. - japanese/eb o Don't configure ZLIB sybsystem in EB. o Don't define CONFIGURE_ENV. * Suggested by Michael's last commit to japanese/ndtpd/Makefile. PR: 16117 Submitted by: Kazu TAKAMUNE <takamune@avrl.mei.co.jp>
65 lines
1.4 KiB
Makefile
65 lines
1.4 KiB
Makefile
# New ports collection makefile for: eb
|
|
# Version required: 2.3.6
|
|
# Date created: 20 Jan 1999
|
|
# Whom: Motoyuki Kasahara <m-kasahr@sra.co.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= eb-2.3.6
|
|
PKGNAME= ja-eb-2.3.6
|
|
CATEGORIES= japanese
|
|
MASTER_SITES= ftp://ftp.sra.co.jp/pub/misc/eb/
|
|
DISTFILES= ${EBFILES} ${APPENDIXFILES}
|
|
|
|
MAINTAINER= takamune@avrl.mei.co.jp
|
|
|
|
EBFILES= ${DISTNAME}.tar.gz
|
|
APPENDIXFILES= cencro-1.0.tar.gz \
|
|
chujiten-2.3.tar.gz \
|
|
chujiten2-2.0.tar.gz \
|
|
chujiten6-2.3.tar.gz \
|
|
colloc-2.0.tar.gz \
|
|
crownfj-2.0.tar.gz \
|
|
daihyakka-1.0.tar.gz \
|
|
daijirin-2.0.tar.gz \
|
|
dd75-2.0.tar.gz \
|
|
genius-1.0.tar.gz \
|
|
global-2.0.tar.gz \
|
|
heritage-2.2.tar.gz \
|
|
izumi-2.0.tar.gz \
|
|
jitenban-2.4.tar.gz \
|
|
jitenban97-2.1.tar.gz \
|
|
kanjigen-2.0.tar.gz \
|
|
kanjigen2-2.0.tar.gz \
|
|
kojien-2.3.tar.gz \
|
|
kojien2-2.0.tar.gz \
|
|
kojien4-2.2.tar.gz \
|
|
oxford-2.0.tar.gz \
|
|
plus-2.0.tar.gz \
|
|
readers-2.2.tar.gz \
|
|
readers2-2.0.tar.gz
|
|
APPENDIXFILES:= ${APPENDIXFILES:S,^,appendix/,}
|
|
LISTFILES= LIST LIST-ja
|
|
|
|
EXTRACT_ONLY= ${EBFILES}
|
|
|
|
DIST_SUBDIR= eb
|
|
USE_LIBTOOL= yes
|
|
CONFIGURE_ARGS= --with-zlib
|
|
|
|
APPENDIXDIR= ${PREFIX}/share/eb/appendix
|
|
|
|
post-extract:
|
|
cd ${WRKSRC} && ${RM} -rf zlib
|
|
|
|
post-install:
|
|
.for file in ${APPENDIXFILES}
|
|
${TAR} -C ${APPENDIXDIR} -zxmf ${DISTDIR}/${DIST_SUBDIR}/${file}
|
|
.endfor
|
|
.for file in ${LISTFILES}
|
|
${INSTALL_DATA} ${FILESDIR}/${file} ${APPENDIXDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|