diff options
-rw-r--r-- | emulators/Makefile | 1 | ||||
-rw-r--r-- | emulators/mupen64plus-video-arachnoid/Makefile | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/emulators/Makefile b/emulators/Makefile index d3867656c9ff..a7ee257d2f3b 100644 --- a/emulators/Makefile +++ b/emulators/Makefile @@ -115,6 +115,7 @@ SUBDIR += mupen64plus-rsp-hle SUBDIR += mupen64plus-rsp-z64 SUBDIR += mupen64plus-ui-console + SUBDIR += mupen64plus-video-arachnoid SUBDIR += mupen64plus-video-rice SUBDIR += nonpareil SUBDIR += o2em diff --git a/emulators/mupen64plus-video-arachnoid/Makefile b/emulators/mupen64plus-video-arachnoid/Makefile new file mode 100644 index 000000000000..e0e050ea496a --- /dev/null +++ b/emulators/mupen64plus-video-arachnoid/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: mupen64plus-video-arachnoid +# Date created: 2011-12-20 +# Whom: Jose Alonso Cardenas Marquez <acm@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTREVISION= 0 +PKGNAMESUFFIX= -video-arachnoid +DISTFILES= ${PORTNAME}${PKGNAMESUFFIX}-src-${PORTVERSION}${EXTRACT_SUFX}:plugin + +COMMENT= The arachnoid video plugin for Mupen64plus + +LIB_DEPENDS= mupen64plus.2:${PORTSDIR}/emulators/mupen64plus-core + +USE_GL= gl glu +USE_SDL= # + +MASTERDIR= ${.CURDIR}/../mupen64plus-core + +OPTIONS= # + +CFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/${PORTNAME} +LDFLAGS+= -L${LOCALBASE}/lib + +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +BUILD_WRKSRC= ${WRKSRC}/${PORTNAME}${PKGNAMESUFFIX}/projects/unix +WRKSRC= ${WRKDIR} + +.include "${MASTERDIR}/Makefile" |