freebsd-ports/x11-toolkits/tk80/Makefile
Bill Fenner 11dd3a5f4f Fix the script that makes the long-name man page links, and add the
long-name man pages to PLIST.
Note that instead of including a 54k patch, there's a post-patch: target
 in the Makefile that uses sed.

PR:		ports/9786 and ports/9787
1999-05-04 19:33:50 +00:00

61 lines
1.4 KiB
Makefile

# New ports collection makefile for: tk8.0
# Version required: tk8.0
# Date created: 19 August 1997
# Whom: jkh
#
# $Id: Makefile,v 1.18 1999/04/30 16:11:48 cwt Exp $
#
DISTNAME= tk8.0.5
PKGNAME= tk-8.0.5
CATEGORIES= x11-toolkits tk80
MASTER_SITES= ftp://ftp.scriptics.com/pub/tcl/tcl8_0/
MAINTAINER= cwt@Freebsd.ORG
LIB_DEPENDS= tcl80.1:${PORTSDIR}/lang/tcl80
USE_XLIB= yes
WRKSRC= ${WRKDIR}/tk8.0.5/unix
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-shared
CONFIGURE_ENV= PORTSDIR=${PORTSDIR} TK_LIB_FILE=${TK_LIB_FILE}
PKGINSTALL= ${PKGDIR}/INSTALL.wish
SHLIB_MAJOR= 1
SHLIB_MINOR= 4
MAKEFILE= makefile
TK_LIB= libtk80.so
.include <bsd.port.pre.mk>
.if ${PORTOBJFORMAT} == "elf"
TK_LIB_FILE= ${TK_LIB}.${SHLIB_MAJOR}
.else
TK_LIB_FILE= ${TK_LIB}.${SHLIB_MAJOR}.${SHLIB_MINOR}
.endif
post-patch:
@${CP} ${WRKSRC}/mkLinks ${WRKSRC}/mkLinks.orig
@${SED} -e 's/\.[3n]/&.gz/g' ${WRKSRC}/mkLinks.orig > ${WRKSRC}/mkLinks
post-configure:
@${CP} ${FILESDIR}/Makefile.lib ${WRKSRC}
@${CP} ${FILESDIR}/makefile ${WRKSRC}
pre-build:
@cd ${WRKSRC} && ${MAKE} -f Makefile.lib PREFIX=${PREFIX} \
SHLIB_MAJOR=${SHLIB_MAJOR} SHLIB_MINOR=${SHLIB_MINOR}
post-install:
${LN} -sf ${TK_LIB_FILE} ${PREFIX}/lib/${TK_LIB}
${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib
.if exists(${PKGINSTALL})
${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL}
.endif
test:
cd ${WRKSRC}; make test
.include <bsd.port.post.mk>