mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +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)
45 lines
992 B
Makefile
45 lines
992 B
Makefile
# New ports collection makefile for: iriverter
|
|
# Date created: 2006-09-05
|
|
# Whom: Michael Johnson <ahze@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= iriverter
|
|
PORTVERSION= 0.16
|
|
PORTREVISION= 4
|
|
CATEGORIES= multimedia java
|
|
MASTER_SITES= SOURCEFORGE
|
|
|
|
MAINTAINER= multimedia@FreeBSD.org
|
|
COMMENT= Cross-platform frontend to mencoder
|
|
|
|
RUN_DEPENDS= mencoder:${PORTSDIR}/multimedia/mencoder
|
|
|
|
USE_JAVA= yes
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
|
|
OPTIONS= SWTDEVEL "Use SWT Development port" off
|
|
|
|
CONFIGURE_ARGS= --with-swt="${JAVALIBDIR}/${SWT_JAR}"
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_SWTDEVEL)
|
|
BUILD_DEPENDS+= \
|
|
${JAVALIBDIR}/swt-devel.jar:${PORTSDIR}/x11-toolkits/swt-devel
|
|
RUN_DEPENDS+= \
|
|
${JAVALIBDIR}/swt-devel.jar:${PORTSDIR}/x11-toolkits/swt-devel
|
|
SWT_JAR= swt-devel.jar
|
|
.else
|
|
BUILD_DEPENDS+= \
|
|
${JAVALIBDIR}/swt.jar:${PORTSDIR}/x11-toolkits/swt
|
|
RUN_DEPENDS+= \
|
|
${JAVALIBDIR}/swt.jar:${PORTSDIR}/x11-toolkits/swt
|
|
SWT_JAR= swt.jar
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|