diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2007-02-10 21:57:23 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2007-02-10 21:57:23 +0000 |
commit | 92d7fe568c10db409c485bdcc6dec9ab8695c2cc (patch) | |
tree | 40b7a929d8ca34c5ae7f9f2d5d00d40fe567c55d | |
parent | - Depend on uic and moc (diff) |
Fix the build with the removal of objformat.
Reported by: pointyhat via kris
Notes
Notes:
svn path=/head/; revision=184810
-rw-r--r-- | devel/bonobo-conf/Makefile | 4 | ||||
-rw-r--r-- | graphics/cairo-java/Makefile | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/devel/bonobo-conf/Makefile b/devel/bonobo-conf/Makefile index 384b9355ee8d..0df2f7d8ee49 100644 --- a/devel/bonobo-conf/Makefile +++ b/devel/bonobo-conf/Makefile @@ -25,4 +25,8 @@ USE_LDCONFIG= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" +post-patch: + @${REINPLACE_CMD} -e 's|echo aout|echo elf|g' \ + ${WRKSRC}/configure + .include <bsd.port.mk> diff --git a/graphics/cairo-java/Makefile b/graphics/cairo-java/Makefile index c45e8e9b237d..3feddfffc591 100644 --- a/graphics/cairo-java/Makefile +++ b/graphics/cairo-java/Makefile @@ -38,6 +38,10 @@ PKGMESSAGE= ${WRKDIR}/pkg-message CONFIGURE_ENV+= BOOTCLASSPATH=${JAVA_CLASSES} MAKE_ENV+= BOOTCLASSPATH=${JAVA_CLASSES} +post-patch: + @${REINPLACE_CMD} -e 's|echo aout|echo elf|g' \ + ${WRKSRC}/configure + do-install: ${MKDIR} ${PREFIX}/lib ${INSTALL_DATA} ${WRKSRC}/.libs/libcairojni-${CAIRO_API_VERSION}.so \ |