svn commit: r314880 - head/devel/libublio
Matthias Andree
mandree at FreeBSD.org
Thu Mar 21 22:09:47 UTC 2013
Author: mandree
Date: Thu Mar 21 22:09:47 2013
New Revision: 314880
URL: http://svnweb.freebsd.org/changeset/ports/314880
Log:
- Attempt to fix pointyhat failure (by checking WITHOUT_PROFILE).
- Attempt to debug pointyhat failure (by adding a pre-install that prints
the environment and the makefiles read).
- Clean up Makefile header.
- Convert NOPORTDOCS to OptionsNG.
Modified:
head/devel/libublio/Makefile (contents, props changed)
Modified: head/devel/libublio/Makefile
==============================================================================
--- head/devel/libublio/Makefile Thu Mar 21 22:08:45 2013 (r314879)
+++ head/devel/libublio/Makefile Thu Mar 21 22:09:47 2013 (r314880)
@@ -1,9 +1,5 @@
-# New ports collection makefile for: libublio
-# Date created: 2007-09-10
-# Whom: alepulver
-#
+# Created by: alepulver
# $FreeBSD$
-#
PORTNAME= libublio
PORTVERSION= 20070103
@@ -16,7 +12,7 @@ COMMENT= User space caching library
USE_LDCONFIG= yes
-.if defined(NO_PROFILE) || defined(NOPROFILE)
+.if defined(NO_PROFILE) || defined(NOPROFILE) || defined(WITHOUT_PROFILE)
PLIST_SUB+= PROFLIB="@comment "
.else
PLIST_SUB+= PROFLIB=""
@@ -25,11 +21,20 @@ PLIST_SUB+= PROFLIB=""
SRCCONF= ${NONEXISTENT}
MAKE_ENV+= SRCCONF=${SRCCONF}
+.include <bsd.port.options.mk>
+
post-extract:
@${CP} ${FILESDIR}/${MAKEFILE} ${WRKSRC}
+# this pre-install is only for debugging pointyhat failures
+pre-install:
+ @${ECHO_CMD} "===> Environment:"
+ @${SETENV} | ${SETENV} LC_ALL=C ${SORT} -f
+ @${ECHO_CMD} "===> Makefiles used:"
+ @${ECHO_CMD} ${.MAKEFILE_LIST}
+
post-install:
-.if !defined(NOPORTDOCS)
+.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
More information about the svn-ports-all
mailing list