mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
43 lines
980 B
Makefile
43 lines
980 B
Makefile
# New ports collection makefile for: mucommander
|
|
# Date created: 2007-06-24
|
|
# Whom: Lars Engels <lars.engels@0x20.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mucommander
|
|
PORTVERSION= 0.8.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11-fm java
|
|
MASTER_SITES= http://www.mucommander.com/download/
|
|
DISTNAME= ${PORTNAME}-0_8_2
|
|
|
|
MAINTAINER= lme@FreeBSD.org
|
|
COMMENT= Lightweight file manager featuring a Norton Commander style interface
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.4+
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/mucommander %%DATADIR%%/mucommander.jar %%DATADIR%%/license.txt
|
|
PLIST_DIRS= %%DATADIR%%
|
|
SUB_FILES= mucommander
|
|
|
|
PORTDOCS= readme.txt
|
|
|
|
WRKSRC= ${WRKDIR}/muCommander-0_8_2
|
|
|
|
do-install:
|
|
@${MKDIR} ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/mucommander.jar ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/license.txt ${DATADIR}
|
|
${INSTALL_SCRIPT} ${WRKDIR}/mucommander ${PREFIX}/bin
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/readme.txt ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|