Date: Wed, 21 Sep 2005 15:09:06 +0200 From: Matthias Andree <matthias.andree@gmx.de> To: FreeBSD-gnats-submit@freebsd.org Cc: ports@FreeBSD.org Subject: [PATCH] archivers/lzop: update to 1.02.r1, take maintainership Message-ID: <E1EI4LS-000Kcu-MH@libertas.emma.line.org>
next in thread | raw e-mail | index | archive | help
>Submitter-Id: current-users >Originator: Matthias Andree >Organization: >Confidential: no >Synopsis: [PATCH] archivers/lzop: update to 1.02.r1, take maintainership >Severity: non-critical >Priority: low >Category: ports >Class: update >Release: FreeBSD 4.11-RELEASE-p12 i386 >Environment: System: FreeBSD libertas.emma.line.org 4.11-RELEASE-p12 FreeBSD 4.11-RELEASE-p12 #2: Fri Sep 16 00:02:49 CEST 2005 >Description: - Update to 1.02.r1 (support LZO2, fix size display >= 2 GB) - Take maintainership Port maintainer (ports@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- lzop-1.02.r1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/archivers/lzop/Makefile /usr/home/emma/ports/archivers/lzop/Makefile --- /usr/ports/archivers/lzop/Makefile Wed Jun 8 22:33:28 2005 +++ /usr/home/emma/ports/archivers/lzop/Makefile Wed Sep 21 15:05:36 2005 @@ -6,15 +6,20 @@ # PORTNAME= lzop -PORTVERSION= 1.01 -PORTREVISION= 2 +PORTVERSION= 1.02.r1 CATEGORIES= archivers MASTER_SITES= http://www.lzop.org/download/ +DISTNAME= lzop-1.02rc1 -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= lzo.2:${PORTSDIR}/archivers/lzo2 +.else LIB_DEPENDS= lzo.1:${PORTSDIR}/archivers/lzo +.endif GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} diff -ruN --exclude=CVS /usr/ports/archivers/lzop/distinfo /usr/home/emma/ports/archivers/lzop/distinfo --- /usr/ports/archivers/lzop/distinfo Tue Jan 27 21:50:38 2004 +++ /usr/home/emma/ports/archivers/lzop/distinfo Wed Sep 21 15:01:21 2005 @@ -1,2 +1,2 @@ -MD5 (lzop-1.01.tar.gz) = de1f90bc21a0e56a27f39322f56a275d -SIZE (lzop-1.01.tar.gz) = 282491 +MD5 (lzop-1.02rc1.tar.gz) = 4b999030716b1353c3dac049b269df7a +SIZE (lzop-1.02rc1.tar.gz) = 333240 --- lzop-1.02.r1.patch ends here ---
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?E1EI4LS-000Kcu-MH>