Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 29489 - add ebuild for legends
Summary: add ebuild for legends
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Games (show other bugs)
Hardware: All Linux
: High enhancement
Assignee: Gentoo Games
URL: http://hosted.tribalwar.com/legends/
Whiteboard:
Keywords:
Depends on: 29559
Blocks:
  Show dependency tree
 
Reported: 2003-09-24 00:25 UTC by SpanKY
Modified: 2003-09-26 18:03 UTC (History)
1 user (show)

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


Attachments
legends-0.2.2.ebuild (legends-0.2.2.ebuild,1.07 KB, text/plain)
2003-09-24 22:17 UTC, Keith Constable
Details
legends-0.2.2.ebuild (legends-0.2.2.ebuild,1.13 KB, text/plain)
2003-09-24 22:23 UTC, Keith Constable
Details
legends-0.2.2.ebuild (legends-0.2.2.ebuild,1.11 KB, text/plain)
2003-09-24 22:31 UTC, Keith Constable
Details

Note You need to log in before you can comment on or make changes to this bug.
Description SpanKY gentoo-dev 2003-09-24 00:25:27 UTC
 
Comment 1 Keith Constable 2003-09-24 22:17:05 UTC
Created attachment 18293 [details]
legends-0.2.2.ebuild

Here, I've done one.

I had to ask the devs what license the game is under, and they said to use the
Torque Game Engine license (see Bug 29559).

I didn't use their runlegends script, which just makes the game use the libSDL
and openal libraries they included.  Since it RDEPENDS on libSDL and openal, we
can just use the globally available ones instead of LD_LIBRARY_PATHing to
theirs.
Comment 2 Keith Constable 2003-09-24 22:23:19 UTC
Created attachment 18294 [details]
legends-0.2.2.ebuild

I b0rked the DESCRIPTION.  Fixed.
Comment 3 Keith Constable 2003-09-24 22:31:56 UTC
Created attachment 18295 [details]
legends-0.2.2.ebuild

Removed unnecessary dodir.

I really should pay more attention or maybe just get more sleep.
Comment 4 SpanKY gentoo-dev 2003-09-26 08:54:05 UTC
added to cvs with a few minor touchups, thanks for the ebuild :)
Comment 5 Keith Constable 2003-09-26 12:47:50 UTC
Aren't
	find -type f -exec chmod a-x '{}' \;
and
	chmod -R a-x *

kind of redundant when both of them are still in the ebuild?

I'll have to remember that.  Your method is much more graceful since it doesn't
hit the directories. ;)

If you remove my version of the perms mod, then you can remove 'common legends
show' from the next line--they're directories.
Comment 6 SpanKY gentoo-dev 2003-09-26 18:03:24 UTC
yeah, originally i had this:
    find -type f -exec chmod a-x '{}' \;
    chmod -R a-x *
    chmod -R go-w *

when i went to kill the first chmod i guess i hit the 2nd ;)
fixed in cvs, thanks for pointing it out