mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
94a040f2b3
files. The screen can be dynamically adjusted to include all information (like 'ls -ail'), or just the filenames (multi-column), or anything in between. All basic file and directory manipulations are possible with 1 keystroke: copy, move, delete, view, execute, change owner/group/mode, edit, diff, link (hard/symbolic), wc, tail -f, cksum, hexdump and many others. Documentation is self-contained in cdls and consists of two screens from which each option or subject can be selected to show its info screen. PR: ports/166942 Submitted by: Hans de Hartog <hans@dehartog.nl>
29 lines
608 B
Makefile
29 lines
608 B
Makefile
# New ports collection makefile for: cdls
|
|
# Date created: 13 april 2012
|
|
# Whom: Hans de Hartog <hans@dehartog.nl>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cdls
|
|
PORTVERSION= 4.2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ftp://pd7w.fs2a.eu/
|
|
|
|
MAINTAINER= hans@dehartog.nl
|
|
COMMENT= A curses based file manager for system managers
|
|
|
|
PLIST_FILES= bin/cdls
|
|
|
|
USE_NCURSES= yes
|
|
|
|
.if defined(WITH_NCURSES_BASE)
|
|
# no need to use ncurses-config if we use ncurses from the base system
|
|
CONFIGURE_ARGS+= NCURSES_CONFIG=/usr/bin/true
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|g' ${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.mk>
|