mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-31 05:41:08 +00:00
f2ab442843
The referenced change made NO_INSTALLLIB, NO_MAN, and NO_PROFILE into errors causing these ports that declare them and use the FreeBSD make infrastructure as part of their build to fail. When the offending variables occur in a BSD Makefile, NO_MAN becomes MAN= and NO_INSTALLLIB and NO_PROFILE become MK_INSTALLLIB=no and MK_PROFILE=no respectively. When declared in the environment they become WITHOUT_<FOO>.
38 lines
826 B
Makefile
38 lines
826 B
Makefile
# Created by: Sergey Skvortsov <skv@protey.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libcsv
|
|
PORTVERSION= 3.0.3
|
|
PORTREVISION= 2
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= bob@eager.cx
|
|
COMMENT= Small, simple and fast CSV library
|
|
|
|
LICENSE= LGPL21
|
|
|
|
OPTIONS_DEFINE= EXAMPLES PROFILE
|
|
|
|
MAKEFILE= Makefile.lib
|
|
USES= uidfix
|
|
USE_LDCONFIG= yes
|
|
|
|
PLIST_SUB= SHLIB_MAJOR="${SHLIB_MAJOR}"
|
|
|
|
SHLIB_MAJOR= 3
|
|
|
|
PROFILE_PLIST_SUB= PROFILE=""
|
|
PROFILE_MAKE_ENV_OFF= WITHOUT_PROFILE=true
|
|
PROFILE_PLIST_SUB_OFF= PROFILE="@comment "
|
|
|
|
do-configure:
|
|
@${SED} -e 's|%%SHLIB_MAJOR%%|${SHLIB_MAJOR}|' \
|
|
< ${FILESDIR}/Makefile > ${WRKSRC}/${MAKEFILE}
|
|
|
|
do-install-EXAMPLES-on:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
|
|
|
|
.include <bsd.port.mk>
|