2002-10-31 23:19:17 +00:00
|
|
|
# Ports collection makefile for: clex-tty
|
|
|
|
# Date created: Tue Oct 30, 2002
|
|
|
|
# Whom: Michael L. Hostbaek <mich@freebsdcluster.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= clex
|
2008-04-17 08:49:45 +00:00
|
|
|
PORTVERSION= 3.18
|
2002-10-31 23:19:17 +00:00
|
|
|
CATEGORIES= misc
|
2008-02-04 20:24:04 +00:00
|
|
|
MASTER_SITES= http://www.clex.sk/download/
|
2002-10-31 23:19:17 +00:00
|
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
|
2003-05-07 11:37:56 +00:00
|
|
|
MAINTAINER= mich@FreeBSD.org
|
2003-02-21 12:51:06 +00:00
|
|
|
COMMENT= A commandline file manager
|
2002-10-31 23:19:17 +00:00
|
|
|
|
|
|
|
GNU_CONFIGURE= yes
|
2004-06-24 14:23:15 +00:00
|
|
|
USE_GMAKE= yes
|
2002-10-31 23:19:17 +00:00
|
|
|
|
2008-02-04 20:24:04 +00:00
|
|
|
DOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README
|
2002-10-31 23:19:17 +00:00
|
|
|
MAN1= clex.1
|
|
|
|
|
2008-02-04 20:24:04 +00:00
|
|
|
OPTIONS= LARGE_FILES "Enable support for large files" on
|
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if !defined(WITH_LARGE_FILES)
|
|
|
|
CONFIGURE_ARGS+= --disable-largefile
|
|
|
|
.endif
|
|
|
|
|
|
|
|
do-install:
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
@${MKDIR} ${DOCSDIR}
|
|
|
|
@${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
|
|
|
|
.endif
|
|
|
|
@${INSTALL_MAN} ${WRKSRC}/src/${MAN1} ${MAN1PREFIX}/man/man1
|
|
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/bin
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|