FreeBSD Bugzilla – Attachment 180453 Details for
Bug 217513
games/trigger-rally: Update to 0.6.5
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
svn diff
trigger-rally-0.6.5.diff (text/plain), 6.20 KB, created by
Alfonso S. Siciliano
on 2017-03-03 02:50:41 UTC
(
hide
)
Description:
svn diff
Filename:
MIME Type:
Creator:
Alfonso S. Siciliano
Created:
2017-03-03 02:50:41 UTC
Size:
6.20 KB
patch
obsolete
>Index: Makefile >=================================================================== >--- Makefile (revision 435300) >+++ Makefile (working copy) >@@ -2,40 +2,47 @@ > # $FreeBSD$ > > PORTNAME= trigger-rally >-PORTVERSION= 0.6.1 >-DISTVERSIONSUFFIX= -src >+PORTVERSION= 0.6.5 > CATEGORIES= games > MASTER_SITES= SF/trigger-rally/trigger-${PORTVERSION} > >-MAINTAINER= ports@FreeBSD.org >+MAINTAINER= alfix86@gmail.com > COMMENT= Rally car racing game > >-BUILD_DEPENDS= jam:devel/jam >+LICENSE= GPLv2 >+ > LIB_DEPENDS= libphysfs.so:devel/physfs >-RUN_DEPENDS= ${LOCALBASE}/${DATADIR_REL}/trigger.config.defs:games/trigger-data >+LIB_DEPENDS+= libalut.so:audio/freealut > >-USES= openal:al,alut tar:bzip2 >-USE_SDL= sdl image >-USE_GL= glu >-GNU_CONFIGURE= yes >-CONFIGURE_ARGS= --datadir=${DATADIR} \ >- --with-libAlut=${LOCALBASE} \ >- --with-libPhysFS=${LOCALBASE} >+WRKSRC_SUBDIR= src >+USES= gmake openal:al,alut >+USE_SDL= sdl2 image2 >+USE_GL= glu gl glew >+MAKEFILE= GNUmakefile >+ALL_TARGET= build > >+WORKINGSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} >+DATADIR= ${PREFIX}/share/games/trigger-rally >+ > DESKTOP_ENTRIES="Trigger" "" "trigger" \ >- "trigger" "" false >+ "trigger-rally" "" false > >-PLIST_FILES= bin/trigger >-PORTDOCS= README-stereo.txt README.txt >+PORTDOCS= README-stereo.txt README.txt DATA_AUTHORS.txt > >-OPTIONS_DEFINE= DOCS >- >-do-build: >- @cd ${BUILD_WRKSRC} && ${LOCALBASE}/bin/jam >- > do-install: >- ${INSTALL_PROGRAM} ${WRKSRC}/trigger ${STAGEDIR}${PREFIX}/bin >+ ${INSTALL_PROGRAM} ${WORKINGSRC}/bin/trigger-rally ${STAGEDIR}${PREFIX}/bin >+ ${MKDIR} ${STAGEDIR}${DATADIR} >+ cd ${WORKINGSRC}/bin && ${CP} trigger-rally.config.defs ${STAGEDIR}${DATADIR} > ${MKDIR} ${STAGEDIR}${DOCSDIR} >- cd ${WRKSRC}/doc && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} >+ cd ${WORKINGSRC}/doc && ${INSTALL_MAN} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} >+ cd ${WORKINGSRC}/data && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} >+.for i in 16 22 24 32 36 48 64 72 96 128 192 256 >+ @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${i}x${i}/apps/ && \ >+ ${MV} ${STAGEDIR}${DATADIR}/icon/trigger-${i}.png \ >+ ${STAGEDIR}${PREFIX}/share/icons/hicolor/${i}x${i}/apps/trigger.png >+.endfor >+ ${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps/ && \ >+ ${MV} ${STAGEDIR}${DATADIR}/icon/trigger-rally-icons.svg \ >+ ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps/trigger-rally-icons.svg > > .include <bsd.port.mk> >Index: distinfo >=================================================================== >--- distinfo (revision 435300) >+++ distinfo (working copy) >@@ -1,2 +1,3 @@ >-SHA256 (trigger-rally-0.6.1-src.tar.bz2) = 5ac2d2cbaa5aa472abd99e76aefa2cec3389accbfe79e441af94f15568336bbb >-SIZE (trigger-rally-0.6.1-src.tar.bz2) = 368032 >+TIMESTAMP = 1488474378 >+SHA256 (trigger-rally-0.6.5.tar.gz) = f2db8784d8c0dd51c7a2812a9d294db05bb2e9df992038b3a232060dba26ba24 >+SIZE (trigger-rally-0.6.5.tar.gz) = 82290843 >Index: files/patch-GNUmakefile >=================================================================== >--- files/patch-GNUmakefile (nonexistent) >+++ files/patch-GNUmakefile (working copy) >@@ -0,0 +1,17 @@ >+--- GNUmakefile.orig 2016-11-05 17:27:10 UTC >++++ GNUmakefile >+@@ -125,7 +125,7 @@ $(TR_EXEFILE): $(OBJFILES) >+ printf "\t%s\n" $$file; \ >+ done; >+ @printf "\t-> %s\n" $@ >+- @$(CXX) -o $@ $(OBJFILES) $(LDFLAGS) >++ @$(CXX) `sdl2-config --libs` -o $@ $(OBJFILES) $(LDFLAGS) >+ @printf "strip\t%s\n" $@ >+ @strip $@ >+ >+@@ -155,4 +155,4 @@ clean: >+ # >+ %.o: %.cpp GNUmakefile >+ @printf "%s\t%s -> %s\n" $(CXX) $< $@ >+- @$(CXX) $(CXXFLAGS) $(CPPFLAGS) -MMD -MP -c $< -o $@ >++ @$(CXX) `sdl2-config --cflags` $(CXXFLAGS) $(CPPFLAGS) -MMD -MP -c $< -o $@ > >Property changes on: files/patch-GNUmakefile >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: files/patch-Trigger_main.cpp >=================================================================== >--- files/patch-Trigger_main.cpp (nonexistent) >+++ files/patch-Trigger_main.cpp (working copy) >@@ -0,0 +1,11 @@ >+--- Trigger/main.cpp.orig 2017-03-02 19:21:27 UTC >++++ Trigger/main.cpp >+@@ -469,7 +469,7 @@ void MainApp::loadConfig() >+ if (!PHYSFS_exists(cfgfilename.c_str())) { >+ #ifdef UNIX >+ const std::vector<std::string> cfghidingplaces { >+- "/usr/share/games/trigger-rally/" >++ "/usr/local/share/games/trigger-rally/" >+ }; >+ >+ for (const std::string &cfgpath: cfghidingplaces) > >Property changes on: files/patch-Trigger_main.cpp >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: pkg-plist >=================================================================== >--- pkg-plist (nonexistent) >+++ pkg-plist (working copy) >@@ -0,0 +1,23 @@ >+bin/trigger-rally >+%%PORTDOCS%%%%DOCSDIR%%/DATA_AUTHORS.txt >+%%PORTDOCS%%%%DOCSDIR%%/README-stereo.txt >+%%PORTDOCS%%%%DOCSDIR%%/README.txt >+%%DATADIR%%/data.md5 >+%%DATADIR%%/data.zip >+%%DATADIR%%/icon/trigger-rally-win.ico >+%%DATADIR%%/trigger-rally.config.defs >+share/icons/hicolor/128x128/apps/trigger.png >+share/icons/hicolor/16x16/apps/trigger.png >+share/icons/hicolor/192x192/apps/trigger.png >+share/icons/hicolor/22x22/apps/trigger.png >+share/icons/hicolor/24x24/apps/trigger.png >+share/icons/hicolor/256x256/apps/trigger.png >+share/icons/hicolor/32x32/apps/trigger.png >+share/icons/hicolor/36x36/apps/trigger.png >+share/icons/hicolor/48x48/apps/trigger.png >+share/icons/hicolor/64x64/apps/trigger.png >+share/icons/hicolor/72x72/apps/trigger.png >+share/icons/hicolor/96x96/apps/trigger.png >+share/icons/hicolor/scalable/apps/trigger-rally-icons.svg >+@dir %%DATADIR%%/defplayers >+@dir %%DATADIR%%/plugins > >Property changes on: pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 217513
: 180453