diff options
author | tg <tg@FreeBSD.org> | 1996-12-30 15:13:51 +0800 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 1996-12-30 15:13:51 +0800 |
commit | f6f0170107cba8d9770aa12772c5b11c1bd802b3 (patch) | |
tree | b74e38a03885f58d7632160a74cbf6747b38ae3e /x11-toolkits/tix/Makefile | |
parent | 5a56cd4d3d26e1bb7866ce7cf6d3304a51387d6e (diff) | |
download | freebsd-ports-gnome-f6f0170107cba8d9770aa12772c5b11c1bd802b3.tar.gz freebsd-ports-gnome-f6f0170107cba8d9770aa12772c5b11c1bd802b3.tar.zst freebsd-ports-gnome-f6f0170107cba8d9770aa12772c5b11c1bd802b3.zip |
Import of Tix, an extension of Tk with lots of useful widgets.
Diffstat (limited to 'x11-toolkits/tix/Makefile')
-rw-r--r-- | x11-toolkits/tix/Makefile | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/x11-toolkits/tix/Makefile b/x11-toolkits/tix/Makefile new file mode 100644 index 000000000000..8a5c9539bce8 --- /dev/null +++ b/x11-toolkits/tix/Makefile @@ -0,0 +1,50 @@ +# New ports collection makefile for: tix +# Version required: 1.4b1 +# Date created: 22 December 1996 +# Whom: Thomas Gellekum <tg@freebsd.org> +# +# $Id$ +# + +DISTNAME= Tix4.1b1 +PKGNAME= tix-4.1b1 +CATEGORIES= x11 +MASTER_SITES= ftp://ftp.xpi.com/pub/ + +MAINTAINER= ports@FreeBSD.ORG + +LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-tk40 --enable-tk41 --enable-tk41_shared \ + --with-tcl75_src_dir=/usr/src/contrib/tcl \ + --with-tk41_src_dir="${PORTSDIR}/x11/tk41/work/tk4.1" \ + --with-extra_ldflags="-L${PREFIX}/lib" +CONFIGURE_ENV= PREFIX=${PREFIX} +MAN1= tixwish.1 +MANN= BtnBox.n Balloon.n ChkList.n Destroy.n ComboBox.n Control.n \ + DItem.n DirDlg.n DirList.n DirTree.n FileBox.n EFileBox.n \ + EFileDlg.n FileDlg.n FileEnt.n Form.n GetBool.n GetInt.n \ + Grid.n HList.n InpOnly.n LabEntry.n Meter.n LabFrame.n \ + ListNBK.n Mwm.n NBFrame.n NoteBook.n SHList.n PopMenu.n \ + OptMenu.n PanedWin.n SListBox.n SText.n SWindow.n TList.n \ + Select.n StdBBox.n TixIntro.n Tree.n Utils.n Wm.n compound.n \ + pixmap.n tix.n + +pre-extract: +.if !exists(/usr/src/contrib/tcl) + @echo "Tix wants access to the Tcl source." + @echo "Please install /usr/src/contrib/tcl" + @echo "from the FreeBSD source distribution." + @false +.endif +.if !exists(${PORTSDIR}/x11/tk41/work/tk4.1) + @cd ${PORTSDIR}/x11/tk41; make extract +.endif + +post-install: + @${MKDIR} ${PREFIX}/man/man1 + @mv ${PREFIX}/man/mann/tixwish.1 ${PREFIX}/man/man1 + ldconfig -m ${PREFIX}/lib + +.include <bsd.port.mk> |