diff options
author | taoka <taoka@FreeBSD.org> | 1999-05-06 21:47:46 +0800 |
---|---|---|
committer | taoka <taoka@FreeBSD.org> | 1999-05-06 21:47:46 +0800 |
commit | 2b7a0d2f46fa17bda52db83619852fdbec61f555 (patch) | |
tree | ad0b3fd26a2c4562a53d80296039cf61d31ebc92 /x11-fm/binder/Makefile | |
parent | 6e42af1c676baafc277acf2689cef624b08ae810 (diff) | |
download | freebsd-ports-gnome-2b7a0d2f46fa17bda52db83619852fdbec61f555.tar.gz freebsd-ports-gnome-2b7a0d2f46fa17bda52db83619852fdbec61f555.tar.zst freebsd-ports-gnome-2b7a0d2f46fa17bda52db83619852fdbec61f555.zip |
A file manager on X window with TkStep.
PR: 11423
Submitted by: KIRIYAMA Kazuhiko <kiri@pis.toba-cmt.ac.jp>
Diffstat (limited to 'x11-fm/binder/Makefile')
-rw-r--r-- | x11-fm/binder/Makefile | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/x11-fm/binder/Makefile b/x11-fm/binder/Makefile new file mode 100644 index 000000000000..db93fad27e7b --- /dev/null +++ b/x11-fm/binder/Makefile @@ -0,0 +1,50 @@ +# New ports collection makefile for: JDE's Binder +# Version required: 1.3 +# Date created: 25 March 1999 +# Whom: KIRIYAMA Kazuhiko <kiri@pis.toba-cmt.ac.jp> +# +# $Id$ +# + +DISTNAME= Binder-1.3 +PKGNAME= ${LANGPREFIX}binder-1.3 +CATEGORIES= ${CATEGORY_LIST} +MASTER_SITES= http://www.aaa-int.or.jp/~jfactory/JDE/dist/ + +MAINTAINER= kiri@pis.toba-cmt.ac.jp + +RUN_DEPENDS= ${RUN_DEP_LIST} + +EXTRACT_ONLY= # extracted directly in install target +NO_WRKSUBDIR= yes +NO_BUILD= yes +USE_X_PREFIX= yes +SCRIPTS_ENV= LANG=C LN=${LN} PERL=${PERL} LANGUAGE=${LANGUAGE} VERSION=${TKSTEPVERSION} +PLIST_SUB= PIXMAP_PATH=${PIXMAPPATH:S@^${PREFIX}/@@} + +# This port is for both x11-fm/binder and japanese/binder. +# But x11-fm/binder and japanese/binder are mutually exclusive and +# SHOULD NOT BE INSTALLED SIMULTANEOUSLY! +TKSTEPVERSION= 8.0 +PIXMAPPATH?= ${PREFIX}/share/WindowMaker/Pixmaps +LANGUAGE?= +.if (${LANGUAGE} == "Japanese") +LANGPREFIX= ja- +CATEGORY_LIST= x11-fm windowmaker tkstep80 japanese +RUN_DEP_LIST= ${LOCALBASE}/lib/Img1.2/libimg12.so.1:${PORTSDIR}/japanese/libimg \ + ${LOCALBASE}/lib/tkstep8.0jp/tkstep.tcl:${PORTSDIR}/japanese/tkstep80 +.else +CATEGORY_LIST= x11-fm windowmaker tkstep80 +RUN_DEP_LIST= ${LOCALBASE}/lib/Img1.2/libimg12.so.1:${PORTSDIR}/graphics/libimg \ + ${LOCALBASE}/share/tkstep8.0/tkstep.tcl:${PORTSDIR}/x11-toolkits/tkstep80 +.endif + +do-install: + ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${DISTDIR}/${DISTNAME}.tar.gz \ + ${EXTRACT_AFTER_ARGS} -C ${PREFIX} + ${MKDIR} ${PIXMAPPATH} + ${INSTALL_DATA} ${PREFIX}/JDE/Binder/docs/Binder.xpm \ + ${PREFIX}/JDE/Binder/misc/Mounter/DiskHardDrive.xpm \ + ${PIXMAPPATH} + +.include <bsd.port.mk> |