Main > Free Download Search >

Free macintosh binhex 4.0 software for linux

macintosh binhex 4.0

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 390
Slackintosh 12.0

Slackintosh 12.0


Slackintosh is a port of Slackware GNU/Linux to PPC (Macintosh). more>>
Slackintosh is a port of Slackware GNU/Linux to PPC (Macintosh).

Russell Kroll was the first person who ported Slackware to PPC (http://slackintosh.exploits.org), but the project stalled with an unfinished 9.1 ..

I (Adrian) started again from scratch porting 10.1 to PPC, and ive stolen the name Slackintosh...

Please note that this port was not done by Russell, dont send him Bugreports.

I used the the Sources + SlackBuild files from Slackware 10.1. ..but i had to make a few changes:

The new Binutils from 10.x didnt like GCC, i used the 9.1 Version to build everything. The Installer uses BusyBox 1.0 and Linux 2.4 is not included, only 2.6.11.5 (Runs better on PPC .. imho)

Its not finished: Not all packages are ported. Youll get gcc, X, Mozilla, XFCE, Gimp.. but no
monsters like KDE & Co.

The installer maybe somewhat funky.. Missing packages are still listed and the yaboot installation isnt tested very well...

..but you should be able to get it running. It won the WFM (WorksForMe) price. (Tested on a MiniMac & iBook2)

<<less
Download (3936MB)
Added: 2007-07-19 License: GPL (GNU General Public License) Price:
831 downloads
JBinHex 0.5

JBinHex 0.5


JBinHex is both a library and a command-line tool, written in Java, to decode files in the Apple Macintosh BinHex 4.0 format. more>>
JBinHex is both a library and a command-line tool, written in Java, to decode files in the Apple Macintosh BinHex 4.0 format.

It accepts the following command line parameters:

Either -u < url > or -f < file > to specify the source BinHexed file. If neither of those options is present, DeBinHex reads stdin.
-d to decode the data fork. It will be put in the file with the name that came from the BinHex header.
-df < filename > to decode the data fork to the named file instead of the name that came from the BinHex header.
-r to decode the resource fork. It will be put in the file with the name that came from the BinHex header, with the extension ".resource" appended to it.
-rf < filename > to decode the resource fork to the named file instead of the name that came from the BinHex header.
Both -d/-df options and -r/-rf may be present at the same time. If none of these options is present, DeBinHex will decode the data fork as if the -d options was specified.
-h to only show the header of the BinHex file on stdout. The decoding options are ignored.
<<less
Download (0.035MB)
Added: 2006-08-22 License: GPL (GNU General Public License) Price:
1164 downloads
Early Macintosh Image LoadEr 0.11

Early Macintosh Image LoadEr 0.11


Early Macintosh Image LoadEr allows to boot linux-m68k from a floppy on a macintosh such as MacII or Quadra 610. more>>
Early Macintosh Image LoadEr allows to boot linux-m68k from a floppy on a macintosh such as MacII or Quadra 610.
With it, you can create rescue disk, or remove the MacOS partition (needed by the legacy penguin booter) from your HD.
Create a floppy from rescue disk image
You can find floppy image from the package emile-rescue
Under linux, the command to dump image to floppy is:
# dd if=emile-rescue-x.y.bin of=/dev/fd0 bs=512 conv=sync
then, you can eject floppy with:
# eject /dev/fd0
If you are using MacOS, use MakeDebianFloppy AppleScript (you must use a floppy image with a size of exactly 1474560 bytes).
Enhancements:
- This release has improved SCSI support, allows you to create a bootable CD-ROM, adds Debian packaging, updates the PowerPC part (currently not usable), and introduces apple_driver (currently not usable).
<<less
Download (0.17MB)
Added: 2007-03-29 License: GPL (GNU General Public License) Price:
943 downloads
Convert::BinHex 1.119

Convert::BinHex 1.119


Convert::BinHex can extract data from Macintosh BinHex files. more>>
Convert::BinHex can extract data from Macintosh BinHex files.

ALPHA WARNING: this code is currently in its Alpha release. Things may change drastically until the interface is hammered out: if you have suggestions or objections, please speak up now!

SYNOPSIS

Simple functions:

use Convert::BinHex qw(binhex_crc macbinary_crc);

# Compute HQX7-style CRC for data, pumping in old CRC if desired:
$crc = binhex_crc($data, $crc);

# Compute the MacBinary-II-style CRC for the data:
$crc = macbinary_crc($data, $crc);

Hex to bin, low-level interface. Conversion is actually done via an object ("Convert::BinHex::Hex2Bin") which keeps internal conversion state:
# Create and use a "translator" object:
my $H2B = Convert::BinHex->hex2bin; # get a converter object
while (< STDIN >) {
print $STDOUT $H2B->next($_); # convert some more input
}
print $STDOUT $H2B->done; # no more input: finish up

Hex to bin, OO interface. The following operations must be done in the order shown!
# Read data in piecemeal:
$HQX = Convert::BinHex->open(FH=>*STDIN) || die "open: $!";
$HQX->read_header; # read header info
@data = $HQX->read_data; # read in all the data
@rsrc = $HQX->read_resource; # read in all the resource

Bin to hex, low-level interface. Conversion is actually done via an object ("Convert::BinHex::Bin2Hex") which keeps internal conversion state:
# Create and use a "translator" object:
my $B2H = Convert::BinHex->bin2hex; # get a converter object
while (< STDIN >) {
print $STDOUT $B2H->next($_); # convert some more input
}
print $STDOUT $B2H->done; # no more input: finish up

Bin to hex, file interface. Yes, you can convert to BinHex as well as from it!
# Create new, empty object:
my $HQX = Convert::BinHex->new;

# Set header attributes:
$HQX->filename("logo.gif");
$HQX->type("GIFA");
$HQX->creator("CNVS");

# Give it the data and resource forks (either can be absent):
$HQX->data(Path => "/path/to/data"); # here, data is on disk
$HQX->resource(Data => $resourcefork); # here, resource is in core

# Output as a BinHex stream, complete with leading comment:
$HQX->encode(*STDOUT);

PLANNED!!!! Bin to hex, "CAP" interface. Thanks to Ken Lunde for suggesting this.
# Create new, empty object from CAP tree:
my $HQX = Convert::BinHex->from_cap("/path/to/root/file");
$HQX->encode(*STDOUT);

BinHex is a format used by Macintosh for transporting Mac files safely through electronic mail, as short-lined, 7-bit, semi-compressed data streams. Ths module provides a means of converting those data streams back into into binary data.

<<less
Download (0.083MB)
Added: 2006-08-04 License: Perl Artistic License Price:
1234 downloads
infobot 44.3

infobot 44.3


infobot is an IRC bot written in Perl 5 which implements a sort of artificial intelligence. more>>
infobot is an IRC bot written in Perl 5 which implements a sort of artificial intelligence by learning information ("factoids") from channel discussions and then responding intelligently to queries about this accumulated information.

In the beginning, we had to type URLs out, or, at best, wade through a set of hierarchic bookmarks for a URL. But what about when you dont know what youre looking for? If you just want to name it, and find out where it is? (Of course, archie has done this for years.)

What makes infobots different from a lycos or a set of bookmarks is that he learns by observing, and that you can query him in intuitive ways.

Internet Relay Chat is a set of client and server which use a protocol. People get on and chat in near-real-time; rather than wait for your netnews replies, you can ask a question and get ignored or answered while you wait.

Url has been sitting on the EFNet channel #macintosh, where hes picked up quite a few factoids from the local community*.

Url, purl, and rurl are perl scripts that once ran under sirc. In fact, it would also run under MacPerl and my barebones port of MacSirc. However, I ended up writing a little irc front-end for it of my own because sirc would hang (rather than, say, crash gracefully).
<<less
Download (0.36MB)
Added: 2006-06-17 License: GPL (GNU General Public License) Price:
1226 downloads
Directory Synchronize 0.91

Directory Synchronize 0.91


Directory Synchronize is the small handy utility you always missed! more>>
Directory Synchronize is the small handy utility you always missed! Directory Synchronize is small, reliable, and fast. And best of all - it is Open Source; released under the GPL you are free to use and distribute it.
Directory Synchronize synchronizes the contents of one directory to another. That means you can use it to backup your data on a regular basis to another computer or another harddrive.
Or you can use Directory Synchronize to synchronize the data on your laptop with the data on your desktop.
Programmed in real platform independent Java you can use Directory Synchronize on nearly every computer platform including Windows, Linux and Macintosh.
Use the Directory Synchronize GUI for starting, pausing and stopping a synchronization.
Or use the GUI to easily create and store a configuration and use the command line to automatically start it every time you boot up your computer.
Enhancements:
- Some bugs have been solved.
- If a file can not be accessed, only a warning is issued instead of issuing a critical error and halting synchronization.
- If you select a directory instead of a file as a log for a directory definition, a line-separator was added instead of a file-separator.
- Some NullPointerExceptions in console mode have been fixed.
- The " " wildcard can be used for the path of the global log, and the " " wildcard can be used for the name of the current directory definition in the directory definition log filename.
<<less
Download (0.66MB)
Added: 2007-01-19 License: GPL (GNU General Public License) Price:
1014 downloads
Mactel-Linux 20060326

Mactel-Linux 20060326


Mactel-Linux project is the effort to adapt the GNU/Linux operating system to Intel-based Apple Macintosh hardware. more>>
Mactel-Linux project is the effort to adapt the GNU/Linux operating system to Intel-based Apple Macintosh hardware.
This requires changes/additions to at least the following projects:
- the Linux kernel
- several drivers.
Enhancements:
- New LiveCD is up.
- Improoved Macbook Pro support.
- Partition mounting works now.
- Latest Ubuntu updates.
- Dualboot Intel Mac/PC.
<<less
Download (362.4MB)
Added: 2007-06-01 License: GPL (GNU General Public License) Price:
878 downloads
CGI_Lite 1.8

CGI_Lite 1.8


CGI_Lite is a Perl module to process and decode WWW forms and cookies. more>>
CGI_Lite is a Perl module to process and decode WWW forms and cookies.

SYNOPSIS

use CGI_Lite;

$cgi = new CGI_Lite;

$cgi->set_platform ($platform);

where $platform can be one of (case insensitive):
Unix, Windows, Windows95, DOS, NT, PC, Mac or Macintosh

$cgi->set_file_type (handle or file);
$cgi->add_timestamp (0, 1 or 2);

where 0 = no timestamp
1 = timestamp all files (default)
2 = timestamp only if file exists

$cgi->filter_filename (⊂routine);

$size = $cgi->set_buffer_size ($some_buffer_size);

$status = $cgi->set_directory (/some/dir);
$cgi->set_directory (/some/dir) || die "Directory doesnt exist.n";

$cgi->close_all_files;

$cgi->add_mime_type (application/mac-binhex40);
$status = $cgi->remove_mime_type (application/mac-binhex40);
@list = $cgi->get_mime_types;

$form = $cgi->parse_form_data;
%form = $cgi->parse_form_data;

or

$form = $cgi->parse_form_data (GET, HEAD or POST);

$cookies = $cgi->parse_cookies;
%cookies = $cgi->parse_cookies;

$status = $cgi->is_error;
$message = $cgi->get_error_message;

$cgi->return_error (error 1, error 2, ...);

$keys = $cgi->get_ordered_keys;
@keys = $cgi->get_ordered_keys;

$cgi->print_data;

$cgi->print_form_data; (deprecated as of v1.8)
$cgi->print_cookie_data; (deprecated as of v1.8)

$new_string = $cgi->wrap_textarea ($string, $length);

@all_values = $cgi->get_multiple_values ($reference);

$cgi->create_variables (%form);
$cgi->create_variables ($form);

$escaped_string = browser_escape ($string);

$encoded_string = url_encode ($string);
$decoded_string = url_decode ($string);

$status = is_dangerous ($string);
$safe_string = escape_dangerous_chars ($string);

<<less
Download (0.014MB)
Added: 2007-05-09 License: Perl Artistic License Price:
899 downloads
AmAvIs 0.3.13

AmAvIs 0.3.13


AMaViS-ng is a modular rewrite of amavisd and amavis-perl. more>>
AMaViS-ng is a modular rewrite of amavisd and amavis-perl. It scans email for malicious code inside attachments and archive files, stopping delivery if malicious code is found.

Most people will say: "A virus scanner? For UN*X? Why? Viruses do not work in a UNIX environment." On the first glance they are right (even if there are at least two viruses which run under Linux - well, actually they are Trojan Horses)

On the second view though, imagine a heterogene network environment where can exist UNIX and Windows systems.Now think of an UN*X server that serves Windows and/or Macintosh workstations via a POP3 service. Would it not be nice to ensure attachments coming via email are scanned for viruses before they reach a system they are able to infect? Well - that is what this package is for. It resides on the server that handles your incoming mails. When a mail arrives, instead of being delivered via procmail directly, is parsed through a script that extracts all attachments from the mail, unpacks (if needed) and scannes them using a professional virus scanner program.

<<less
Download (0.31MB)
Added: 2006-07-07 License: GPL (GNU General Public License) Price:
1206 downloads
alloywm 0.4.0

alloywm 0.4.0


alloywm is the metallic window manager. more>>
As its name implies, alloywm is a quite exquisite, aesthetic little window manager for X11. The premise of this window manager is not to be over-bloated like better known window managers such as KDE, and to keep the interface out of a users way. Also, alloywm maintains to be small, fast, and have a really small memory footprint.

I first decided to adopt this window manager as a testbed for programming in C for X11, because I was mainly a non-graphical programmer for a long time. It is not very configurable, thusly you would have to edit the sourcecode to add any functionality, to bend it to your likings.

The window manager feels like a Macintosh GUI interface, except that you cannot click inside the window to give focus (that will change, soon.) A new window is drawn wherever the mouse happens to be. So, in other words, if I run an rxvt, and the mouse is in the centre, then the top-left hand corner of the window is in the centre.
<<less
Download (0.053MB)
Added: 2005-08-12 License: GPL (GNU General Public License) Price:
1535 downloads
getmail 4.7.6

getmail 4.7.6


getmail is a mail retriever designed to allow you to get your mail from one or more mail accounts on various mail servers. more>>
getmail is a mail retriever designed to allow you to get your mail from one or more mail accounts on various mail servers to your local machine for reading with a minimum of fuss.
getmail it is secure, flexible, reliable, and easy-to-use. getmail is designed to replace other mail retrievers such as fetchmail.
Main features:
- simple to install, configure, and use
- retrieve virtually any mail
- support for accessing mailboxes with the following protocols:
- POP3
- POP3-over-SSL
- IMAP4
- IMAP4-over-SSL
- SDPS (Demon UKs extensions to POP3)
- support for single-user and domain mailboxes
- retrieve mail from an unlimited number of mailboxes and servers
- can remember which mail it has already retrieved, and can be set to only download new messages
- support for message filtering, classification, and annotation by external programs like spam filters and anti-virus programs
- support for delivering messages to different destinations based on the message recipient
- reliability
- native safe and reliable delivery support for maildirs and mboxrd files, in addition to delivery through arbitrary external message delivery agents (MDAs)
- does not destroy information by rewriting mail headers
- does not cause mail loops by doing SMTP injection, and therefore does not require that you run an MTA (like qmail or sendmail) on your host
- written in Python, and therefore easy to extend or customize
- a flexible, extensible architecture so that support for new mail access protocols, message filtering operations, or destination types can be easily added
- cross-platform operation; getmail 4 should work on Unix/Linux, Macintosh, and other platforms. Windows support available under the free Cygwin package.
- winner of various software awards, including DaveCentrals "Best of Linux.
Enhancements:
- A fix for an exception when getmail is trying to report a POP3 server that completely missed generating a UIDL token for a message. .
<<less
Download (0.14MB)
Added: 2007-08-09 License: GPL (GNU General Public License) Price:
809 downloads
Bookmarks Scrollbar 1.0.5

Bookmarks Scrollbar 1.0.5


Bookmarks Scrollbar is an extension which adds a scrollbar to the bookmarks menu. more>>
Bookmarks Scrollbar is an extension which adds a scrollbar to the bookmarks menu.

A scrollbar is a graphical widget in a GUI with which continuous text, pictures or anything else can be scrolled including time in video applications, i.e., viewed even if it does not fit into the space in a computer display, window, or viewport.

Usually designed as a long rectangular area on one or two sides of the viewing area, containing a bar (or thumb) that can be dragged along a trough to move the body of the document as well as two arrows on either end for precise adjustments. The "thumb" has different names in different environments: on the Macintosh it is called a "thumb" on the Java platform it is called "thumb" or "knob"; Microsofts .NET documentation refers to it as "scroll box" or "scroll thumb"; in other environments it is called "elevator", "puck" or "wiper". Additional functions may be found, such as zooming in/out or various application-specific tools.

The thumb can also sometimes be adjusted by dragging its ends. In this case it would adjust both the position and the zooming of the document, where the size of the thumb represents the degree of zooming applied. A thumb that completely fills the trough, or "track" represents viewing the entire document, at which point the scrollbar may temporarily become hidden.

<<less
Download (0.001MB)
Added: 2007-04-11 License: MPL (Mozilla Public License) Price:
931 downloads
aMSN 0.96

aMSN 0.96


Alvaros Messenger is a multilanguage MSN Messenger client with file transfer support. more>>
aMSN : Alvaros Messenger, or Another MSN messenger clone
This project is a modified and multilanguage version of Compus Messenger (CCMSN).Its a Tcl/Tk script as was CCMSN and Tcl/Tk must be installed to run it. This means it is multiplatform and can run on any OS having Tcl/Tk installed (Linux, Windows, Macintosh).
aMSN is a clone of the original MSN Messenger, having the same look and feel.
Main features:
- Sound for Events
- Look and Feel similar to original MSN Messenger
- Multilanguage (Around 40 languages currently supported)
- Running multiple instances of AMSN at once for multiple logins
- File Transfers
- Group Support
- Normal and Animated Emoticons with sounds
- Chat History
- On Event Alarms
- Conferencing Support
- Full Proxy Support
- Docking for Gnome1 and FreeDesktop (Gnome2/KDE3)
- Font configuration
- Profiles for separate configuration per login
- AutoAway Messages
- Manual Allow/Block/Contact/Reverse lists manipulation
- Remote Control
- Ability to detect contacts who removed you from their list
- No censorship on nicknames
- Support for Buddy Icons and MSN6 File Transfers (through server)
- Very extensive preferences allows high level of customisation
- A few more small features...
Enhancements:
- Finally, the long-awaited 0.96 release is out! It contains several bugfixes to the release candidate, most important ones being: a) you can now send files to Windows Live Messenger users b) the connectivity checker is a lot more reliable. If you are upgrading from 0.95 and skipped the Release Candidate, you will also find support for the new protocol MSNP12 (with support for Personal Messages), enhanced webcam logs, ability to see your contacts display pictures in the contact list, new menus, etc... Enjoy!
<<less
Download (2.0MB)
Added: 2006-11-25 License: GPL (GNU General Public License) Price:
654 downloads
LimeWire Linux 4.12.6

