mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
1917a7f985
- Add license [1] - Use options helpers PR: ports/184088 Submitted by: Simon Dick <simond@irrelevant.org> (maintainer) [1]
38 lines
730 B
Makefile
38 lines
730 B
Makefile
# Created by: Simon Dick <simond@irrelevant.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= worker
|
|
PORTVERSION= 3.2.0
|
|
CATEGORIES= x11-fm
|
|
MASTER_SITES= http://www.boomerangsworld.de/cms/worker/downloads/
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= simond@irrelevant.org
|
|
COMMENT= X11 File Manager based on Directory Opus
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RUN_DEPENDS+= bash:${PORTSDIR}/shells/bash
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_XORG= x11
|
|
USE_BZIP2= yes
|
|
USE_GCC= 4.6+
|
|
|
|
USES= shebangfix
|
|
SHEBANG_FILES= ${WRKSRC}/scripts/*.sh \
|
|
${WRKSRC}/scripts/xeditor
|
|
|
|
CFLAGS+= ${PTHREAD_CFLAGS}
|
|
|
|
OPTIONS_DEFINE= XFT
|
|
|
|
XFT_CONFIGURE_ENABLE= xft
|
|
XFT_USE= XORG=xft
|
|
|
|
pre-configure:
|
|
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' \
|
|
${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|