From d499350a28be052ba4d63cd41f1fa2e29603cf59 Mon Sep 17 00:00:00 2001 From: mnag Date: Wed, 21 Sep 2005 14:14:46 +0000 Subject: Update to 1.02rc1 Submitter take MAINTAINER PR: ports/86407 Submitted by: Matthias Andree Approved by: pav (mentor) --- archivers/lzop/Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'archivers/lzop/Makefile') diff --git a/archivers/lzop/Makefile b/archivers/lzop/Makefile index ec42a9719d7b..54d3cec852d7 100644 --- a/archivers/lzop/Makefile +++ b/archivers/lzop/Makefile @@ -6,15 +6,19 @@ # PORTNAME= lzop -PORTVERSION= 1.01 -PORTREVISION= 2 +DISTVERSION= 1.02rc1 CATEGORIES= archivers MASTER_SITES= http://www.lzop.org/download/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= matthias.andree@gmx.de COMMENT= Fast file compressor similar to gzip, using the LZO library +# prefer lzo2 if it is already installed or if no lzo is installed. +.if exists(${LOCALBASE}/lib/liblzo2.so.2) || !exists(${LOCALBASE}/lib/liblzo.so.1) +LIB_DEPENDS= lzo2.2:${PORTSDIR}/archivers/lzo2 +.else LIB_DEPENDS= lzo.1:${PORTSDIR}/archivers/lzo +.endif GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -- cgit