-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
arpruss (8): support analog controllers optimize: move RGB conversion outside of point drawing code revert to original resolution nicer point shape allow scaling of vector display fix bug with y scale more flexibility in adjusting display (#37)
- Loading branch information
Showing
2 changed files
with
10 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,17 @@ | ||
# $NetBSD: Makefile,v 1.3 2020/05/26 09:45:17 nia Exp $ | ||
# $NetBSD: Makefile,v 1.4 2020/05/30 16:07:58 nia Exp $ | ||
|
||
DISTNAME= libretro-vecx-20180412 | ||
DISTNAME= libretro-vecx-20200517 | ||
CATEGORIES= emulators | ||
MASTER_SITES= ${MASTER_SITE_GITHUB:=libretro/} | ||
GITHUB_TAG= 25bfdd94900dcf5fd3d555ef686d857c0f087c2f | ||
GITHUB_TAG= 2a2e9291fd3733e714f9f8bf5e624325c7756960 | ||
|
||
MAINTAINER= [email protected] | ||
HOMEPAGE= https://docs.libretro.com/library/vecx/ | ||
COMMENT= Libretro core for Vectrex emulation | ||
LICENSE= gnu-gpl-v3 | ||
|
||
MAKE_FILE= Makefile.libretro | ||
USE_TOOLS+= gmake | ||
|
||
OPSYSVARS+= SOEXT | ||
SOEXT.Darwin= dylib | ||
SOEXT.*= so | ||
PLIST_SUBST+= SOEXT=${SOEXT} | ||
|
||
MAKE_FLAGS+= GIT_VERSION="-pkgsrc" | ||
LIBRETRO_CORE= vecx | ||
|
||
BUILDLINK_TRANSFORM.SunOS+= rm:-Wl,--version-script=./link.T | ||
|
||
INSTALLATION_DIRS+= ${PREFIX}/lib/libretro | ||
|
||
do-install: | ||
${INSTALL_LIB} ${WRKSRC}/vecx_libretro.so \ | ||
${DESTDIR}${PREFIX}/lib/libretro/vecx_libretro.so | ||
|
||
.include "../../emulators/retroarch/core.mk" | ||
.include "../../mk/bsd.pkg.mk" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
$NetBSD: distinfo,v 1.1 2018/08/11 16:09:55 nia Exp $ | ||
$NetBSD: distinfo,v 1.2 2020/05/30 16:07:58 nia Exp $ | ||
|
||
SHA1 (libretro-vecx-20180412-25bfdd94900dcf5fd3d555ef686d857c0f087c2f.tar.gz) = 9eb3ae17fe01d5e875d9dab36499cd51b6a66122 | ||
RMD160 (libretro-vecx-20180412-25bfdd94900dcf5fd3d555ef686d857c0f087c2f.tar.gz) = 8229489d9831825a6cfafb27163bb9ae72d580da | ||
SHA512 (libretro-vecx-20180412-25bfdd94900dcf5fd3d555ef686d857c0f087c2f.tar.gz) = f8cc5f311ce6df354f4fc424131f1a4546c097f08647af3e0ac6dbc8ab54b76bfbdaf26211d0df503e36f821274b8a7f0f4ebd034cb24aa80d8c2880578acd7f | ||
Size (libretro-vecx-20180412-25bfdd94900dcf5fd3d555ef686d857c0f087c2f.tar.gz) = 132710 bytes | ||
SHA1 (libretro-vecx-20200517-2a2e9291fd3733e714f9f8bf5e624325c7756960.tar.gz) = ca2e25e22874c7373fe386ee7a525d38ce4c32f6 | ||
RMD160 (libretro-vecx-20200517-2a2e9291fd3733e714f9f8bf5e624325c7756960.tar.gz) = df9d325445f02e6bea4d7bc8ab583389862325fe | ||
SHA512 (libretro-vecx-20200517-2a2e9291fd3733e714f9f8bf5e624325c7756960.tar.gz) = f26c98464c736ec63dabc50dee18218395d6d6dc163955f551b70d47b87cf716167d0bcb46080c69e0addf2b29de4ffa8808ee42a1a672589d7d3895fc9dd380 | ||
Size (libretro-vecx-20200517-2a2e9291fd3733e714f9f8bf5e624325c7756960.tar.gz) = 143317 bytes |