Artwork/ArtworkDeprecated

From FedoraProject

Jump to: navigation, search


Fedora Artwork
Making things look pretty is the name of the game... Icons, desktop backgrounds and themes are all parts of the Fedora Artwork Project.
Image:Artwork ArtworkDeprecated WikiGraphics/Fedora_Design.png
Table of Contents


We need motivated artists! Join us!!! Help out with FC7's theme! More Details...

Contents

Fedora Artwork Guidelines

There are basic rules and guidelines that all artwork in Fedora must follow. We have outlined many of them below. Other rules may also apply.

Basic Rules


Submitting Your Ideas

Icons

Bluecurve Icon Theme

The Bluecurve Icon project is located at [1] . Please refer to that site for any of your Bluecurve needs.

Echo Icon Theme

Application-Specific Icon Development

Release-Specific Artwork

Archive

Artwork created for old releases goes here.

General Fedora Brand and Marketing Materials

Contributing

While filing bug reports and providing feedback is extremely valuable, we also need help to create the original artwork. If you would like to contribute to the project, please complete the following steps:

1. Join the mailing list . 1. Sign up in the Fedora Account System . 1. Complete the CLA through the Account System . 1. Join the 'art' group in the Account System . 1. Ask another contributor to ask you to the EditGroup. You can also visit #fedora-art or #fedora-websites on freenode to ask for help. 1. Add yourself to the Contributors list .

After you have completed these steps, you can begin contributing to the project. Most submissions will be added to the wiki or through CVS. Ask on the mailing list or IRC if you have questions or would like suggestions.

Communicate

Mailing List

The place to discuss issues related to the Fedora Artwork project is the fedora-art-list@redhat.com mailing list.

IRC

You can chat live with other members of the Artwork team in the #fedora-art channel on freenode .


Bug Reporting, Testing, and Quality Assurance

Before you file a bug, please read through the list of current and previous bugs for redhat-artwork to determine if your bug has already been filed. If your bug does not exists, enter a bug report using the Bugzilla bug entry page . If your bug exists and has not been fixed, add additional information to the existing bug. If your bug exists and has been fixed, upgrade to the version in the bug report to determine if the bug was properly fixed. If it was not, reopen the bug.

Some other interesting Bugzilla queries:


Download

Rawhide Packages

You can update your Fedora Core system with the latest 'redhat-artwork' and 'fedora-logo' packages using yum:

su -c "yum --enablerepo=development update redhat-artwork fedora-logos"

The packages can also be downloaded in one of two forms:

This ready-to-install package format will give your Fedora Core system the latest artwork.

This source package format can be built into an RPM or extracted for direct viewing.

For faster access, you can look for this package on the Fedora download mirrors .

Anonymous CVS

Execute the following in a terminal:

export CVSROOT=:pserver:anonymous@cvs.fedora.redhat.com:/cvs/dist
cvs login
cvs co redhat-artwork
cvs co fedora-logos

If, after the 'cvs login' command, you are asked for a password, just press 'Enter'.

To get the actual sources and graphics, enter the appropriate path for each package and run 'make sources'. This will download several tarballs that can be extracted.

To download and extract all of the tarballs into your home directory under 'fedora-artwork':

mkdir -p ~/fedora-artwork
cd redhat-artwork/devel
make sources
for filename in <code>grep -o '  .*\.tar\.gz' sources</code>; do
tar -zxC ~/fedora-artwork -f "$filename"
done
for filename in <code>grep -o '  .*\.tar\.bz2' sources</code>; do
tar -jxC ~/fedora-artwork -f "$filename"
done
cd ../../fedora-logos/devel
make sources
for filename in <code>grep -o '  .*\.tar\.gz' sources</code>; do
tar -zxC ~/fedora-artwork -f "$filename"
done
for filename in <code>grep -o '  .*\.tar\.bz2' sources</code>; do
tar -jxC ~/fedora-artwork -f "$filename"
done
cd ../..