54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
35 lines
800 B
Makefile
35 lines
800 B
Makefile
# New ports collection makefile for: otcl
|
|
# Date created: 23 April 1999
|
|
# Whom: obonilla
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= otcl
|
|
PORTVERSION= 1.9
|
|
CATEGORIES= lang tcl84 tk84
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= otcl-tclcl
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= MIT Object Tcl
|
|
|
|
LIB_DEPENDS= tk84:${PORTSDIR}/x11-toolkits/tk84
|
|
|
|
USE_AUTOTOOLS= autoconf:213
|
|
CONFIGURE_ARGS= --with-tcl-ver=8.4 --with-tk-ver=8.4
|
|
INSTALLS_SHLIB= yes
|
|
|
|
PKGINSTALL= ${PORTSDIR}/lang/tcl84/pkg-install.tclsh
|
|
PKGDEINSTALL= ${PORTSDIR}/lang/tcl84/pkg-deinstall.tclsh
|
|
|
|
post-install:
|
|
${LN} -sf libotcl.so ${PREFIX}/lib/libotcl.so.1
|
|
${STRIP_CMD} ${PREFIX}/bin/otclsh
|
|
${STRIP_CMD} ${PREFIX}/bin/owish
|
|
.if exists(${PKGINSTALL})
|
|
${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|