mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
f54507fc19
- Optionize - Cosmetic fixes
35 lines
859 B
Makefile
35 lines
859 B
Makefile
# Created by: Robert Schlotterbeck <robert@rs.tarrant.tx.us>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= vstr
|
|
PORTVERSION= 1.0.15
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://freebsd.unixfreunde.de/sources/ \
|
|
http://sce-tindy.tecnik93.com/FreeBSD/others_ports/${PORTNAME}/ \
|
|
http://www.and.org/vstr/1.0.15/ \
|
|
http://www.and.org/vstr/latest/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= General purpose string library for C
|
|
|
|
USES= gmake pathfix pkgconfig tar:bzip2 libtool
|
|
GNU_CONFIGURE= yes
|
|
USE_CSTD= gnu89
|
|
USE_LDCONFIG= yes
|
|
INSTALL_TARGET= install-strip
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
cd ${WRKSRC}/Documentation && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_fLAGS} ${MAKEFILE} ${MAKE_ARGS} install-man3
|
|
|
|
regression-test:
|
|
cd ${WRKSRC} && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} check
|
|
|
|
.include <bsd.port.mk>
|