diff options
author | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2011-12-20 23:48:21 +0000 |
---|---|---|
committer | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2011-12-20 23:48:21 +0000 |
commit | 477c3382f788d0ce93a56a292b1a2ee2d13a7cb1 (patch) | |
tree | ea1d067decd329fc112ea1f8fa652c7b204b58f9 | |
parent | 9849bc53c675c1bd48904f0b6c094fc17efe5186 (diff) | |
download | ports-477c3382f788d0ce93a56a292b1a2ee2d13a7cb1.tar.gz ports-477c3382f788d0ce93a56a292b1a2ee2d13a7cb1.zip |
Notes
-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" |