590bd1d839
PR: [1]45976 and [2]53233 Submitted by: 1. John Goerzen <jgoerzen@complete.org> 2. Gerhard Haering <gh@ghaering.de>
32 lines
715 B
Makefile
32 lines
715 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: librsync
|
|
# Date created: Mar 13, 2001
|
|
# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= librsync
|
|
PORTVERSION= 0.9.5.1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://rdiff-backup.stanford.edu/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Library for delta compression of streams
|
|
|
|
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt
|
|
.if !exists(/usr/bin/bzip2)
|
|
LIB_DEPENDS+= bz2.1:${PORTSDIR}/archivers/bzip2
|
|
.endif
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" \
|
|
CPPFLAGS="${CFLAGS} -I${LOCALBASE}/include"
|
|
CONFIGURE_ARGS= --enable-shared --disable-trace
|
|
USE_GMAKE= yes
|
|
INSTALLS_SHLIB= yes
|
|
|
|
MAN1= rdiff.1
|
|
MAN3= librsync.3
|
|
|
|
.include <bsd.port.mk>
|