diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2004-10-14 22:09:16 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2004-10-14 22:09:16 +0000 |
commit | 78e0a143cd36ebbb3db20283d585054599b2e38c (patch) | |
tree | e42eea0535a7bc97d323b3cdba01f5a165b6ca8c /multimedia/openquicktime | |
parent | dd6c684229d45e948da30498b3bbfaf52b6f6e5b (diff) | |
download | ports-78e0a143cd36ebbb3db20283d585054599b2e38c.tar.gz ports-78e0a143cd36ebbb3db20283d585054599b2e38c.zip |
Notes
Diffstat (limited to 'multimedia/openquicktime')
-rw-r--r-- | multimedia/openquicktime/Makefile | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/multimedia/openquicktime/Makefile b/multimedia/openquicktime/Makefile index 18ce2651250f..9a25d04b0882 100644 --- a/multimedia/openquicktime/Makefile +++ b/multimedia/openquicktime/Makefile @@ -23,7 +23,6 @@ GNU_CONFIGURE= yes USE_GNOME= gtk12 USE_GMAKE= yes USE_REINPLACE= yes -USE_SIZE= yes INSTALL_SHLIBS= yes PKGDEINSTALL= ${PKGINSTALL} @@ -31,10 +30,6 @@ OPTIONS= DEBUG "Turn on debugging" on .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 502126 -BROKEN= "Does not compile on FreeBSD >= 5.x" -.endif - .ifndef(WITH_DEBUG) CONFIGURE_ARGS+= --enable-debug=no .endif @@ -44,7 +39,15 @@ BROKEN= "Does not build on sparc64" .endif post-patch: - @${REINPLACE_CMD} -e "s/xCC/xc/" ${WRKSRC}/configure + @${REINPLACE_CMD} \ + -e 's|xCC|xc|' \ + -e 's|-O2||' \ + ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} +.if ${OSVERSION} >= 502126 + @${REINPLACE_CMD} \ + -e 's|-fpic||' \ + ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} +.endif post-install: @${SETENV} PKG_PREFIX=${PREFIX} ${SH} \ |