[PATCH] archivers/lzop: update to 1.02.r1, take maintainership
Matthias Andree
matthias.andree at gmx.de
Wed Sep 21 06:15:14 PDT 2005
>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:
SUPERSEDES PR #86406
- Update to 1.02.r1 (support LZO2, fix size display >= 2 GB)
- Take maintainership
Port maintainer (ports at 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:11:59 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 at FreeBSD.org
+MAINTAINER= matthias.andree at 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}
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 ---
More information about the freebsd-ports
mailing list