mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +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)
36 lines
794 B
Makefile
36 lines
794 B
Makefile
# New ports collection makefile for: jaffm
|
|
# Date Created: 2006-04-27
|
|
# Whom: Shaun Amott <shaun@inerd.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jaffm
|
|
PORTVERSION= 1.4
|
|
PORTREVISION= 4
|
|
CATEGORIES= x11-fm
|
|
MASTER_SITES= http://binary.is/download/ \
|
|
http://mirror.inerd.com/FreeBSD/distfiles/${PORTNAME}/
|
|
|
|
MAINTAINER= shaun@FreeBSD.org
|
|
COMMENT= A lightweight file manager inspired by MacOS Finder
|
|
|
|
USE_BZIP2= yes
|
|
USE_WX= 2.4-2.6
|
|
ALL_TARGET= ${PORTNAME}
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's#^PREFIX=.*#PREFIX=${PREFIX}#' \
|
|
-e 's#$$(shell wx-config \(.*\))#`${WX_CONFIG} \1`#' \
|
|
-e 's#^FLAGS=-ggdb#FLAGS=${CFLAGS}#' \
|
|
${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
|
|
.include <bsd.port.post.mk>
|