diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2014-04-09 20:05:31 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2014-04-09 20:05:31 +0000 |
commit | 8ebac017fa7daf726f7c2b22bf1782c65998341a (patch) | |
tree | 6f1cacf0b6d378a6862c444777685af7dfd178a8 /emulators/ines/Makefile | |
parent | 44cfd63f0c03a4cd7db674a7ad2cded4392451ab (diff) | |
download | ports-8ebac017fa7daf726f7c2b22bf1782c65998341a.tar.gz ports-8ebac017fa7daf726f7c2b22bf1782c65998341a.zip |
Notes
Diffstat (limited to 'emulators/ines/Makefile')
-rw-r--r-- | emulators/ines/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/emulators/ines/Makefile b/emulators/ines/Makefile index 8c942d90159b..0f5b6c37212e 100644 --- a/emulators/ines/Makefile +++ b/emulators/ines/Makefile @@ -12,7 +12,7 @@ EXTRACT_SUFX= .tar.Z MAINTAINER= ports@FreeBSD.org COMMENT= Nintendo Entertainment System emlator for X -LIB_DEPENDS= c.5:${PORTSDIR}/misc/compat5x +LIB_DEPENDS= libc.so.5:${PORTSDIR}/misc/compat5x ONLY_FOR_ARCHS= i386 ONLY_FOR_ARCHS_REASON= is an i386 binary @@ -22,12 +22,10 @@ USE_XORG= x11 xext NO_BUILD= yes STRIP= -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/ines ${PREFIX}/bin - ${MKDIR} ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/iNES.html ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/CART.NES ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/*.pal ${DATADIR} + ${INSTALL_PROGRAM} ${WRKSRC}/ines ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DATADIR} + (cd ${WRKSRC} && ${INSTALL_DATA} iNES.html CART.NES *.pal \ + ${STAGEDIR}${DATADIR}) .include <bsd.port.mk> |