blob: a3fbc592fe9f419746e4a731dd4ac923d6ce4f74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# ex:ts=8
# Ports collection makefile for: snappy
# Date created: Apr 3 2011
# Whom: vanilla@
#
# $FreeBSD$
#
PORTNAME= snappy
PORTVERSION= 1.0.5
PORTREVISION= 0
CATEGORIES= archivers
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
MAINTAINER= vanilla@FreeBSD.org
COMMENT= A fast compressor/decompressor library
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
post-patch:
.if defined(NOPORTDOCS)
${REINPLACE_CMD} -e \
'/^install-data-am:/ s|install-dist_docDATA||' \
${WRKSRC}/Makefile.in
.endif
.include <bsd.port.pre.mk>
.if ${ARCH} == "sparc64"
BROKEN= Does not compile on sparc64
.endif
.include <bsd.port.post.mk>
|