- Escape literal dot properly in sed(1) code (for REINPLACE_CMD) - Spell "C-string" correctly in COMMENT and add a missing newline - Use NULL for pointer in C code (original snippet was for C++ and Bjarne prefers to avoid macros, per his C++ Style and Technique FAQ)
20 lines
440 B
Makefile
20 lines
440 B
Makefile
# Created by: Steven Kreuzer <skreuzer@exit2shell.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= stringencoders
|
|
PORTVERSION= 3.10.3
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= GOOGLE_CODE
|
|
|
|
MAINTAINER= skreuzer@FreeBSD.org
|
|
COMMENT= Collection of high performance C-string transformations
|
|
|
|
USES= libtool perl5
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
CFLAGS+= -fsigned-char # chars are unsigned on PowerPC and ARM
|
|
|
|
.include <bsd.port.mk>
|