mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
6f6fbe4bdf
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav
83 lines
1.9 KiB
Makefile
83 lines
1.9 KiB
Makefile
# New ports collection makefile for: orange
|
|
# Date Created: January 2005
|
|
# Whom: Sam Lawrance <boris@brooknet.com.au>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= liborange
|
|
PORTVERSION= 0.4
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= SF/synce/Orange/${PORTVERSION}
|
|
|
|
MAINTAINER= avl@FreeBSD.org
|
|
COMMENT= Library to extract CAB files from self-extracting installers
|
|
|
|
RUN_DEPENDS= cabextract:${PORTSDIR}/archivers/cabextract \
|
|
unzip:${PORTSDIR}/archivers/unzip
|
|
|
|
OPTIONS= LIBSYNCE "Build with libsynce support" on \
|
|
LIBDYNAMITE "Build with libdynamite support" on \
|
|
LIBUNSHIELD "Build with libunshield support" on \
|
|
INNO "Build with expermential Inno Setup support" off \
|
|
VISE "Build with expermential VISE support" off \
|
|
MSI "Build with expermential MSI support" off
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
USE_AUTOTOOLS= libtool
|
|
GNU_CONFIGURE= yes
|
|
USE_GNOME= gnomehack
|
|
USE_ICONV= yes
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
USE_LDCONFIG= yes
|
|
|
|
MAN1= orange.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITH_LIBSYNCE)
|
|
CONFIGURE_ARGS+= --without-libsynce
|
|
REQUIRES+= libsynce
|
|
.else
|
|
LIB_DEPENDS+= synce.0:${PORTSDIR}/palm/synce-libsynce
|
|
CONFIGURE_ARGS+= --with-libsynce
|
|
.endif
|
|
|
|
.if !defined(WITH_LIBDYNAMITE)
|
|
CONFIGURE_ARGS+= --without-libdynamite
|
|
REQUIRES+= libdynamite
|
|
.else
|
|
LIB_DEPENDS+= dynamite.0:${PORTSDIR}/archivers/libdynamite
|
|
CONFIGURE_ARGS+= --with-libdynamite
|
|
.endif
|
|
|
|
.if !defined(WITH_LIBUNSHIELD)
|
|
CONFIGURE_ARGS+= --without-libunshield
|
|
REQUIRES+= libunshield
|
|
.else
|
|
LIB_DEPENDS+= unshield.0:${PORTSDIR}/archivers/unshield
|
|
CONFIGURE_ARGS+= --with-libunshield
|
|
.endif
|
|
|
|
.if defined(WITH_INNO)
|
|
CONFIGURE_ARGS+= --enable-inno
|
|
.endif
|
|
|
|
.if defined(WITH_VISE)
|
|
CONFIGURE_ARGS+= --enable-vise
|
|
.endif
|
|
|
|
.if defined(WITH_MSI)
|
|
CONFIGURE_ARGS+= --enable-msi --with-libgsf
|
|
LIB_DEPENDS+= gsf-1.114:${PORTSDIR}/devel/libgsf
|
|
.endif
|
|
|
|
post-patch:
|
|
.for req in ${REQUIRES}
|
|
@${REINPLACE_CMD} -e 's|${req}||' ${WRKSRC}/${PORTNAME}.pc.in
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|