mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
b07759fae3
PR: 7342 Submitted by: Taguchi Takeshi <taguchi@tohoku.iij.ad.jp>
61 lines
1.6 KiB
Makefile
61 lines
1.6 KiB
Makefile
# New ports collection makefile for: ja-tk8.0
|
|
# Version required: 8.0
|
|
# Date created: 26 Dec 1997
|
|
# Whom: taguchi@tohoku.iij.ad.jp
|
|
#
|
|
# $Id: Makefile,v 1.3 1998/07/04 19:14:03 steve Exp $
|
|
#
|
|
|
|
DISTNAME= tk8.0p2
|
|
PKGNAME= ja-tk-8.0.2
|
|
CATEGORIES= japanese x11 tk80
|
|
MASTER_SITES= ftp://ftp.scriptics.com/pub/tcl/tcl8_0/
|
|
|
|
PATCH_SITES= ftp://ftp.sra.co.jp/pub/lang/tcl/jp/
|
|
PATCHFILES= tk8.0p2jp1.1b0.patch.gz
|
|
|
|
MAINTAINER= taguchi@tohoku.iij.ad.jp
|
|
|
|
LIB_DEPENDS= tcl80jp\\.1\\.2:${PORTSDIR}/japanese/tcl80
|
|
|
|
VERSION= 8.0
|
|
TOPDIR= ${WRKDIR}/tk${VERSION}
|
|
WRKSRC= ${TOPDIR}/unix
|
|
.if defined(PATCH_DEBUG)
|
|
PATCH_DIST_ARGS=-d ${TOPDIR} -E ${PATCH_DIST_STRIP}
|
|
.else
|
|
PATCH_DIST_ARGS=-d ${TOPDIR} --forward --quiet -E ${PATCH_DIST_STRIP}
|
|
.endif
|
|
GNU_CONFIGURE= yes
|
|
USE_AUTOCONF= yes
|
|
CONFIGURE_ARGS= --enable-shared --with-tcl=${PREFIX}/lib/tcl${VERSION}jp
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-patch:
|
|
@${CP} ${FILESDIR}/README.FreeBSD.in ${TOPDIR}/README.FreeBSD.JP.in
|
|
@${SED} -e 's%AC_OUTPUT(Makefile tkConfig.sh)%AC_OUTPUT(Makefile tkConfig.sh ../README.FreeBSD.JP)%' \
|
|
< ${WRKSRC}/configure.in \
|
|
> ${WRKSRC}/configure.in.tmp
|
|
@${MV} -f ${WRKSRC}/configure.in.tmp ${WRKSRC}/configure.in
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/tk${VERSION}jp
|
|
@(cd ${TOPDIR}; \
|
|
${INSTALL_DATA} README changes README.FreeBSD.JP \
|
|
README.JP changes.JP \
|
|
Incompat80jp ${PREFIX}/share/doc/tk${VERSION}jp; \
|
|
)
|
|
.endif
|
|
@${LDCONFIG} -m ${PREFIX}/lib
|
|
@${CAT} ${PKGDIR}/MESSAGE
|
|
|
|
test:
|
|
cd ${WRKSRC} && ${MAKE} test
|
|
|
|
install-man:
|
|
cd ${WRKSRC} && ${MAKE} install-man
|
|
|
|
.include <bsd.port.mk>
|