FreeBSD Bugzilla – Attachment 154183 Details for
Bug 196649
New Port: games/stendhal - 2d MMORPG client and server
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
r5: shell archive for games/stendhal
stendhal-5.shar (text/plain), 24.01 KB, created by
Jordan Irwin
on 2015-03-11 07:08:49 UTC
(
hide
)
Description:
r5: shell archive for games/stendhal
Filename:
MIME Type:
Creator:
Jordan Irwin
Created:
2015-03-11 07:08:49 UTC
Size:
24.01 KB
patch
obsolete
># This is a shell archive. Save it in a file, remove anything before ># this line, and then unpack it by entering "sh file". Note, it may ># create directories; files and directories will be owned by you and ># have default permissions. ># ># This archive contains: ># ># stendhal ># stendhal/Makefile ># stendhal/distinfo ># stendhal/pkg-descr ># stendhal/pkg-plist ># stendhal/files ># stendhal/files/patch-src_games_stendhal_server_core_engine_GenerateINI.java ># stendhal/files/stendhal.desktop ># stendhal/files/stendhal ># stendhal/files/stendhal-server ># stendhal/files/stendhal.1 ># stendhal/files/stendhal-server.1 ># >echo c - stendhal >mkdir -p stendhal > /dev/null 2>&1 >echo x - stendhal/Makefile >sed 's/^X//' >stendhal/Makefile << 'be568203f81b99fb4b172a9a22dd43c6' >X# Created by: Jordan Irwin <antumdeluge@gmail.com> >X# $FreeBSD$ >X >XPORTNAME= stendhal >XPORTVERSION= 1.16 >XDISTVERSIONSUFFIX= -src >XCATEGORIES= games java >XMASTER_SITES= SF >XMASTER_SITE_SUBDIR= arianne/${PORTNAME}/${PORTVERSION}/ >X >XMAINTAINER= antumdeluge@gmail.com >XCOMMENT= Two-dimensional massively multi-player online RPG >X >XLICENSE= BSD2CLAUSE GPLv2 >XLICENSE_COMB= multi >X >XWRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} >X >XUSE_JAVA= yes >XJAVA_VERSION= 1.6+ >XUSE_ANT= yes >XUSES= shebangfix >X >XOPTIONS_MULTI= COMPONENTS >XOPTIONS_MULTI_COMPONENTS= \ >X CLIENT SERVER >XOPTIONS_DEFAULT= CLIENT >X >XCLIENT_DESC= Build game client >XSERVER_DESC= Build game server >X >XOPTIONS_SUB= yes >X >XPLIST_SUB+= PORTVERSION=${PORTVERSION} \ >X JAVAJARDIR=${JAVAJARDIR} >X >X.include <bsd.port.options.mk> >X >XMKDIRS= ${STAGEDIR}${DATADIR} ${STAGEDIR}${DATADIR}/doc/Licenses \ >X ${STAGEDIR}${DATADIR}/lib ${STAGEDIR}${DATADIR}/log >XCLIENTSTARTER= stendhal-starter >XCLIENTICON= data/gui/StendhalIcon >X >XSERVERSCRIPTS= build/build_server_script >X >X.if ${PORT_OPTIONS:MCLIENT} >XMAKE_ARGS+= client_build >X.endif >X >X.if ${PORT_OPTIONS:MSERVER} >XMAKE_ARGS+= server_build >XMKDIRS+= ${STAGEDIR}${DATADIR}/data/conf ${STAGEDIR}${DATADIR}/data/script >X.endif >X >Xdo-build: >X @cd ${WRKSRC} && \ >X ${SETENV} ${MAKE_ENV} ${ANT} ${MAKE_ARGS} ${ALL_TARGET} >X >Xdo-install: >X # COMMON >X @${MKDIR} -p ${MKDIRS} >X @cd ${WRKSRC} && ${COPYTREE_SHARE} doc ${STAGEDIR}${DATADIR} && \ >X ${COPYTREE_SHARE} lib ${STAGEDIR}${DATADIR} >X ${INSTALL_DATA} ${WRKSRC}/libs/log4j.jar ${STAGEDIR}${DATADIR}/lib >X ${INSTALL_DATA} ${WRKSRC}/libs/marauroa.jar ${STAGEDIR}${DATADIR}/lib >X ${INSTALL_DATA} ${WRKSRC}/README.txt ${STAGEDIR}${DATADIR} >X >X # CLIENT >X.if ${PORT_OPTIONS:MCLIENT} >X ${INSTALL_DATA} ${WRKSRC}/libs/jorbis.jar ${STAGEDIR}${DATADIR}/lib >X ${INSTALL_DATA} ${WRKSRC}/build/lib/${PORTNAME}-${PORTVERSION}.jar \ >X ${STAGEDIR}${DATADIR}/lib/${PORTNAME}.jar >X ${INSTALL_DATA} ${WRKSRC}/build/lib/${PORTNAME}-data-${PORTVERSION}.jar \ >X ${STAGEDIR}${DATADIR}/lib/${PORTNAME}-data.jar >X ${INSTALL_DATA} ${WRKSRC}/build/lib/${PORTNAME}-music-data-${PORTVERSION}.jar \ >X ${STAGEDIR}${DATADIR}/lib/${PORTNAME}-music-data.jar >X ${INSTALL_DATA} ${WRKSRC}/build/lib/${PORTNAME}-sound-data-${PORTVERSION}.jar \ >X ${STAGEDIR}${DATADIR}/lib/${PORTNAME}-sound-data.jar >X ${INSTALL_DATA} ${WRKSRC}/build/lib/${CLIENTSTARTER}-${PORTVERSION}.jar \ >X ${STAGEDIR}${DATADIR}/${CLIENTSTARTER}.jar >X ${INSTALL} ${FILESDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin >X ${INSTALL_DATA} ${WRKSRC}/.hotspotrc ${STAGEDIR}${DATADIR} >X ${INSTALL_DATA} ${WRKSRC}/${CLIENTICON}.png \ >X ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}.png >X ${INSTALL_DATA} ${FILESDIR}/${PORTNAME}.desktop ${STAGEDIR}${PREFIX}/share/applications >X ${INSTALL_MAN} ${FILESDIR}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/man/man1 >X.endif >X >X # SERVER >X.if ${PORT_OPTIONS:MSERVER} >X ${INSTALL_DATA} ${WRKSRC}/libs/groovy.jar ${STAGEDIR}${DATADIR}/lib >X ${INSTALL_DATA} ${WRKSRC}/libs/guava.jar ${STAGEDIR}${DATADIR}/lib >X ${INSTALL_DATA} ${WRKSRC}/libs/h2.jar ${STAGEDIR}${DATADIR}/lib >X ${INSTALL_DATA} ${WRKSRC}/libs/simple.jar ${STAGEDIR}${DATADIR}/lib >X ${INSTALL_DATA} ${WRKSRC}/build/lib/${PORTNAME}-maps-${PORTVERSION}.jar \ >X ${STAGEDIR}${DATADIR}/lib/${PORTNAME}-maps.jar >X ${INSTALL_DATA} ${WRKSRC}/build/lib/${PORTNAME}-server-${PORTVERSION}.jar \ >X ${STAGEDIR}${DATADIR}/lib/${PORTNAME}-server.jar >X ${INSTALL_DATA} ${WRKSRC}/build/lib/${PORTNAME}-xmlconf-${PORTVERSION}.jar \ >X ${STAGEDIR}${DATADIR}/lib/${PORTNAME}-xmlconf.jar >X @cd ${WRKSRC}/${SERVERSCRIPTS} && ${COPYTREE_SHARE} games ${STAGEDIR}${DATADIR}/data/script >X ${INSTALL} ${FILESDIR}/${PORTNAME}-server \ >X ${STAGEDIR}${PREFIX}/bin >X ${INSTALL_DATA} ${WRKSRC}/data/conf/admins.txt ${STAGEDIR}${DATADIR}/data/conf >X ${INSTALL_MAN} ${FILESDIR}/${PORTNAME}-server.1 ${STAGEDIR}${PREFIX}/man/man1 >X.endif >X >X.include <bsd.port.mk> >be568203f81b99fb4b172a9a22dd43c6 >echo x - stendhal/distinfo >sed 's/^X//' >stendhal/distinfo << '418fcc5e937bb448820b358f40091c28' >XSHA256 (stendhal-1.16-src.tar.gz) = 1d2702f4074a356926e2c4fe07f4d620192663e469f5c42e366815e4efac1f8a >XSIZE (stendhal-1.16-src.tar.gz) = 67320865 >418fcc5e937bb448820b358f40091c28 >echo x - stendhal/pkg-descr >sed 's/^X//' >stendhal/pkg-descr << '70060a0b010e05baeb54b4880a7756dd' >XStendhal is an open source 2D MMORPG with an excellent community. Players can >Xgain experience through battling, quest for special items, explore an expanding >Xworld or even be a part of the development. There are lots of ways to be >Xinvolved in the project. Stendhal is developed using the Arianne game >Xdevelopment system. >X >XWWW: https://stendhalgame.org/ >70060a0b010e05baeb54b4880a7756dd >echo x - stendhal/pkg-plist >sed 's/^X//' >stendhal/pkg-plist << '2f1b116ad301c59695e6c88cfad8dba8' >Xshare/stendhal/README.txt >Xshare/stendhal/doc/AUTHORS.txt >Xshare/stendhal/doc/BUGS.txt >Xshare/stendhal/doc/CHANGES.txt >Xshare/stendhal/doc/LICENSE.txt >Xshare/stendhal/doc/LICENSE-audio.txt >Xshare/stendhal/doc/LICENSE-images.txt >Xshare/stendhal/doc/Licenses/BSD.txt >Xshare/stendhal/doc/Licenses/CC0-1.0.txt >Xshare/stendhal/doc/Licenses/CC-BY-3.0.txt >Xshare/stendhal/doc/Licenses/MIT.txt >Xshare/stendhal/lib/EasyMockLicense.html >Xshare/stendhal/lib/license-apache-2.0.txt >Xshare/stendhal/lib/license-bsd.txt >Xshare/stendhal/lib/license-cpl.html >Xshare/stendhal/lib/license-gpl.txt >Xshare/stendhal/lib/license-h2.html >Xshare/stendhal/lib/license-lgpl.txt >Xshare/stendhal/lib/log4j.jar >Xshare/stendhal/lib/marauroa.jar >Xshare/stendhal/lib/LICENSES.txt >Xshare/stendhal/lib/NOTICE.txt >X@dir share/stendhal/log >X >X%%CLIENT%%bin/stendhal >X%%CLIENT%%man/man1/stendhal.1.gz >X%%CLIENT%%share/pixmaps/stendhal.png >X%%CLIENT%%share/applications/stendhal.desktop >X%%CLIENT%%share/stendhal/.hotspotrc >X%%CLIENT%%share/stendhal/stendhal-starter.jar >X%%CLIENT%%share/stendhal/lib/jorbis.jar >X%%CLIENT%%share/stendhal/lib/stendhal-data.jar >X%%CLIENT%%share/stendhal/lib/stendhal-music-data.jar >X%%CLIENT%%share/stendhal/lib/stendhal-sound-data.jar >X%%CLIENT%%share/stendhal/lib/stendhal.jar >X >X%%SERVER%%bin/stendhal-server >X%%SERVER%%man/man1/stendhal-server.1.gz >X%%SERVER%%share/stendhal/data/conf/admins.txt >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/AbstractOfflineAction.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/AdminMaker$TeleportAction$Destination.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/AdminMaker$TeleportAction.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/AdminMaker$UpgradeAction.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/AdminMaker.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/AdminPortal.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/AdminSign.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/AdosWildlifeRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/AlterQuest.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/AngelRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/AnimalRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/BarbarianRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/BeholderRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/BetManager$BetAction.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/BetManager$BetCondition.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/BetManager$BetInfo.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/BetManager$NoBetCondition.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/BetManager$State.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/BetManager.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/BlordroughRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/BugInspect$1.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/BugInspect.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ChaosRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ContMoveAndStrengthenOnlinePlayers$ContMoveAndStrengthenPlayersTurnListener.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ContMoveAndStrengthenOnlinePlayers.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/CountObjects.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/CreateRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/CreaturesRatioCalculator$CountCreature.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/CreaturesRatioCalculator.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Debuggera$QuestsAction.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Debuggera$SightseeingAction.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Debuggera$TeleportNPCAction.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Debuggera$TeleportScriptAction.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Debuggera.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/DeepInspect.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/DisableFeature.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/DragonRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/DropPlayerItems.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/DrowRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/DumpCharacterFromDatabase.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/DumpConditions.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/DumpDeletionCandidates.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/DumpOpenDBTransactions.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/DumpTransitions.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/DumpTransitionsEx.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/DumpTurnListenerEvents.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/DwarfRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/EasterBunny.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/EasyRPAction.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ElementalRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ElfRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/EnableFeature.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Enchant.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/EntitySearch.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/EventTest.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ExecuteSQL.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/FairyRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/FarmRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/FieldInspect.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/FindBrokenCorpses.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/FishInspect$1.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/FishInspect.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/FixDM.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/FixNegativeHp.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/FrogmanSheepmanRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/GC.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/GnomeRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/HandleTransitions.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Herald$1$ClearNewsAction.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Herald$1$ReadJobsAction.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Herald$1$ReadNewsAction.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Herald$1$RemoveNewsAction.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Herald$1$WriteNewsAction.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Herald$1.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Herald$HeraldListener.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Herald$HeraldNews.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Herald.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ImperialRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ItemRarity$1.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ItemRarity$CountCreature.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ItemRarity$EntryComparator.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ItemRarity.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/KoboldRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/LichRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ListNPCs.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ListRaids$1.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ListRaids.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Log4J.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/LogoutPlayer.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Maria$1.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Maria.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/MineTown.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/MoveAndStrengthenOnlinePlayers$MoveAndStrengthenPlayersTurnListener$1.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/MoveAndStrengthenOnlinePlayers$MoveAndStrengthenPlayersTurnListener.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/MoveAndStrengthenOnlinePlayers.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/NPCPathCheck$1.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/NPCPathCheck.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/NPCShout.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/NPCShoutZone.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/NameChange.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Observer.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/OfflineAdminlevel.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/OfflineClearSentence.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/OniRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/OrcRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Plague.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/PlayerPositionMonitoring$PlayerPositionListener$1.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/PlayerPositionMonitoring$PlayerPositionListener.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/PlayerPositionMonitoring.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ResetSlot.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ResetTutorial.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Santa.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/SaveAllPlayers.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ServerDown$1.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ServerDown.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ServerReset.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ServerShutdown$1.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ServerShutdown.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/SetNPCPath.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/SetWelcomeText.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/SokobanReload.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/SokobanWatcher.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/SummonChest.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/SummonSpell.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/TPPNextPhase.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/TPPShowQuestState.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/TeleportAllPlayers.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/TeleportNPC.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/TestShowItemList.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Unblock$KeepFreeArea.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Unblock$PlayerPositionEntry.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/Unblock.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/UnblockTradeTable.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/WhereWho$1.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/WhereWho.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ZombieRaid.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ZoneCollisionCheck$1.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ZoneCollisionCheck$2.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ZoneCollisionCheck$Border$1.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ZoneCollisionCheck$Border$2.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ZoneCollisionCheck$Border$3.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ZoneCollisionCheck$Border$4.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ZoneCollisionCheck$Border.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ZoneCollisionCheck.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/ZoneStatistics.class >X%%SERVER%%share/stendhal/data/script/games/stendhal/server/script/package-info.class >X%%SERVER%%share/stendhal/lib/groovy.jar >X%%SERVER%%share/stendhal/lib/guava.jar >X%%SERVER%%share/stendhal/lib/h2.jar >X%%SERVER%%share/stendhal/lib/simple.jar >X%%SERVER%%share/stendhal/lib/stendhal-maps.jar >X%%SERVER%%share/stendhal/lib/stendhal-server.jar >X%%SERVER%%share/stendhal/lib/stendhal-xmlconf.jar >2f1b116ad301c59695e6c88cfad8dba8 >echo c - stendhal/files >mkdir -p stendhal/files > /dev/null 2>&1 >echo x - stendhal/files/patch-src_games_stendhal_server_core_engine_GenerateINI.java >sed 's/^X//' >stendhal/files/patch-src_games_stendhal_server_core_engine_GenerateINI.java << '54030a471b58c5ab945b15344aac1da2' >X--- src/games/stendhal/server/core/engine/GenerateINI.java.orig 2015-01-08 08:02:23 UTC >X+++ src/games/stendhal/server/core/engine/GenerateINI.java >X@@ -29,7 +29,10 @@ import marauroa.common.crypto.RSAKey; >X * @author hendrik >X */ >X public class GenerateINI { >X- >X+ >X+ /** Server configuration directory */ >X+ private static String serverConfigDir = System.getenv("HOME") + "/.config/stendhal"; >X+ >X /** The name of the output file. */ >X private static String filename = "server.ini"; >X >X@@ -218,7 +221,7 @@ public class GenerateINI { >X } >X >X private static String getStatisticsFilename() { >X- return "./server_stats.xml"; >X+ return serverConfigDir + "/server_stats.xml"; >X } >X >X private static String getTurnLength() { >54030a471b58c5ab945b15344aac1da2 >echo x - stendhal/files/stendhal.desktop >sed 's/^X//' >stendhal/files/stendhal.desktop << '6ab3fe3302e21c74bbde14fc28963cf5' >X[Desktop Entry] >XEncoding=UTF-8 >XName=Stendhal >XIcon=stendhal >XExec=stendhal >XComment=2-demensional MMORPG >XType=Application >XTerminal=false >XStartupNotify=true >XCategories=Game; >6ab3fe3302e21c74bbde14fc28963cf5 >echo x - stendhal/files/stendhal >sed 's/^X//' >stendhal/files/stendhal << '13341f9504646db6f529f49612eee905' >X#!/bin/sh >X >Xjava $@ -jar /usr/local/share/stendhal/stendhal-starter.jar >13341f9504646db6f529f49612eee905 >echo x - stendhal/files/stendhal-server >sed 's/^X//' >stendhal/files/stendhal-server << 'deae822ac77df8f3e610ff9c397e71ac' >X#!/bin/sh >X >XLOCALCLASSPATH=/usr/local/share/java/classes/*:/usr/local/share/stendhal/*:/usr/local/share/stendhal/lib/*:/usr/local/share/stendhal/data/script/*:/usr/local/share/stendhal/data/conf/* >X >XCONFIGDIR=${HOME}/.config/stendhal >XSERVERLOG=${CONFIGDIR}/log/server.log >Xif [ ! -d ${CONFIGDIR}/log ]; then >X mkdir -p ${CONFIGDIR}/log >Xfi >Xif [ ! -f ${SERVERLOG} ]; then >X touch ${SERVERLOG} >Xfi >X >Xcd ${CONFIGDIR} >X >Xjava -Dconfig.dir="" $@ -Xmx400m -cp "${LOCALCLASSPATH}" games.stendhal.server.StendhalServer -c "${HOME}/.config/stendhal/server.ini" -l >deae822ac77df8f3e610ff9c397e71ac >echo x - stendhal/files/stendhal.1 >sed 's/^X//' >stendhal/files/stendhal.1 << '29cdd641457583be40681f98b3fcb91f' >X.\"Created with GNOME Manpages Editor >X.\"http://sourceforge.net/projects/gmanedit2 >X >X.\"Replace <program> with the program name, x with the Section Number >X.TH STENDHAL 1 "" "March 3, 2015" "Stendhal Client Manual" >X >X.SH NAME >XStendal Client >X >X..SH SYNOPSIS >X.B stendhal >X.RI [ vmargs ] >X.br >X >X.SH DESCRIPTION >XStendhal is a 2-dimenstional multiplayer-online role-playing game. It is set in a fantasy world and incorporates questing, fighting, special events, and more. This is the manual for the game client. >X >X.SH VMARGS >XThese are arguments that will be passed to the Java Virtual Machine. >X >X.SH "SEE ALSO" >Xstendhal-server(1) >29cdd641457583be40681f98b3fcb91f >echo x - stendhal/files/stendhal-server.1 >sed 's/^X//' >stendhal/files/stendhal-server.1 << 'a264019e3ab5bd9e91a27c1afe52773c' >X.\"Created with GNOME Manpages Editor >X.\"http://sourceforge.net/projects/gmanedit2 >X >X.TH STENDHAL-SERVER 1 "" "March 3, 2015" "Stendhal Server Manual" >X >X.SH NAME >XStendal Server >X >X..SH SYNOPSIS >X.B stendhal-server >X.RI [ vmargs ] >X.br >X >X.SH DESCRIPTION >XStendhal is a 2-dimenstional multiplayer-online role-playing game. It is set in a fantasy world and incorporates questing, fighting, special events, and more. This is the manual for the game server. >X >X.SH VMARGS >XThese are arguments that will be passed to the Java Virtual Machine. >X >X.SS "Seasons:" >X.IP \fB\-Dstendhal.christmas\fP >XEnables Christmas maps. >X.IP \fB\-Dstendhal.easter\fP >XEnables Easter maps. >X.IP \fB\-Dstendhal.minetown\fP >XEnables Minetown Weeks maps. >X >X.SH "SEE ALSO" >Xstendhal(1) >a264019e3ab5bd9e91a27c1afe52773c >exit >
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 196649
:
151527
|
154175
|
154176
| 154183