LimeWire Linux 4.12.6


Free limewire p2p file sharing software for Linux. more>> LimeWire allows you to search for multiple files at the same time, available in several different languages, and is most famous for its ease-of-use and cross-platform compatibility. LimeWire will run on Windows, Macintosh, Linux, Solaris...
Ease of use - just install, run, and search
Ability to search by artist, title, genre, or other metainformation
Elegant multiple search tabbed interface
"Swarm" downloads from multiple hosts help you get files faster
iTunes integration for Mac and Windows users
Unique "ultrapeer" technology reduces bandwidth requirements for most users
Integrated chat
Directly connect to a computer
Browse host feature--even works through firewalls
Added Bitzi metadata lookup
International versions: Now available in many new languages
Connects to the network using GWebCache, a distributed connection system
Automatic local network searches for lightning-fast downloads
Support for MAGNET links that allow you to click on web page links that access Gnutella
<<less
Download (5.84MB)
Added: 2009-04-06 License: Freeware Price: Free
200 downloads
Convert::Cyrillic 1.05

Convert::Cyrillic 1.05


Convert::Cyrillic is a Perl module with routines for converting from one cyrillic charset to another. more>>
Convert::Cyrillic is a Perl module with routines for converting from one cyrillic charset to another.

SYNOPSIS

use Convert::Cyrillic;

$src = koi8;
$dst = win;
$SrcBuf = text in koi8 here;
$DstBuf = Convert::Cyrillic::cstocs ($Src, $Dst, $SrcBuf);

This package implements routine for converting from one cyrillic charset to another. It is intended to be used from cgis which need built-in support for translations. For example, you may wish to use it in form processor to translate from user encoding to one used by your site.

Where $Src and $Dst are one of:

KOI8 - for KOI8-R
WIN - for WIN-1251
DOS - for DOS, alternative, CP-866
MAC - for Macintosh
ISO - for ISO-8859-5
UTF-8 - for UTF-8 (Unicode)
VOL - for Volapuk (transliteration)

Buffer may contain line breaks, which are preserved.

<<less
Download (0.024MB)
Added: 2006-08-23 License: Perl Artistic License Price:
1166 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5