Main > Free Download Search >

Free epic software for linux

epic

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 28
EPIC 0.6.13

EPIC 0.6.13


EPIC is a Perl IDE based on the Eclipse platform. more>>
EPIC is a Perl IDE based on the Eclipse platform.
Features supported are syntax highlighting, on-the-fly syntax checking, content assistance, Perldoc support, a source formatter, templating support, and a Perl debugger.
A regular expression plugin and support for the eSpell spellchecker are also available.
Enhancements:
- The "testing" version 0.6.13 of EPIC is made available in the SourceForge download area, superseding the previously offered "stable" version 0.5.33. It contains mostly enhancements and fixes in the debugger, some of which cannot be provided in the "stable" version due to major differences in the code bases. The released version 0.6.13, which requires at least Eclipse 3.2, is not declared "stable" yet in order to maintain compatibility with Eclipse 3.1 in the "stable" branch.
<<less
Download (3.4MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
503 downloads
Encode::PerlIO 5.8.1

Encode::PerlIO 5.8.1


Encode::PerlIO is a detailed document on Encode and PerlIO. more>>
Encode::PerlIO is a detailed document on Encode and PerlIO.

Overview

It is very common to want to do encoding transformations when reading or writing files, network connections, pipes etc. If Perl is configured to use the new perlio IO system then Encode provides a "layer" (see PerlIO) which can transform data as it is read or written.

Here is how the blind poet would modernise the encoding:

use Encode;
open(my $iliad,:utf8,iliad.utf8);
my @epic = < $iliad >;
print $utf8 @epic;
close($utf8);
close($illiad);

In addition, the new IO system can also be configured to read/write UTF-8 encoded characters (as noted above, this is efficient):

open(my $fh,>:utf8,anything);
print $fh "Any x{0021} string N{SMILEY FACE}n";

Either of the above forms of "layer" specifications can be made the default for a lexical scope with the use open ... pragma. See open.

Once a handle is open, its layers can be altered using binmode.

Without any such configuration, or if Perl itself is built using the systems own IO, then write operations assume that the file handle accepts only bytes and will die if a character larger than 255 is written to the handle. When reading, each octet from the handle becomes a byte-in-a-character. Note that this default is the same behaviour as bytes-only languages (including Perl before v5.6) would have, and is sufficient to handle native 8-bit encodings e.g. iso-8859-1, EBCDIC etc. and any legacy mechanisms for handling other encodings and binary data.
In other cases, it is the programs responsibility to transform characters into bytes using the API above before doing writes, and to transform the bytes read from a handle into characters before doing "character operations" (e.g. lc, /W+/, ...).

You can also use PerlIO to convert larger amounts of data you dont want to bring into memory. For example, to convert between ISO-8859-1 (Latin 1) and UTF-8 (or UTF-EBCDIC in EBCDIC machines):

open(F, ":utf8", "data.utf") or die $!;
while (< F >) { print G }

# Could also do "print G < F >" but that would pull
# the whole file into memory just to write it out again.

More examples:

open(my $f, ":encoding(iso-8859-2)")
open(my $h, ">:encoding(latin9)") # iso-8859-15
<<less
Download (11.3MB)
Added: 2007-08-07 License: Perl Artistic License Price:
809 downloads
The Battle for Wesnoth 1.2.6 / 1.3.6

The Battle for Wesnoth 1.2.6 / 1.3.6


The Battle for Wesnoth is a turn-based fantasy strategy game. more>>
The Battle for Wesnoth is a turn-based strategy (TBS) game with a fantasy theme.
Build your army, selecting, from one mission to the next one, your most experienced fighters. Fighters you did recruit among a great number of units, offering various strategic strengths and weaknesses on different terrains and against different opponents.
Fight to gain back the throne of Wesnoth, of which you are the legitimate heir. Or use your dreaded power on undead to achieve domination on those foul mortals, or get a revenge for your glorious orcish tribe against these puny human armies who dared stealing your land... stories are waiting to be told. Or maybe you want to challenge your friends or strangers on multiplayer epic fantasy battles.
Main features:
- Build a Hero, and lead your army.
- Different races, with distinctive abilities, weapons and spells.
- GNU/Linux, Windows, MacOSX, BeOS, Solaris, FreeBSD, OpenBSD and NetBSD compatible.
Whats New in 1.2.6 Stable Release:
- WML engine
- fix [variables] not working properly in scenarios (bug #9342)
- language and i18n:
- updated translations: British English, Danish, Finnish, Spanish, Swedish
- updated DejaVuSans font to version 2.18
- user interface:
- Enable "Save Game" and "View Chat Log" menu entries in replay mode.
- Add an additional line below the minimap in the "Multiplayer->Create game"
screen that displays the size of the selected map. (patch #776 by uso)
- Show the (possibly bogus) GPV and fog settings of games with "Use map
settings" on in a darker font. (patch #771 by uso)
- misc:
- added some extra headers for the upcomming gcc 4.3 (debian bug #417764)
- added a .desktop entry for the editor so that it is shown in the kde/gnome
menu
- the unit name generation could with different locales call get_random() a
different number of times. This lead to different names and traits.
Changed to call random a fixed number of times which fixes the traits.
Whats New in 1.3.6 Development Release:
- Since 1.3.5 was a little buggy, now the new version with definatly working minimaps in the lobby. More important: long standing, translation related OOS bugs have been fixed
<<less
Download (72MB)
Added: 2007-07-28 License: GPL (GNU General Public License) Price:
594 downloads
EasyEclipse for LAMP 1.2.2

EasyEclipse for LAMP 1.2.2


EasyEclipse for LAMP is for PHP, Python, Perl, and Ruby development with a web server and a database. more>>
EasyEclipse for LAMP is for PHP, Python, Perl, and Ruby development with a web server and a database.
This distribution contains all the plugins needed to develop in PHP, Python, Perl, Ruby and Ruby On Rail. You may need to disable some plugins based on your needs.
This distribution includes the following plugins:
Core components:
- Eclipse Platform 3.2.1 - Shared platform services from Eclipse.
- Eclipse Tools 3.2.1 - Common libraries for various Eclipse projects.
- Java for Windows 1.5.0.09 - Run Java application on Sun Java(tm) runtime, packaged for Eclipse use. (Windows only)
- Java for Linux 1.5.0.09 - Run Java application on Sun Java(tm) runtime, packaged for Eclipse use. (Linux only)
Tools for general Java development:
- Eclipse Java Development Tools 3.2.1 - Edit, compile, run, debug, test, refactor, document and deploy Java applications.
Some essential utilities:
- AnyEdit Tools 1.5.6.2 - Useful right-click menus in editors: "Open file under cursor", "Open type under cursor", et cetera.
- Eclipse Utils Plugins 1.0.0.1 - Save the cursor position of editors when closing and re-opening a file. Access common team actions with explorer buttons.
- Color Editor 1.2.4 - Edit with syntax highlighting over 100+ file formats.
Tools for web development:
- Eclipse Web tools editors 1.5.2 - Edit and validate XML, XSL, XML Schemas, DTD, HTML, JavaScript and CSS files. Test and validate web services.
- Eclipse HTML Tidy 1.2.2.patch-01-1 - Format and validate HTML, XHTML and XML documents within your favorite editor.
- Amateras HTML and XML editor 2.0.2 - Edit HTML, JSP, XML and CSS files.
Database management tool:
- QuantumDB 3.0.3 - Access, manage and query SQL relational database and servers access using standard JDBC drivers.
IDE for PHP development:
- PHP Eclipse 1.1.9.CVS-20060920 - Edit, run, test, debug and deploy PHP applications.
- Simple test for PHP 0.1.9.1 - Test your PHP code with the SimpleTest PHP unit test framework, and experimental support for PHPUnit2.
IDE for Python development:
- PyDev 1.2.4 - Edit, run, debug and refactor Python and Jython applications.
IDEs for Ruby and Ruby on Rails:
- Ruby Development Tools 0.8.1 - Edit, test, run and debug Ruby applications.
- RadRails 0.7.1.patch-01 - Create, test and deploy Ruby on Rails applications.
Miscellaneous:
- Eclipse Perl Integration (EPIC) 0.5.16 - Edit, run, debug Perl scripts and applications. Test and evaluate regular expressions.
<<less
Download (163.4MB)
Added: 2007-06-19 License: Eclipse Public License Price:
859 downloads
Excalibur: Morganas Revenge 3.0

Excalibur: Morganas Revenge 3.0


Excalibur: Morganas Revenge is a first-person action adventure game using the Aleph One (Marathon) engine. more>>
Excalibur: Morganas Revenge (EMR) is a unique scenario based upon the Aleph One (Marathon) engine. It is a first-person action adventure game, featuring an epic and in-depth story line. As a Federation Marine resting after your last mission, you start aboard the exploration class Starship Kronos where you learn that your real mission has yet to begin. You are re-acquainted with the AI Merlin, who introduces you to Kronos time traveling technology, and reveals your new mission: to save mankind from the clutches of Morgana and her minions. Through untamed raptor-infested jungles, castle arenas, and war-torn streets of the future, you will wield weapons from all time periods - including the Sword of Power, Excalibur - in an effort to thwart the diabolical plot that unfolds. The EMR adventure, spread across 42 solo levels, weaves a tale of truth and honor, knighthood and bravery, and darkness and treachery. EMR also delivers 27 adrenaline pumped network levels. EMR immerses you in an amazing new world, creating an addictive, fun and unique gaming experience.

For those that played EMR under the old Marathon Infinity engine, EMR 3.0 brings exciting new maps, new high resolution textures and landscapes, a completely new set of weapons, new monsters and friends, new scenery, new 16-bit sounds, original music, and a carefully woven original story line that transcends time. Using the Aleph One engine, EMR now sports loads of new special features using Aleph Ones MML and Lua scripting languages. Please note that the AlephOne engine is old technology improved. Architecture is still simulated 3D, so there are no ramps, bridges, and balconies, nor horizontal doors. The sprites in EMR are made up of 2D images posed in different views, not 3D models. Do not expect the latest state-of-the-art graphics engine, but you can expect an intriguing storyline, creative map architectures, engaging graphics, original spellbinding music, and mood-setting sound effects.

Whats New in This Release:


  • Levels with fog and mist
  • Persistent effects such as poison, earthquakes, fire storm spell, and timed grenades
  • Original MP3 music
  • 12 unique weapons, including a new Dragon Flamer and T9000 Railgun
  • New spells for your wand, including fire storm, teleportation, and raise the
    dead
  • Beautifully rendered OpenGL textures and landscapes
  • New graphics for Morgana, the Trex, raven, and Jurassic bug
  • A huge variety of new hi-res scenery items
  • New holodeck programs, including driving a Flintstone mobile through Bedrock!
  • Blood Gulch style net map with 8 simulated net players and a huge battlefield
  • A basketball court netmap where grenades in a basket win points for your team
  • A beautiful new future level that lets you drive a Hoverbike!
  • A total of 5 brand new solo maps and 4 new net maps
  • Lots of updated maps with new areas, new tasks, new features, and new secrets
  • New powerups, such as apples, bananas, health kits, emergency kits, and finally
    a use for all those magic scrolls!
  • And much, much, more...
<<less
Download (227.1MB)
Added: 2007-06-03 License: GPL (GNU General Public License) Price:
877 downloads
VoR 0.5.3

VoR 0.5.3


VoR is an exciting Free Software video game, licensed under the GNU GPL. more>>
VoR is an exciting Free Software video game, licensed under the GNU GPL. It is developed on GNU Linux but we occasionally release a Windoze binary.

Variations on Rockdodger (VoR) is a fork of Paul Holts little gem Rock Dodger, which has now accumulated enough differences to be worth releasing on its own. The premise is simple: dodge the rocks until you die.

No shields, no weapons, no bonus lives, just pure rockdodgin fun for your spare moments. VoR has ray-traced rocks, a free-scrolling screen, and "real" physics for your ship. Warning: this game is, if anything, harder than the original. It is intended to be a quickie game to kill a few spare moments here and there, not an epic space adventure.

Please contact Jason Woofenden if you could make a Mac binary.

<<less
Download (0.44MB)
Added: 2007-05-28 License: Freeware Price:
880 downloads
R.I.P. 2.9

R.I.P. 2.9


Recovery Is Possible (RIP) is a Slackware-based CD or floppy boot/rescue/backup/maintenance system. more>>
Recovery Is Possible (RIP) is a Slackware-based CD or floppy boot/rescue/backup/maintenance system. It has support for a lot of filesystem types (Reiserfs, Reiser4, ext2/3, iso9660, UDF, XFS, JFS, UFS, HPFS, HFS, MINIX, MS DOS, NTFS, and VFAT) and contains a bunch of utilities for system recovery.
R.I.P. also has IDE/SCSI/SATA, PCMCIA, RAID, LVM2, and Ethernet/DSL/cable/PPP/PPPOE network support.
The bootable CD image `RIP-12.4.iso.bin can be written to a CD/DVD disk, using cdrecord/dvdrecord etc.
The 2.6.11.6 kernel has IDE/SATA and SCSI support. The kernel also has PCMCIA, LVM2, RAID, and Ethernet/cable/dsl/ppp/ pppoe/wireless networking support.
These are some of the programs it contains (partimage/partimaged, parted, dump/restore, reiserfsck, fsck.reiser4, fdisk, cfdisk, sfdisk, mke2fs, e2fsck, tune2fs, debugfs, mkfs.xfs, jfs_mkfs, jfs_fsck, xfs_repair, cdrecord/dvdrecord, mkisofs, dvd+rw-format, growisofs, ntfsresize, mkntfs, lynx, mutt, fetchmail, pop3spam, popselect, ncftp, epic irc, tin, telnet, wget, naim, zgv, testdisk, smbclient, smbmount, ssh/sshd, rsync, udp-sender/receiver, lde, blesstivo, rtvpatch, chntpw, cmospwd, grub, grubconfig, smartctl, memtest86, captive-ntfs, ddrescue, dd_rescue, acpitool, dmidecode, hwinfo, lshw, ethtool)
It also includes the DVD udf filesystem packet writing tools (cdrwtool, mkudffs, pktsetup).
The reiserfsck and fsck.reiser4 programs are used to check and repair a Linux reiserfs and reiser4 filesystem.
The xfs_repair program is used to repair a Linux xfs filesystem.
The jfs_fsck program is used to check and repair a Linux jfs filesystem.
The e2fsck program is used to check and repair a Linux ext2 or ext3 filesystem.
The ntfsresize program non-destructively resizes Windows XP/2000/NT4 or Windows Server 2003 NTFS filesystems. Read /usr/doc/RIP/ntfsresize.txt on the rescue system.
The parted program is used for creating, destroying, resizing (fat16/32, ext2/3, reiserfs v3.6), checking and copying partitions, and the file systems on them. This is useful for creating space for new operating systems, reorganising disk usage, copying data between hard disks and disk imaging.
The partition image program partimage saves partitions in the ext2, ext3, reiserfs, jfs, xfs, ufs, ntfs, fat16, and fat32 formats to an image file. Only used blocks are copied to save space and increase the speed. The image file can be compressed, in gzip or bzip2 formats.
Enhancements:
- A few fixes and updates were done.
<<less
Download (70.9MB)
Added: 2007-05-18 License: GPL (GNU General Public License) Price:
897 downloads
MetalServe SVN 250

MetalServe SVN 250


MetalServe provides a standalone IRC DCC file server. more>>
MetalServe provides a standalone IRC DCC file server.

MetalServe is a standalone DCC file server that can be used to share files on Internet Relay Chat (IRC) networks such as EFNet and Undernet. Unlike the only available similar Unix program, iroffer, which offers "packs" of files, MetalServe offers single files similar to the way the SDFind, SPRJukebox, and OmenServe scripts for mIRC, a Windows IRC client, work.

The motivation for writing this program arose because the masquerading Linux router between my desktop IRC client and the IRC servers in the Internet made sending files even harder than getting files. Additionally, the router was hosting the files to be offered anyway, so why not let the serving application run on the router as well. However the only available application as of the time of this writing (April 2002) was iroffer, which, as mentioned, operates in a different manner than desired.

I took a look at the available IRC clients and their scripting capabilities but in the end "standard" ircII 4.4M, BitchX, Epic etc. didnt look powerful enough, had too many security holes etc. and various other aspects, including speed and independency, gave me reason enough to write a dedicated server application in C. In other words, I preferred the "precision screwdriver" approach.

<<less
Download (0.093MB)
Added: 2007-04-11 License: GPL (GNU General Public License) Price:
931 downloads
LivEPICS fc5 1.0

LivEPICS fc5 1.0


LivEPICS is a Linux Live CD that includes: Epics base, Extensions tools, introductory documents and manuals. more>>
LivEPICS is a Linux live CD that includes: Epics Base (release R3.14.7), Extensions tools, introductory documents and manuals. It has the complete functionality to develop a small control system, but it is mainly intended for training classes or to monitor and supervise an EPICS network.
The goal of LivEPICS is:
- Allows to use EPICS without installation on the hard disk.
- Automatic setup of environment variables to compile and test new applications from scratch.
- Includes the basic tools (MEDM, VDCT, etc.) with the related documentation.
<<less
Download (684.4MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
990 downloads
DreamZZT 3.0.6

DreamZZT 3.0.6


DreamZZT is an attempt to recreate the ZZT engine using more modern technology. more>>
ZZT is a game creation system created by Epic Megagames Tim Sweeny in 1990. The official release included 6 worlds, including the shareware world The Town of ZZT. It also included a built-in game editor, allowing for the creation of new games. Check out Z2 for more information about the original ZZT.
DreamZZT is an attempt to recreate the ZZT engine using more modern technology. DreamZZT project is currently available for Linux, Mac OS X, and Microsoft Windows. Due to several techncial issues, Dreamcast builds are currently unavailable.
Main features:
Some of the highlights of DreamZZT include:
- Animated water
- Custom font
- Debug console
- Load / save support
- Music and sound effects
- New torch effect
- ZZT-OOP interpreter
The following ZZT enemys are currently supported:
- Lions
- Tigers
- Bears
- Sharks
- Ruffians
Enhancements:
- New features include an online leaderboard
- on-the-fly board compression
- an integrated editor
- new application and document icons
- digitized drum samples, and centipedes.
<<less
Download (0.32MB)
Added: 2007-01-30 License: Freeware Price:
1002 downloads
Parallel Port Make 0.22

Parallel Port Make 0.22


Parallel Port Make can build FreeBSD ports in parallel to fully take advantage of modern multi-core and processor machine. more>>
Parallel Port Make project is a tool to build FreeBSD ports in parallel to fully take advantage of modern multi-core and processor machines.

Default: pportmake.py --clean -- cleanup --install -job=2 [port1] [portn]

Example: pportmake.py irc/irssi irc/epic

Advanced: pportmake.py -rSvD -j 10 irc/irssi

-h --help Show this help usage message
-c --clean Clean port before compiling
-C --cleanup Clean port after compiling
-d --deinstall Deinstall ports, implied by reinstall
-f --force Force a port and all dependancies to be installed
-G --noconfig Dont recursively configure options
-i --install Install port (default)
-j n --jobs=n Number of threads to use, 1 or 2 per CPU core
is recommended
Default is 2
-O args --options=foo List of arguments to pass to make.
E.g. -O -DX11=yes -DFOO
-r --reinstall Reinstall port and ALL dependancies
-S --maxspeed Try and speed up by maximising CPU usuage.
This may break some ports, use with caution
-w --noclean Dont make clean before compiling
-W --nocleanup Dont make clean after compiling
-v --verbose Be extra verbose
-V --version Show version information
-D --debug Show some debugging info
-P --pretend Dont actually alter the ports

NOTES: It is currently only safe to run 1 copy of this and not have other ports compiling simultaneously
<<less
Download (0.005MB)
Added: 2007-01-16 License: BSD License Price:
1013 downloads
Open Gaming System 0.1.1

Open Gaming System 0.1.1


Open Gaming System is a platform for developing open gaming software. more>>
Open Gaming System project is a platform for developing open gaming software.

It defines an API and provides a free software implementation of this interface. It is designed to be portable, reusable, and flexible enough for use in any game world or campaign setting including medieval, modern, futuristic, gothic, eastern, and western, as well as the traditional fantasy setting.

This distribution contains a software development kit (SDK) for development with C, C++, and Java.

"What is an open game?"

Basically, an open game is a role-playing game that uses an open rule system. An open game follows a recent trend in the role-playing gaming market where the rule systems for such games are shared with the gaming community much like open source software. Open source software is in fact the model for open games.

Role-playing games are a genre of tabletop and computer games typically set in a fantasy world where players assume and develop the personae of a character in an epic adventure. Back to the original question, open gaming software is software written for open games.

This software range from massively multiplayer online role-playing games (MMORPG), complete campaign management systems, or character generation tools.

<<less
Download (MB)
Added: 2007-01-05 License: GPL (GNU General Public License) Price:
1022 downloads
jPicEdt 1.4.1

jPicEdt 1.4.1


jPicEdt is a multi-platform vector-based graphic editor for LaTeX and related packages, including eepic and PsTricks. more>>
jPicEdt is a multi-platform vector-based graphic editor for LaTeX and related packages, including eepic and PsTricks.
The LaTeX picture environment is a special environment for inserting simple drawing commands into a LaTeX file.
This environment was obviously not intented to replace more sophisticated graphical formats such as Postscript or PDF (and their associated design tools: Adobe Illustrator, Macromedia Freehand,...), but was merely aimed at easily incorporating small and simple drawings (e.g. graphs, electrical schematics,...)
Yet picture commands are flexible enough to allow one to build rather complicated drawings, including circles, rectangles, lines and vectors, bezier splines.
Besides, using epic/eepic or PsTricks packages largely increases the set of available commands, and amongst other things, allows for shape-filling (and colours with PsTricks) and a better rendering of shapes.
Finally, one of the main benefits of using the picture environment is the ability to incorporate text containing any LaTeX command allowed in LR mode, e.g. equations, arrays or user-defined commands.
Main features:
- Every graphical element allowed by the picture environment commands: lines, arrows, circles, boxes.
- Emulated elements, for example lines of any slope (which LaTeX doesnt support natively), circles of any size, ellipses, arcs and polygons. This makes a strong use of the multiput command.
- Nearly every object allowed by the epic/eepic packages (excluding grids and textured filling): dashed lines, filled (whitened, blackened or shaded) ellipses or polygons, arcs,... Using this package is optional.
- Starting from version 1.3.2, nearly every object in the pstricks.sty package (this include : filling with colors, hatches, textures, setting various stroke parameters, rotating texts,...). Support for pst-node.sty and other related packages is either experimental (meaning that you must recompile with a boolean flag turned on) or simply underway.
<<less
Download (5.3MB)
Added: 2007-01-03 License: GPL (GNU General Public License) Price:
1030 downloads
Free Orion 0.3

Free Orion 0.3


FreeOrion is an open-source game inspired by Master of Orion. more>>
FreeOrion is an open-source game inspired by Master of Orion, is a turn-based game of epic space strategy that builds on the classic 4X model by incorporating the nation-building elements of games such as Europa Universalis 2 and a versatile tactical combat engine.

While its modular, open-source design allows for a significant degree of customization of the game engine and the story elements by the community, the FreeOrion team is dedicated to the construction of a living, breathing universe in a grand campaign model.

<<less
Download (MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
1027 downloads
TinyMARE 1.0.9957

TinyMARE 1.0.9957


TinyMARE is a Multi-user Adventure Roleplaying Epic MUD server. more>>
TinyMARE project is a Multi-user Adventure Roleplaying Epic MUD server.
TinyMARE (Multi-user Adventure Roleplaying Epic) is a text-based MUD server completely rewritten for efficiency using TinyMUSH and TinyMUSE as a basis for its game engine.
The server is designed for creating an extensive, novelistic role-playing atmosphere supporting real-time combat, day & night, seasons, and global weather.
Using a telnet client, players can log on to explore a virtual world, find magical items, learn skills and techniques, and group together to surpass obstacles you create in your own epic adventure.
Enhancements:
- The path(), nearest(), and rdiv() functions were added. A new "privs" attribute flag that lets user-defined functions operate with object owners privileges was added.
- Many outstanding bugs were fixed.
<<less
Download (0.50MB)
Added: 2006-12-13 License: Free To Use But Restricted Price:
1045 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 2
  • 1
  • 2