mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
39b8abd58b
Reported by: simon
44 lines
968 B
Makefile
44 lines
968 B
Makefile
# New ports collection makefile for: Tarsnap backup client
|
|
# Date created: 2009-07-04
|
|
# Whom: Colin Percival
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tarsnap
|
|
PORTVERSION= 1.0.25
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://beta.tarsnap.com/download/
|
|
DISTNAME= ${PORTNAME}-autoconf-${PORTVERSION}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= cperciva@tarsnap.com
|
|
COMMENT= Online encrypted backup service (client)
|
|
|
|
RESTRICTED= license restricts redistribution of source and binaries
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
|
|
MAN1= tarsnap.1 tarsnap-keygen.1 tarsnap-keymgmt.1
|
|
MAN5= tarsnap.conf.5
|
|
|
|
OPTIONS= SSE2 "Use SSE2-optimized code" Off
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if defined(WITH_SSE2)
|
|
CONFIGURE_ARGS+= --enable-sse2
|
|
CFLAGS+= -msse2
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-sse2
|
|
.endif
|
|
|
|
post-install:
|
|
@if [ ! -f ${PREFIX}/etc/tarsnap.conf ]; then \
|
|
${CP} -p ${PREFIX}/etc/tarsnap.conf.sample ${PREFIX}/etc/tarsnap.conf ; \
|
|
fi
|
|
@${CAT} ${PKGDIR}/pkg-message
|
|
|
|
.include <bsd.port.mk>
|