Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 65349 - Tibia - multiplayer online RPG - ebuild request
Summary: Tibia - multiplayer online RPG - ebuild request
Status: CONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High enhancement (vote)
Assignee: Default Assignee for New Packages
URL: http://www.tibia.com/
Whiteboard:
Keywords: EBUILD
Depends on:
Blocks:
 
Reported: 2004-09-25 13:51 UTC by Wojciech Myrda
Modified: 2018-12-03 12:58 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
tibia-bin-7.82.6.ebuild (tibia-bin-7.82.6.ebuild,968 bytes, text/plain)
2006-10-17 13:49 UTC, Jon
Details
tibia-bin-7.92.6.ebuild (tibia-bin-7.92.6.ebuild,904 bytes, text/plain)
2007-01-11 14:15 UTC, Wojciech Myrda
Details
tibia-bin-8.55.ebuild (tibia-bin-8.55.ebuild,815 bytes, text/plain)
2010-03-23 00:09 UTC, Michal Andrzejczak
Details
tibia-client-1011.ebuild (tibia-client-1011.ebuild,862 bytes, text/plain)
2013-08-27 14:51 UTC, Italo Silveira
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Wojciech Myrda 2004-09-25 13:51:40 UTC
multiplayer online role playing game -- no ebuild yet present in portage...
Game creators state that the game is primarly developded for Windows, and that there is only old Linux port of the game present. However recently version 7.3 of the game appered for Linux which matches version number for Windows.

Game has great following which can be clearly seen by how busy game servers are. It would be nice to see it being included in portage :)

http://www.tibia.com/home/?subtopic=download
Comment 1 Oliver "Beowulf" Friedrich 2006-01-25 12:10:36 UTC
can't find anything for Linux to download...

could you get me a DDL, i would give it a try...
Comment 2 Jon 2006-10-17 13:49:16 UTC
Created attachment 99900 [details]
tibia-bin-7.82.6.ebuild

I've created an ebuild for this game (this is my second time doing one, so please bear with me). I can confirm that it works on my machine (x86_64)

Also, there are actually two different linux downloads, one for libc5 and one for libc6. The one in this ebuild is for libc6 but I'm not sure exactly what those equivilants are in portage, so I figured I'd ask and then include them once I found out.

I've attached a copy of the ebuild. Again, this is my second one so any and all criticizms are welcome!
Comment 3 Tupone Alfredo gentoo-dev 2006-12-18 11:06:47 UTC
ebuild should be attached as text not as an application/octet-stream
Comment 4 Wojciech Myrda 2007-01-11 14:15:47 UTC
Created attachment 106562 [details]
tibia-bin-7.92.6.ebuild

Slightly updated ebuild
Comment 5 Michal Andrzejczak 2010-03-23 00:09:12 UTC
Created attachment 224791 [details]
tibia-bin-8.55.ebuild

Version bump
Comment 6 Mr. Bones. (RETIRED) gentoo-dev 2010-03-23 00:33:28 UTC
Can you attach the license files?
Comment 7 Michal Andrzejczak 2010-03-23 00:51:46 UTC
(In reply to comment #6)
> Can you attach the license files?
> 

Well, there are no license files in the package... The only thing I could find is this: http://www.tibia.com/support/?subtopic=legaldocuments
Sorry if I made any mistake but it's my first try on making an ebuild.
Comment 8 Italo Silveira 2013-08-27 14:51:14 UTC
Created attachment 357170 [details]
tibia-client-1011.ebuild
Comment 9 Italo Silveira 2013-08-27 14:54:28 UTC
Comment on attachment 357170 [details]
tibia-client-1011.ebuild

># Copyright 1999-2013 Gentoo Foundation
># Distributed under the terms of the GNU General Public License v2
># $Header: $
>
>EAPI=4
>inherit versionator games
>
>MY_PV="$(delete_all_version_separators)"
>MY_PF="${PN/-bin}${MY_PV}"
>MY_PN="${PN/-bin}"
>
>DESCRIPTION="Tibia is a free fantasy MMORPG."
>HOMEPAGE="http://www.tibia.com/"
>SRC_URI="http://static.tibia.com/download/tibia1011.tgz"
>
>LICENSE="CipSoft GmbH"
>SLOT="0"
>KEYWORDS="~x86 ~amd64"
>IUSE=""
>
>RDEPEND="virtual/opengl"
>
>S=${WORKDIR}/Tibia
>src_install() {
>
>dir="${GAMES_PREFIX_OPT}/${MY_PN}"
>
>	exeinto ${dir}
>	doexe Tibia Showerror Patch	|| die "doexe failed"
>	insinto ${dir}
>	doins Tibia.{dat,pic,spr,xpm}	|| die "doins failed"
>	doexe "Patch"
>	doexe "Showerror"
>	doins "StartTibia.sh"
>	doins -r "libc6"
>	dosym /opt/tibia-client/Tibia /usr/bin/tibia
>
>	make_desktop_entry ${PN} KickBall ${PN}.xpm
>
>	prepgamesdirs
>}