diff options
author | hubertf <hubertf@pkgsrc.org> | 2000-05-22 00:49:52 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2000-05-22 00:49:52 +0000 |
commit | d705e79725734976062da30ee11080b7f280d117 (patch) | |
tree | 2b658e39963bbd4aa3d870cbc3ead448979105e9 /misc/vfu/Makefile | |
parent | 8aa326d0b29475054073344bdbf56a414b3c6080 (diff) | |
download | pkgsrc-d705e79725734976062da30ee11080b7f280d117.tar.gz |
Updated vfu to 3.00. Changes:
3.00: xx.Apr.2000
% 0. Hello again! :)
The VFU development was suspended nearly an year
ago. Now it is resumed and a lot of changes took place!
First of all -- VFU was completely rewritten/revised(!),
so many (internal?) features were added, some removed,
other changed. Below I will list some key features in
this version, but probably I'll forget some things or
else...
% 1. There are no big changes in the user interface and feel.
- 2. Now reading/extracting archives is removed from inside
VFU to external (perl) utilities. This will help adding
new archives and debugging existing ones.
- 3. Now archives' structure is followed as the local file
system, i.e. you will browse directory by directory
but not the whole archive content as before. Perhaps
option for recursive (whole content) browsing will be
added in the future.
+ 4. Now you can cancel copy/move procedures at stage you
want even during single file copy process!
(It was not possible in older versions)
! 5. The rare problem of showing total percentages over 100%
during copy/move is finally (and hopefully:)) fixed.
+ 6. Now files in archive can be masked and files mask can
be changed inside archive.
! 7. Some access/terminal emulation problems are fixed.
( i.e. some `difficult' key functions are accessible
and from menus etc. )
Diffstat (limited to 'misc/vfu/Makefile')
-rw-r--r-- | misc/vfu/Makefile | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/misc/vfu/Makefile b/misc/vfu/Makefile index 9a6f837cfd2..b170591118c 100644 --- a/misc/vfu/Makefile +++ b/misc/vfu/Makefile @@ -1,30 +1,31 @@ -# $NetBSD: Makefile,v 1.11 2000/01/15 18:46:31 jlam Exp $ +# $NetBSD: Makefile,v 1.12 2000/05/22 00:49:52 hubertf Exp $ # -DISTNAME= vfu-1.51 +DISTNAME= vfu-3.00 CATEGORIES= misc -MASTER_SITES= http://www.biscom.net/~cade/away/ -EXTRACT_SUFX= -source.tgz +MASTER_SITES= http://www.biscom.net/~cade/away/vfu/ \ + ftp://metalab.unc.edu/pub/Linux/utils/file/managers/ +EXTRACT_SUFX= .src.tar.gz MAINTAINER= hubertf@netbsd.org -HOMEPAGE= http://www.biscom.net/~cade/vfu/ +HOMEPAGE= http://www.biscom.net/~cade/away/vfu/ -DEPENDS= ncurses>=4.2:../../devel/ncurses +DEPENDS= ncurses>=5.0:../../devel/ncurses -MAKE_FLAGS+= CCDEF="-DVFU_RCPATH1=\\\"${PREFIX}/etc/\\\" -DVFU_RCPATH2=\\\"${PREFIX}/\\\" -D__unix__" \ - LDDEF="${LDFLAGS}" +USE_PERL5= yes do-build: - cd ${WRKSRC}/vslib ; \ - ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${MAKE_FLAGS} - cd ${WRKSRC}/vfu ; \ - ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${MAKE_FLAGS} - cd ${WRKSRC}/ftparc ; \ - ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${MAKE_FLAGS} + cd ${WRKSRC} ; \ + ${SETENV} ${MAKE_ENV} ${SH} build.netbsd do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/vfu/vfu ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/ftparc/ftparc ${PREFIX}/bin + cd ${WRKSRC} ; \ + ${INSTALL_PROGRAM} vfu/vfu ftparc/ftparc ${PREFIX}/bin + for i in rx_auto rx_deb rx_ftp rx_tar rx_zip ; do \ + echo $$i ; \ + ${SED} 's,/usr/bin/perl,${LOCALBASE}/bin/perl,' <${WRKSRC}/rx/$$i >${WRKSRC}/rx/$$i.new ; \ + ${INSTALL_SCRIPT} ${WRKSRC}/rx/$$i.new ${PREFIX}/bin/$$i ; \ + done ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/vfu ${INSTALL_DATA} \ ${WRKSRC}/COPYING \ |