Main > Free Download Search >

Free for apple software for linux

for apple

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 797
Snow-Apple

Snow-Apple


Snow-Apple provides an icon pack for Gnome. more>>
Snow-Apple provides an icon pack for Gnome.

Mark Finlay fairly converted the nautilus 2.0.x theme called Snow-Apple, to an icon theme for gnome 2.2.x. thanks to him.

<<less
Download (0.50MB)
Added: 2007-01-27 License: GPL (GNU General Public License) Price:
1010 downloads
mozplayerxp

mozplayerxp


mozplayerxp is a scriptable Mozilla mplayer plugin. more>>
mozplayerxp is an attempt to embed videos in mozilla firebird and mozilla under linux, the goal is to implement as much windows media/apple quicktime support as possible.

you might ask why another plugin theres already one out there? mplayerplug-in?

mplayerplug-in uses many global variables in its shared library enviroment this is not reliable since there might be problems when running more than one instances (its like 2 people are going to share 1 glass at the same time)

the second aim is usability, this project relies on GTK2+ right now, another patch has to get submitted to the mplayer project for adding ALT-RETURN support to that plugin as well.

currently the plugin is able to switch to fullscreen, start and stop without any problems (that means the hardest part of that plugin is done since threading and forking dont affect anything else anymore).
<<less
Download (0.03MB)
Added: 2005-05-05 License: Free To Use But Restricted Price:
1632 downloads
AppleII::Disk 0.08

AppleII::Disk 0.08


AppleII::Disk is a Perl module for block-level access to Apple II disk image files. more>>
AppleII::Disk is a Perl module for block-level access to Apple II disk image files.

SYNOPSIS

use AppleII::Disk;
my $disk = AppleII::Disk->new(image.dsk);
my $data = $disk->read_block(1); # Read block 1
$disk->write_block(1, $data); # And write it back :-)

