svn commit: r330753 - head/net/pypvm
Brooks Davis
brooks at FreeBSD.org
Fri Oct 18 14:33:35 UTC 2013
Author: brooks
Date: Fri Oct 18 14:33:34 2013
New Revision: 330753
URL: http://svnweb.freebsd.org/changeset/ports/330753
Log:
STAGIFY
Allow to build on amd64 and ia64 since pvm has had shared libs on all
platforms for quite some time.
Mark DEPRECATED as it seems unlikely there are any actual users given
that it hasn't worked on amd64 ever and the upstream hasn't made any
changes for 8 years or so.
Drop maintainership.
Modified:
head/net/pypvm/Makefile
Modified: head/net/pypvm/Makefile
==============================================================================
--- head/net/pypvm/Makefile Fri Oct 18 14:25:23 2013 (r330752)
+++ head/net/pypvm/Makefile Fri Oct 18 14:33:34 2013 (r330753)
@@ -6,11 +6,14 @@ PORTREVISION= 1
CATEGORIES= net
MASTER_SITES= SF
-MAINTAINER= brooks at FreeBSD.org
+MAINTAINER= ports at FreeBSD.org
COMMENT= PVM for Python
BUILD_DEPENDS= pvm:${PORTSDIR}/net/pvm
+DEPRECATED= Dead upstream and suspected that there are no users of port
+EXPIRATION_DATE= 2014-01-01
+
USE_PYTHON= yes
USE_PYDISTUTILS=yes
@@ -22,24 +25,16 @@ EXAMPLEFILES= master_test.py \
slave_test.py
PLIST_FILES+= ${EXAMPLEFILES:S|^|%%EXAMPLESDIR%%/|}
PLIST_DIRS+= %%EXAMPLESDIR%%
-.if !defined(NOPORTDOCS)
PORTDOCS= ChangeLog \
README
-.endif
-
-NO_STAGE= yes
-.include <bsd.port.pre.mk>
-
-.if ${ARCH} == "ia64" || ${ARCH} == "amd64"
-BROKEN= pvm port needs to provide shared libraries
-.endif
post-install:
- ${MKDIR} ${EXAMPLESDIR}
- ${INSTALL_SCRIPT} ${EXAMPLEFILES:S|^|${WRKSRC}/|} ${EXAMPLESDIR}
+ ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
+ ${INSTALL_SCRIPT} ${EXAMPLEFILES:S|^|${WRKSRC}/|} \
+ ${STAGEDIR}${EXAMPLESDIR}
.if !defined(NOPORTDOCS)
- ${MKDIR} ${DOCSDIR}
- ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
+ ${MKDIR} ${STAGEDIR}${DOCSDIR}
+ ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
.endif
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
More information about the svn-ports-all
mailing list