diff options
author | acm <acm@FreeBSD.org> | 2010-12-18 13:27:30 +0800 |
---|---|---|
committer | acm <acm@FreeBSD.org> | 2010-12-18 13:27:30 +0800 |
commit | a9871f04550af1748825671324263e64b95c6efb (patch) | |
tree | f3f93b5173f150be0681a7739a7606bd096c19b3 /emulators | |
parent | 202fb892092e4c74b5ec09431f4f0c8d5205c4f8 (diff) | |
download | freebsd-ports-gnome-a9871f04550af1748825671324263e64b95c6efb.tar.gz freebsd-ports-gnome-a9871f04550af1748825671324263e64b95c6efb.tar.zst freebsd-ports-gnome-a9871f04550af1748825671324263e64b95c6efb.zip |
- Fix install path
Reported by: pav
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/mupen64plus-core/Makefile.common | 2 | ||||
-rw-r--r-- | emulators/mupen64plus/Makefile | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/emulators/mupen64plus-core/Makefile.common b/emulators/mupen64plus-core/Makefile.common index 36ad55645a42..486db1dc65a5 100644 --- a/emulators/mupen64plus-core/Makefile.common +++ b/emulators/mupen64plus-core/Makefile.common @@ -84,7 +84,7 @@ do-install: . if ${PKGNAMESUFFIX} != "-ui-console" @${MKDIR} ${PREFIX}/lib/${PORTNAME} - ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/${PORTNAME}${PKGNAMESUFFIX}.so ${PREFIX}/lib + ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/${PORTNAME}${PKGNAMESUFFIX}.so ${PREFIX}/lib/${PORTNAME} . else ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/${PORTNAME} ${PREFIX}/bin . endif diff --git a/emulators/mupen64plus/Makefile b/emulators/mupen64plus/Makefile index 44197a479534..1c27951e0ff7 100644 --- a/emulators/mupen64plus/Makefile +++ b/emulators/mupen64plus/Makefile @@ -21,14 +21,14 @@ RUN_DEPENDS+= ${LOCALBASE}/lib/libmupen64plus.so.2:${PORTSDIR}/emulators/mupen64 RUN_DEPENDS+= mupen64plus:${PORTSDIR}/emulators/mupen64plus-ui-console # Audio plugins -RUN_DEPENDS+= ${LOCALBASE}/lib/mupen64plus-audio-sdl.so:${PORTSDIR}/emulators/mupen64plus-audio-sdl +RUN_DEPENDS+= ${LOCALBASE}/lib/${PORTNAME}/mupen64plus-audio-sdl.so:${PORTSDIR}/emulators/mupen64plus-audio-sdl # Input plugins -RUN_DEPENDS+= ${LOCALBASE}/lib/mupen64plus-input-sdl.so:${PORTSDIR}/emulators/mupen64plus-input-sdl -RUN_DEPENDS+= ${LOCALBASE}/lib/mupen64plus-rsp-hle.so:${PORTSDIR}/emulators/mupen64plus-rsp-hle +RUN_DEPENDS+= ${LOCALBASE}/lib/${PORTNAME}/mupen64plus-input-sdl.so:${PORTSDIR}/emulators/mupen64plus-input-sdl +RUN_DEPENDS+= ${LOCALBASE}/lib/${PORTNAME}/mupen64plus-rsp-hle.so:${PORTSDIR}/emulators/mupen64plus-rsp-hle # Graphics plugins -RUN_DEPENDS+= ${LOCALBASE}/lib/mupen64plus-video-rice.so:${PORTSDIR}/emulators/mupen64plus-video-rice +RUN_DEPENDS+= ${LOCALBASE}/lib/${PORTNAME}/mupen64plus-video-rice.so:${PORTSDIR}/emulators/mupen64plus-video-rice NO_MTREE= yes NO_BUILD= yes |