summaryrefslogtreecommitdiff
path: root/news
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2004-12-19 23:27:58 +0000
committerKris Kennaway <kris@FreeBSD.org>2004-12-19 23:27:58 +0000
commita3972b90785589913992c71be0dd92f40e053280 (patch)
tree7844ab3c5b2cf32d7744f9061f24f61c22ad6c35 /news
parentAdd missing file to pkg-plist. (diff)
Simplify hackery that attempted to build the package on pointyhat by
adding a dependency on Xvfb (setting the DISPLAY and running Xvfb is now taken care of by the package scripts). Port is indeed BROKEN, but because of an incorrect pkg-plist and not because of the spurious DISPLAY-related error.
Notes
Notes: svn path=/head/; revision=124537
Diffstat (limited to 'news')
-rw-r--r--news/pyne/Makefile26
1 files changed, 3 insertions, 23 deletions
diff --git a/news/pyne/Makefile b/news/pyne/Makefile
index afcc824597f4..848b4fb896aa 100644
--- a/news/pyne/Makefile
+++ b/news/pyne/Makefile
@@ -15,17 +15,14 @@ MASTER_SITES= http://www.soul-less.pwp.blueyonder.co.uk/pyne/
MAINTAINER= ports@FreeBSD.org
COMMENT= An X11 offline Newsreader/Emailer
-BROKEN= "Does not compile"
-
BUILD_DEPENDS= pygtk-codegen-2.0:${PORTSDIR}/x11-toolkits/py-gtk2
RUN_DEPENDS= ${BUILD_DEPENDS}
-
-# ugly hack imported from openoffice.
-.if !defined(DISPLAY)
+.if defined(PACKAGE_BUILDING)
BUILD_DEPENDS+= Xvfb:${X_VFBSERVER_PORT}
-DISPLAYHACK= localhost:1001
.endif
+BROKEN= "Broken pkg-plist"
+
USE_REINPLACE= yes
USE_PYTHON= yes
GNU_CONFIGURE= yes
@@ -37,24 +34,7 @@ pre-configure:
@${REINPLACE_CMD} -e "s@[(]PREFIX[)]\/lib@(PYTHON_SITELIBDIR)@g" ${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e "s@pybins=\(.*\)@pybins=\${PYTHON_VERSION}@" ${WRKSRC}/configure
-pre-install:
-.if !defined(DISPLAY)
-.if exists(${WRKDIR}/.Xvfb.pid)
- @-${CAT} ${WRKDIR}/.Xvfb.pid | ${XARGS} kill
- @${RM} -f ${WRKDIR}/.Xvfb.pid
-.endif
-
- ${X11BASE}/bin/Xvfb :1001 -screen 0 800x600x24 > /dev/null 2>&1 & ${ECHO_CMD} $$! > \
- ${WRKDIR}/.Xvfb.pid
- @${REINPLACE_CMD} -e "s@--compile@--compile --display ${DISPLAYHACK}@" \
- ${WRKSRC}/Makefile
-.endif
-
post-install:
-.if !defined(DISPLAY)
- @${CAT} ${WRKDIR}/.Xvfb.pid | ${XARGS} kill
- @${RM} ${WRKDIR}/.Xvfb.pid
-.endif
@${STRIP_CMD} ${PREFIX}/bin/yencdec
.include <bsd.port.mk>