diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2002-07-03 09:27:00 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2002-07-03 09:27:00 +0000 |
commit | a6729a70b3daaface36cbd83b0509d8132115b3c (patch) | |
tree | ea6b932ef8e3110c5edd2ddfaa9ea33c11641038 /sysutils/tkdesk/Makefile | |
parent | b0a1e0dd99e35bfe3c66178c514134192c3f6aae (diff) | |
download | pkgsrc-a6729a70b3daaface36cbd83b0509d8132115b3c.tar.gz |
import tkdesk-1.2.
Submitted in PR pkg/17423 by Rui-Xiang Guo <rxg@ms25.url.com.tw>
TkDesk is a graphical file manager for Unix and the X-Window System. It offers
a very rich set of file operations and services, and provides the user with an
immense amount of configurability. TkDesk's configuration flexibility results
from the use of Tcl/Tk as the primary implementation language. Another benefit
of using Tcl/Tk is that TkDesk is very portable and runs on virtually any Unix
platform.
Diffstat (limited to 'sysutils/tkdesk/Makefile')
-rw-r--r-- | sysutils/tkdesk/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sysutils/tkdesk/Makefile b/sysutils/tkdesk/Makefile new file mode 100644 index 00000000000..5709ceaeaf9 --- /dev/null +++ b/sysutils/tkdesk/Makefile @@ -0,0 +1,28 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/07/03 09:27:00 dmcmahill Exp $ +# FreeBSD Id: ports/x11-fm/tkdesk/Makefile,v 1.18 2001/09/03 18:17:47 knu Exp + +DISTNAME= tkdesk-1.2 +CATEGORIES= sysutils +MASTER_SITES= http://tkdesk.sourceforge.net/dist/ + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://tkdesk.sourceforge.net/ +COMMENT= graphical file manager + +DEPENDS+= tcl-itcl>=3.2:../../lang/tcl-itcl +DEPENDS+= blt>=2.4:../../x11/blt + +GNU_CONFIGURE= YES +CONFIGURE_ARGS+=--with-tcl=${LOCALBASE}/lib \ + --with-tk=${LOCALBASE}/lib \ + --with-itcl=${LOCALBASE}/lib \ + --with-blt=${LOCALBASE}/lib + +pre-install: + ${RM} -Rf ${WRKSRC}/tcldesk/configs/.trash + ${FIND} ${WRKSRC}/tcldesk -type f -name '*.orig' | ${XARGS} ${RM} -rf + ${FIND} ${WRKSRC}/tcldesk -name '*' -exec ${TOUCH} {} ';' + +.include "../../lang/tcl/buildlink.mk" +.include "../../x11/tk/buildlink.mk" +.include "../../mk/bsd.pkg.mk" |