From owner-freebsd-ports@FreeBSD.ORG Wed Sep 21 13:07:39 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35E7316A420; Wed, 21 Sep 2005 13:07:39 +0000 (GMT) (envelope-from matthias.andree@gmx.de) Received: from mail.dt.e-technik.uni-dortmund.de (krusty.dt.E-Technik.uni-dortmund.de [129.217.163.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3C1E43D45; Wed, 21 Sep 2005 13:07:37 +0000 (GMT) (envelope-from matthias.andree@gmx.de) Received: from localhost (localhost [127.0.0.1]) by mail.dt.e-technik.uni-dortmund.de (Postfix) with ESMTP id 75E5C44435; Wed, 21 Sep 2005 15:07:34 +0200 (CEST) Received: from mail.dt.e-technik.uni-dortmund.de ([127.0.0.1]) by localhost (krusty [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32041-02; Wed, 21 Sep 2005 15:07:32 +0200 (CEST) Received: from m2a2.dyndns.org (p50912C12.dip0.t-ipconnect.de [80.145.44.18]) by mail.dt.e-technik.uni-dortmund.de (Postfix) with ESMTP id AC6C6443B3; Wed, 21 Sep 2005 15:07:32 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by merlin.emma.line.org (Postfix) with ESMTP id EBF72AC89B; Wed, 21 Sep 2005 15:07:31 +0200 (CEST) Received: from m2a2.dyndns.org ([127.0.0.1]) by localhost (m2a2.dyndns.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08224-09; Wed, 21 Sep 2005 15:07:31 +0200 (CEST) Received: from libertas.emma.line.org (libertas.emma.line.org [192.168.1.2]) by merlin.emma.line.org (Postfix) with ESMTP id E64ADAC81C; Wed, 21 Sep 2005 15:07:30 +0200 (CEST) Received: from emma by libertas.emma.line.org with local (Exim 4.52 (FreeBSD)) id 1EI4LS-000Kcu-MH; Wed, 21 Sep 2005 15:09:06 +0200 To: FreeBSD-gnats-submit@freebsd.org From: Matthias Andree X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: Sender: Matthias Andree Date: Wed, 21 Sep 2005 15:09:06 +0200 X-Virus-Scanned: amavisd-new at dt.e-technik.uni-dortmund.de Cc: ports@FreeBSD.org Subject: [PATCH] archivers/lzop: update to 1.02.r1, take maintainership X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Sep 2005 13:07:39 -0000 >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 ---