diff options
Diffstat (limited to 'audio/boodler/Makefile')
-rw-r--r-- | audio/boodler/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/audio/boodler/Makefile b/audio/boodler/Makefile index 776fc338c024..a5bac830d889 100644 --- a/audio/boodler/Makefile +++ b/audio/boodler/Makefile @@ -30,12 +30,16 @@ LDCONFIG_DIRS= %%PREFIX%%/share/boodler/boodle DRIVER= FILE .endif +.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "ia64" +PIC= --PIC +.endif + post-patch: ${REINPLACE_CMD} -e "s|^booroot=.*|booroot=${PREFIX}/share/boodler|" ${WRKSRC}/wrapper/boodler @${RMDIR} ${WRKDIR}/boodler-snd/string do-build: - (cd ${WRKSRC} && ${PYTHON_CMD} configure.py --driver ${DRIVER} && make) + (cd ${WRKSRC} && ${PYTHON_CMD} configure.py --driver ${DRIVER} ${PIC} && make) @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/effects ${WRKSRC}/boodle/ do-install: |