176251159f
I adjusted CFLAGS in several ports to allow linking with lld on i386 but missed the corresponding PORTREVISION bump. Related commits: r480023 r480045 r480047 r480048 r480049 r480061 r480062 r480068 Reported by: antoine Approved by: antoine
29 lines
615 B
Makefile
29 lines
615 B
Makefile
# Created by: Matt Harris <mattdharris@users.sourceforge.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libpwstor
|
|
PORTVERSION= 0.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= security devel
|
|
MASTER_SITES= SF/kageki/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Password storage library for C programmers
|
|
|
|
USES= ssl tar:bzip2
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
CFLAGS+= -fPIC -DPIC
|
|
|
|
.if defined(WITH_DEBUG)
|
|
CONFIGURE_ARGS+=--enable-debug
|
|
.endif
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/pwtool
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpwstor.so
|
|
|
|
.include <bsd.port.post.mk>
|