diff options
author | mandree <mandree@FreeBSD.org> | 2013-10-24 05:20:18 +0800 |
---|---|---|
committer | mandree <mandree@FreeBSD.org> | 2013-10-24 05:20:18 +0800 |
commit | df4d9a5d3555b3b697a356033af3609efce16bff (patch) | |
tree | 5648f5c35172caa8322c1effc23fb1ab3cf0ef50 /archivers/lzop | |
parent | e6d199a9fd6f5f6fc7752d10a3fdac56c7fc431c (diff) | |
download | freebsd-ports-gnome-df4d9a5d3555b3b697a356033af3609efce16bff.tar.gz freebsd-ports-gnome-df4d9a5d3555b3b697a356033af3609efce16bff.tar.zst freebsd-ports-gnome-df4d9a5d3555b3b697a356033af3609efce16bff.zip |
Support staging.
Drop support for lzo.1, which has not been in the tree for a while.
Diffstat (limited to 'archivers/lzop')
-rw-r--r-- | archivers/lzop/Makefile | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/archivers/lzop/Makefile b/archivers/lzop/Makefile index 0747d5d875a5..d583c1722849 100644 --- a/archivers/lzop/Makefile +++ b/archivers/lzop/Makefile @@ -10,19 +10,12 @@ MASTER_SITES= http://www.lzop.org/download/ \ MAINTAINER= mandree@FreeBSD.org 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 +LIB_DEPENDS= liblzo2.so:${PORTSDIR}/archivers/lzo2 -NO_STAGE= yes GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -MAN1= lzop.1 -PLIST_FILES= bin/lzop +PLIST_FILES= bin/lzop man/man1/lzop.1.gz .include <bsd.port.mk> |