03109fc783
Submitted by: thierry (thanks!!)
78 lines
2.8 KiB
Makefile
78 lines
2.8 KiB
Makefile
# New ports collection makefile for: tix
|
|
# Date created: 22 December 1996
|
|
# Whom: Thomas Gellekum <tg@freebsd.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tix
|
|
PORTVERSION= 8.4.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11-toolkits tk
|
|
MASTER_SITES= SF
|
|
DISTNAME= Tix${DISTVERSION}-src${DISTVERSIONSUFFIX}
|
|
|
|
MAINTAINER= doconnor@gsoft.com.au
|
|
COMMENT= An extension to the Tk toolkit
|
|
|
|
WRKSRC= ${WRKDIR}/Tix${DISTVERSION}
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_TK= 84+
|
|
CONFIGURE_ARGS= --enable-shared --enable-sam \
|
|
--with-tclconfig="${TCL_LIBDIR}" \
|
|
--with-tkconfig="${TK_LIBDIR}" \
|
|
--with-tclinclude="${TCL_INCLUDEDIR}" \
|
|
--with-tkinclude="${TK_INCLUDEDIR}"
|
|
# this should probably be added to bsd.port.mk
|
|
CONFIGURE_ENV= PREFIX=${PREFIX}
|
|
MANN= TixIntro.n compound.n pixmap.n tix.n tixBalloon.n \
|
|
tixButtonBox.n tixCheckList.n tixComboBox.n tixControl.n \
|
|
tixDestroy.n tixDirList.n tixDirSelectDialog.n tixDirTree.n \
|
|
tixDisplayStyle.n tixExFileSelectBox.n tixExFileSelectDialog.n \
|
|
tixFileEntry.n tixFileSelectBox.n tixFileSelectDialog.n \
|
|
tixForm.n tixGetBoolean.n tixGetInt.n tixGrid.n tixHList.n \
|
|
tixInputOnly.n tixLabelEntry.n tixLabelFrame.n \
|
|
tixListNoteBook.n tixMeter.n tixMwm.n tixNBFrame.n \
|
|
tixNoteBook.n tixOptionMenu.n tixPanedWindow.n tixPopupMenu.n \
|
|
tixScrolledHList.n tixScrolledListBox.n tixScrolledText.n \
|
|
tixScrolledWindow.n tixSelect.n tixStdButtonBox.n tixTList.n \
|
|
tixTree.n tixUtils.n
|
|
|
|
TIX_LIB= libTix${PORTVERSION}.so
|
|
TIX_LIB_FILE= ${TIX_LIB}.0
|
|
.include <bsd.port.pre.mk>
|
|
|
|
pre-extract:
|
|
@${MAKE} clean
|
|
|
|
pre-configure:
|
|
@(cd ${WRKSRC} && \
|
|
CC="${CC}" ac_cv_path_CC="${CC}" CFLAGS="${CFLAGS}" \
|
|
INSTALL="/usr/bin/install -c -o ${BINOWN} -g ${BINGRP}" \
|
|
INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
|
|
INSTALL_SCRIPT="${INSTALL_SCRIPT}" \
|
|
${CONFIGURE_ENV} ./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS})
|
|
|
|
post-configure:
|
|
@${REINPLACE_CMD} -e "s|package require Tcl 8\.4|package require Tcl ${TCL_VER}|g" ${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -e "s,TCL_SRC_DIR .*,TCL_SRC_DIR=${TCL_INCLUDEDIR},g" \
|
|
-e "s,TK_SRC_DIR .*,TK_SRC_DIR=${TK_INCLUDEDIR},g" \
|
|
-e "s,\$$(TCL_BIN_DIR)/tclsh,${TCLSH},g" \
|
|
${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/man/*.n ${PREFIX}/man/mann/
|
|
${RM} ${PREFIX}/lib/Tix${PORTVERSION}/${TIX_LIB}
|
|
${CP} -p ${WRKSRC}/${TIX_LIB} ${WRKSRC}/${TIX_LIB_FILE}
|
|
${INSTALL_LIB} ${WRKSRC}/${TIX_LIB_FILE} ${PREFIX}/lib
|
|
${LN} -fs ${PREFIX}/lib/${TIX_LIB_FILE} ${PREFIX}/lib/${TIX_LIB}
|
|
${LN} -fs ${PREFIX}/lib/${TIX_LIB_FILE} ${PREFIX}/lib/Tix${PORTVERSION}/${TIX_LIB}
|
|
.for dir in generic unix
|
|
${MKDIR} ${PREFIX}/include/tix/${dir}
|
|
${INSTALL_DATA} ${WRKSRC}/${dir}/*.h ${PREFIX}/include/tix/${dir}
|
|
.endfor
|
|
${LN} -sf ${PREFIX}/include/tix/generic/tix.h ${PREFIX}/include/tix.h
|
|
${RMDIR} ${PREFIX}/lib/Tix${PORTVERSION}/html
|
|
|
|
.include <bsd.port.post.mk>
|