AppleII::Disk provides block-level access to the Apple II disk image files used by most Apple II emulators. (For information about Apple II emulators, try the Apple II Emulator Page at http://www.ecnet.net/users/mumbv/pages/apple2.shtml.) For a higher-level interface, use the AppleII::ProDOS module.
AppleII::Disk provides the following methods:

$disk = AppleII::Disk->new($filename, [$mode])

Constructs a new AppleII::Disk object. $filename is the name of the image file. The optional $mode is a string specifying how to open the image. It can consist of the following characters (case sensitive):

r Allow reads (this is actually ignored; you can always read)
w Allow writes
d Disk image is in DOS 3.3 order
p Disk image is in ProDOS order

If you dont specify d or p, then the format is guessed from the filename. .PO and .HDV files are ProDOS order, and anything else is assumed to be DOS 3.3 order.

If you specify w to allow writes, then the image file is created if it doesnt already exist.

$size = $disk->blocks([$newsize])

Gets or sets the size of the disk in blocks. $newsize is the new size of the disk in blocks. If $newsize is omitted, then the size is not changed. Returns the size of the disk image in blocks.

This refers to the logical size of the disk image. Blocks outside the physical size of the disk image read as all zeros. Writing to such a block will expand the image file.

When you create a new image file, you must use blocks to set its size before writing to it.

$contents = $disk->read_block($block)

Reads one block from the disk image. $block is the block number to read.
$contents = $disk->read_blocks(@blocks)

Reads a sequence of blocks from the disk image. @blocks is a reference to an array of block numbers. As a special case, block 0 cannot be read by this method. Instead, it returns a block full of 0 bytes. This is how sparse files are implemented. If you want to read the actual contents of block 0, you must call $disk->read_block(0) directly.

$contents = $disk->read_sector($track, $sector)

Reads one sector from the disk image. $track is the track number, and $sector is the DOS 3.3 logical sector number. This is currently implemented only for DOS 3.3 order images.

$disk->fully_allocate()

Expands the the physical size of the disk image file to match the logical size of the disk image. It will be expanded as a sparse file if the filesystem containing the image file supports sparse files.

$disk->write_block($block, $contents, [$pad])

Writes one block to the disk image. $block is the block number to write. $contents is the data to write. The optional $pad is a character to pad the block with (out to 512 bytes). If $pad is omitted or null, then $contents must be exactly 512 bytes.

$disk->write_blocks(@blocks, $contents, [$pad])

Writes a sequence of blocks to the disk image. @blocks is a reference to an array of block numbers to write. $contents is the data to write. It is broken up into 512 byte chunks and written to the blocks. The optional $pad is a character to pad the data with (out to a multiple of 512 bytes). If $pad is omitted or null, then $contents must be exactly 512 bytes times the number of blocks.

As a special case, block 0 cannot be written by this method. Instead, that block of $contents is just skipped. This is how sparse files are implemented. If you want to write the contents of block 0, you must call $disk->write_block directly.

$disk->write_sector($track, $sector, $contents, [$pad])

Writes one sector to the disk image. $track is the track number, and $sector is the DOS 3.3 logical sector number. $contents is the data to write. The optional $pad is a character to pad the sector with (out to 256 bytes). If $pad is omitted or null, then $contents must be exactly 256 bytes. This is currently implemented only for DOS 3.3 order images.

$padded = AppleII::Disk::pad_block($data, [$pad, [$length]])

Pads $data out to $length bytes with $pad. Returns the padded string; the original is not altered. Dies if $data is longer than $length. The default $pad is " ", and the default $length is 512 bytes.

If $pad is the null string (not undef), just checks to make sure that $data is exactly $length bytes and returns the original string. Dies if $data is not exactly $length bytes.

pad_block is a subroutine, not a method, and is not exported. You probably dont need to call it directly anyway, because the write_XXX methods will call it for you.

<<less
Download (0.037MB)
Added: 2007-05-28 License: Perl Artistic License Price:
881 downloads
SOPE Application Server 4.5.9

SOPE Application Server 4.5.9


The SOPE package is an extensive set of frameworks. more>>
SOPE Application Server is an extensive set of frameworks (16 frameworks, ~1500 classes) which form a complete Web application server environment.
Besides the Apple WebObjects compatible appserver extended with Zope concepts, it contains a large set of reusable classes: XML processing (SAX2, DOM, XML-RPC), MIME/IMAP4 processing, LDAP connectivity, RDBMS connectivity, and iCalendar parsing.
The individual frameworks of the package can be used standalone (for example in Cocoa applications) and do not require the application server itself.
For MacOSX developers, the package includes SOPE:X, which contains special Xcode and Cocoa support for SOPE.
Enhancements:
- This release fixes a set of minor bugs.
- It improves the vCard parser, the IMAP4 client library, the MySQL adaptor, and BSD packaging.
<<less
Download (4.0MB)
Added: 2006-08-28 License: LGPL (GNU Lesser General Public License) Price:
1152 downloads
AFELO For Linux 7.11

AFELO For Linux 7.11


AFELO can be used to select, rotate, resize, crop and upload images on linux. more>> Compressing images and sending them to your website has never been so easy before. AFELO allows to select images on your local computer, to resize and compress them and to send them onto your site with only a few clicks.
Using AFELO to upload images to a website is quite simple:
-If you own an OLEFA website then you can simply use your OLEFA username and password
-If your server supports FTP then you can simply use your FTP username and password
-Webmasters: install the AFELO Gateway Script on your server to allow people uploading images using AFELO
AFELO is free, its easy to use and its fully compatible with Microsoft Windows, Apple MacOS X (Tiger, Leopard) and Linux/UNIX operating systems. Images can be sent to your website or saved locally on your computer.This download version is for Apple MacOS X (Tiger, Leopard).
Interface language versions: english, franch, german and luxembourgish.
<<less
Download (1.86MB)
Added: 2009-04-10 License: Freeware Price: Free
197 downloads
AppleII::ProDOS 0.08

AppleII::ProDOS 0.08


AppleII::ProDOS is a Perl module created to access files on Apple II ProDOS disk images. more>>
AppleII::ProDOS is a Perl module created to access files on Apple II ProDOS disk images.

SYNOPSIS

use AppleII::ProDOS;
my $vol = AppleII::ProDOS->open(image.dsk); # Open an existing disk
print $vol->catalog; # List files in volume directory
my $file = $vol->get_file(Startup); # Read file from disk
$vol->path(Subdir); # Move into a subdirectory
$vol->put_file($file); # And write it back there

AppleII::ProDOS provides high-level access to ProDOS volumes stored in the disk image files used by most Apple II emulators. (For information about Apple II emulators, try the Apple II Emulator Page at http://www.ecnet.net/users/mumbv/pages/apple2.shtml.) It uses the AppleII::Disk module to handle low-level access to image files.
All the following classes have two constructors. Constructors named open are for creating an object to represent existing data in the image file. Constructors named new are for creating a new object to be added to an image file.

AppleII::ProDOS

AppleII::ProDOS is the primary interface to ProDOS volumes. It provides the following methods:

$vol = AppleII::ProDOS->new($volume, $size, $filename, [$mode])

Constructs a new image file and an AppleII::ProDOS object to access it. $volume is the volume name. $size is the size in blocks. $filename is the name of the image file. The optional $mode is a string specifying how to open the image (see the open method for details). You always receive read and write access.

$vol = AppleII::ProDOS->open($filename, [$mode])

Constructs an AppleII::ProDOS object to access an existing image file. $filename is the name of the image file. The optional $mode is a string specifying how to open the image. It can consist of the following characters (case sensitive):

r Allow reads (this is actually ignored; you can always read)
w Allow writes
d Disk image is in DOS 3.3 order
p Disk image is in ProDOS order

$vol = AppleII::ProDOS->open($disk)

Constructs an AppleII::ProDOS object to access an existing image file. $disk is the AppleII::Disk object representing the image file.

$bitmap = $vol->bitmap

Returns the volume bitmap as an AppleII::ProDOS::Bitmap object.

$dir = $vol->dir

Returns the current directory as an AppleII::ProDOS::Directory object.

$disk = $vol->disk

Returns the AppleII::ProDOS::Disk object which represents the image file.

$disk = $vol->disk_size

Returns the size of the volume in blocks. This is the logical size of the ProDOS volume, which is not necessarily the same as the actual size of the image file.

$name = $vol->name

Returns the volume name.

$path = $vol->path([$newpath])

Gets or sets the current path. $newpath is the new pathname, which may be either relative or absolute. `.. may be used to specify the parent directory, but this must occur at the beginning of the path (`../../dir is valid, but `../dir/.. is not). If $newpath is omitted, then the current path is not changed. Returns the current path as a string beginning and ending with /.

$catalog = $vol->catalog

$file = $vol->get_file($filename)

$entry = $vol->new_dir($name)

$vol->put_file($file)

These methods are passed to the current directory. See AppleII::ProDOS::Directory for details.

<<less
Download (0.037MB)
Added: 2007-05-28 License: Perl Artistic License Price:
883 downloads
Fruit Icons for Linux -

Fruit Icons for Linux -


Use these icons to make your computer look more delicious. more>> License:Free for personal non-commercial use, Includes a link back to author site
Comment:8 icons of fruits. Apple, Banana, Grape, Orange, Papaya, Pinapple, Strawberry, Watermelon
<<less
Download (234KB)
Added: 2009-04-20 License: Freeware Price:
188 downloads
iPod nano for Linux 1.0

iPod nano for Linux 1.0


Five icons inspired in the look of Apples iPod nano for use in desktops more>> Five icons inspired in the look of Apples iPod nano for use in desktops, websites and blogs.<<less
Download (128KB)
Added: 2009-04-28 License: Freeware Price:
185 downloads
Rotter 0.3

Rotter 0.3


Rotter is a Recording of Transmission / Audio Logger for JACK. more>>
Rotter is a Recording of Transmission / Audio Logger for JACK. The project was designed for use by radio stations, who are legally required to keep a recording of all their output. Rotter runs continuously, writing to a new file every hour. It is released under the GPL license.

Rotter can output files in two different strutures, either all files in a single directory or create a directory structure:

flat: /root_directory/YYYY-MM-DD-HH.suffix
hierarchy: /root_directory/YYYY/MM/DD/HH/archive.suffix

The advantage of using a folder hierarchy is that you can store related files in the hours directory.

Usage

rotter [options] < directory >
-a Automatically connect JACK ports
-f < format > Format of recording (see list below)
-b < bitrate > Bitrate of recording (bitstream formats only)
-c < channels > Number of channels
-n < name > Name for this JACK client
-d < hours > Delete files in directory older than this
-R < secs > Length of the ring buffer (in seconds)
-H Create folder hierarchy instead of flat files
-j Dont automatically start jackd
-v Enable verbose mode
-q Enable quiet mode

Supported audio output formats:

mp3 MPEG Audio Layer 3 [Default]
mp2 MPEG Audio Layer 2
aiff AIFF (Apple/SGI 16 bit PCM)
aiff32 AIFF (Apple/SGI 32 bit float)
au AU (Sun/Next 16 bit PCM)
au32 AU (Sun/Next 32 bit float)
caf CAF (Apple 16 bit PCM)
caf32 CAF (Apple 32 bit float)
flac FLAC 16 bit
wav WAV (Microsoft 16 bit PCM)
wav32 WAV (Microsoft 32 bit float)

Example:

rotter -a -f mp3 -d 1000 -b 160 -v /var/achives
[DEBUG] Wed Jun 21 22:54:19 2006 Root directory: /var/archives
[INFO] Wed Jun 21 22:54:19 2006 JACK client registered as rotter.
[DEBUG] Wed Jun 21 22:54:19 2006 Size of the ring buffers is 2.00 seconds (352800 bytes).
[INFO] Wed Jun 21 22:54:19 2006 Encoding using liblame version 3.96.1.
[DEBUG] Wed Jun 21 22:54:19 2006 Input: 44100 Hz, 2 channels
[DEBUG] Wed Jun 21 22:54:19 2006 Output: MPEG-1 Layer 3, 160 kbps, Joint Stereo
[INFO] Wed Jun 21 22:54:19 2006 Connecting alsa_pcm:capture_1 to rotter:left
[INFO] Wed Jun 21 22:54:19 2006 Connecting alsa_pcm:capture_2 to rotter:right
[INFO] Wed Jun 21 22:54:19 2006 Starting new archive file: /var/archives/2006/06/21/22/archive.mp3
[DEBUG] Wed Jun 21 22:54:19 2006 Opening MPEG Audio output file: /var/archives/2006/06/21/22/archive.mp3
[INFO] Wed Jun 21 23:00:00 2006 Starting new archive file: /var/archives/2006/06/21/23/archive.mp3
[DEBUG] Wed Jun 21 23:00:00 2006 Closing MPEG Audio output file.
[DEBUG] Wed Jun 21 23:00:00 2006 Opening MPEG Audio output file: /var/archives/2006/06/21/23/archive.mp3

Start logging audio to hourly files in /var/archives. Rotter will automatically connect itself to the first two JACK output ports it finds and encode to MPEG Layer 3 audio at 128kbps. Each hour it will delete files older than 1000 hours (42 days). Verbose mode means it will display more informational messages.

<<less
Download (0.12MB)
Added: 2007-06-01 License: GPL (GNU General Public License) Price:
876 downloads
Apples Icons for Linux -

Apples Icons for Linux -


9 freeware icons of Apples products. more>> This is one of the Dirceu Veiga's products. This contains 9 freeware icons of Apples products.
Its content includes variations of Cinema Display, eMac and iMac
<<less
Download (195KB)
Added: 2009-04-11 License: Freeware Price: Free
198 downloads
Finger 1.37

Finger 1.37


Finger is a utility program designed to allow users of Unix hosts on the Internet network to get information about each other. more>>
Finger is a utility program designed to allow users of Unix hosts on the Internet network to get information about each other.

Finger is a direct replacement for the Berkeley 4.3 finger code, although it produces different looking output and is designed to run on a wide variety of systems.

The basic argument to Finger is a user@host pair. The user portion is the name of the user about whom you would like information. The host is a machine that the user has an account on. When invoked in this manner, GNU Finger displays the list of hosts that this user is currently logged in on, or, if the user is not logged in, the last time and location that he or she was. host may be expressed as any valid Internet address (i.e. dot-notation, host.domain, etc).

If host is non-existent, the local host is assumed. If user is blank or unspecified, it is assumed that you want information about all users.

The content and format of the output of GNU finger depends on what is being fingered:

User Displays login information about user. If `--info or `--l is also specified, finger will display the full name, home directory, shell, mail forwarding, and `.plan and/or `.project file. This is what the output will look like:

bash$ finger --info bson@gnu.ai.mit.edu
[apple-gunkies.gnu.ai.mit.edu]

Jan Brittenson (bson)
Home: /home/fsf/bson
Shell: /usr/local/bin/bash
Mail forwarded to bson@ai.mit.edu.
No mail.

User Real Name What Idle TTY Host Console Location
bson Jan Brittenson fgrep *p0 apple-gu (nutrimat.gnu.ai.)
bson Jan Brittenson 1:57 *sb nutrimat
<<less
Download (0.23MB)
Added: 2006-06-08 License: GPL (GNU General Public License) Price:
1240 downloads
Fruits Icons for Linux 1.0

Fruits Icons for Linux 1.0


Apple, Banana, Grape, Orange, Papaya, Pinapple, Strawberry or Watermelon Icons more>> Description:
8 icons of fruits.
Content:
Apple, Banana, Grape, Orange, Papaya, Pinapple, Strawberry, Watermelon
<<less
Download (234KB)
Added: 2009-04-28 License: Freeware Price: Free
180 downloads
tzoperl 2.15

tzoperl 2.15


tzoperl is a Perl Client-Daemon for TZO DDNS Services. more>>
tzoperl is a Perl Client-Daemon for TZO DDNS Services. The service works with dial-up, DSL, Cable Modems, ISDN, and most types of connections that get you connected to the Internet.
The TZO Perl v2 is the preferred TZO client as it requires no compilation of code.. just run the text-based wizard installer to configure. You may install TZO Perl v2 as a system daemon/service for automatically start during system boot-up.
This client is tested and has full installer support for Redhat Linux, Apple Mac OS X, Sun Solaris and FreeBSD. Other versions of Linux and UNIX are also supported (including versions of Cobolt that TZO does not have a special package for).
This code is released under the GPL license and may be modified for additional software platforms. Experimental (limited) support exists for other UNIX, Microsoft Windows (ActiveState Perl), MacPerl and Novell.
TZO offers Domain Registration Services and Dynamic Domain Registration Service (Official Registrar), SMTP Mail Store and Forward, and Web Hosting options for users with
Static or Dynamic IP Addresses(you can host multiple virtual domains with your one IP Address). TZO also allows for DNS Hosting/Parking Services for Cable and DSL users as well as standard ethernet and PPP. Host Private Domains on your Linux Server with a Dynamic IP Address. Private Domains are less that $60 per year if your domain is already registered!
Enhancements:
- Fixed file collision bug (TZO v. tzo) occuring on Apple OSX and Microsoft Windows.
- WIN32: Moved some file-path targets into a hash array to make future Windows/other OS support easier. Lots more needs to be done.
- Some cleanup of the code flagged future code updates with comments. Created TODO file.
- OSX: Created README.osx in osx folder
- OSX: Fixed StartupItems TZO file to work more in line with other OSX startup scripts. The script does not handle Shutdown and restart commands properly (yet), but the actual tzo daemon can be shut down using tzo -q.
- OSX: Moved INIT script from /System/Library/StartupItems to /Library/StartupItems
-
<<less
Download (0.032MB)
Added: 2006-07-04 License: GPL (GNU General Public License) Price:
1208 downloads
Freevo 1.7.3

Freevo 1.7.3


Freevo is a standalone Linux digital VCR/PVR. more>>
Freevo project is a Linux application that turns a PC with a TV capture card and/or TV-out into a standalone multimedia jukebox/VCR/PVR/HTPC/DVR/set-top box.
It uses MPlayer and other apps to play and record audio and video. It is optimized for use with a TV and remote, but can be used with a monitor and keyboard. It is very easy to install since the binary release package has no external dependencies.
Main features:
- SDL
- Pygame
- Python Imaging Library
- Mplayer
- Python
- Python Twisted
- Xine
Enhancements:
- New audio scrobbler plug-in
- New Chinese translation
- New Greek translation
- Updates the Apple trailers plug-in
- Updates to recordings manager
- Updates to button bar plug-ins
- Updated French translation
- Updated Spanish translation
- Changes to MPlayer field dominance and interlacing
- Many bug fixes
<<less
Download (16.1MB)
Added: 2007-08-02 License: GPL (GNU General Public License) Price:
817 downloads
objc-bootstrap 3.2.8

objc-bootstrap 3.2.8


objc-bootstrap software is a bootstrap for objc package. more>>
objc-bootstrap software is a bootstrap for objc package.

Objective-C Compiler Commands

Whats the file suffix for Objective-C source ?

Its .m for implementation files, and .h for header files. Objective-C compilers usually also accept .c as a suffix, but compile those files in plain C mode.

How do I compile .m files with the Stepstone compiler ?

objcc -c class.m
objcc -o class class.o

See http://www.stepstn.com for more information.

How do I compile .m files with the Apple compiler ?

cc -c class.m
cc -o class class.o

See http://www.apple.com for more information.

How do I compile .m files with the GNU C compiler ?

gcc -c class.m
gcc -o class class.o -lobjc -lpthread

See http://www.gnu.org for more information.

How do I compile .m files with the POC ?

objc -c class.m
objc -o class class.o

See http://metalab.unc.edu/pub/Linux/devel/lang/objc/ for more information.
<<less
Download (0.34MB)
Added: 2007-02-15 License: GPL (GNU General Public License) Price:
586 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5