View | Details | Raw Unified | Return to bug 246795 | Differences between
and this patch

Collapse All | Expand All

(-)games/libretro-xrick/Makefile (+29 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	libretro-xrick
4
PORTVERSION=	0.20201218
5
CATEGORIES=	games
6
7
MAINTAINER=	menelkir@itroll.org
8
COMMENT=	Libretro implementation of "Rick Dangerous"
9
10
LICENSE=	GPLv2
11
12
USES=		sdl gmake localbase
13
USE_LDCONFIG=	yes
14
USE_SDL=	sdl
15
16
USE_GITHUB=	yes
17
GH_ACCOUNT=	libretro
18
GH_PROJECT=	xrick-libretro
19
GH_TAGNAME=	0aad6c6
20
21
PLIST_FILES=	lib/libretro/xrick_libretro.so
22
23
MAKEFILE=	Makefile.libretro
24
25
do-install:
26
	${MKDIR} ${STAGEDIR}/${PREFIX}/lib/libretro;
27
	${INSTALL_LIB} ${WRKSRC}/xrick_libretro.so ${STAGEDIR}/${PREFIX}/lib/libretro;
28
29
.include <bsd.port.mk>
(-)games/libretro-xrick/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1608284799
2
SHA256 (libretro-xrick-libretro-0.20201218-0aad6c6_GH0.tar.gz) = 7697696c0f4bf42f8564f6cfa19d5d680cba1c11f7e585b3c952a579622c2e06
3
SIZE (libretro-xrick-libretro-0.20201218-0aad6c6_GH0.tar.gz) = 1821992
(-)games/libretro-xrick/files/patch-Makefile.libretro (+11 lines)
Line 0 Link Here
1
--- Makefile.libretro.orig	2020-12-18 11:59:03 UTC
2
+++ Makefile.libretro
3
@@ -39,7 +39,7 @@ ifeq ($(platform), android)
4
    SHARED :=  -Wl,--fix-cortex-a8 -llog --shared -Wl,--version-script=$(CORE_DIR)/libretro/core/link.T -Wl,--no-undefined
5
 
6
 else ifeq ($(platform), unix)
7
-   CC = gcc
8
+   CC? = gcc
9
  TARGET := $(TARGET_NAME)_libretro.so
10
    fpic := -fPIC
11
    ifneq ($(findstring SunOS,$(shell uname -a)),)
(-)games/libretro-xrick/pkg-descr (+3 lines)
Line 0 Link Here
1
Libretro implementation of "Rick Dangerous".
2
3
WWW: https://github.com/libretro/xrick-libretro

Return to bug 246795