2000-06-03 00:58:15 +02:00
|
|
|
# New ports collection makefile for: lzop
|
|
|
|
# Date created: Fri 2 June 2000
|
|
|
|
# Whom: will
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= lzop
|
2005-09-21 16:14:46 +02:00
|
|
|
DISTVERSION= 1.02rc1
|
2000-06-03 00:58:15 +02:00
|
|
|
CATEGORIES= archivers
|
2003-06-11 05:57:54 +02:00
|
|
|
MASTER_SITES= http://www.lzop.org/download/
|
2000-06-03 00:58:15 +02:00
|
|
|
|
2005-09-21 16:14:46 +02:00
|
|
|
MAINTAINER= matthias.andree@gmx.de
|
2003-02-20 18:07:10 +01:00
|
|
|
COMMENT= Fast file compressor similar to gzip, using the LZO library
|
2000-06-03 00:58:15 +02:00
|
|
|
|
2005-09-21 16:14:46 +02:00
|
|
|
# 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
|
2005-05-31 21:58:33 +02:00
|
|
|
LIB_DEPENDS= lzo.1:${PORTSDIR}/archivers/lzo
|
2005-09-21 16:14:46 +02:00
|
|
|
.endif
|
2000-06-03 00:58:15 +02:00
|
|
|
|
2001-12-06 13:22:03 +01:00
|
|
|
GNU_CONFIGURE= yes
|
2003-05-02 02:41:14 +02:00
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
2000-06-03 00:58:15 +02:00
|
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
2003-05-02 02:41:14 +02:00
|
|
|
|
2000-06-03 00:58:15 +02:00
|
|
|
MAN1= lzop.1
|
2004-02-05 21:38:07 +01:00
|
|
|
PLIST_FILES= bin/lzop
|
2000-06-03 00:58:15 +02:00
|
|
|
|
|
|
|
.include <bsd.port.mk>
|