Prepare gfceux for release
This commit is contained in:
parent
1d063028cf
commit
12450a8819
2
INSTALL
2
INSTALL
|
@ -1,4 +1,4 @@
|
|||
You can install gfceu with setup.py:
|
||||
You can install gfceux with setup.py:
|
||||
|
||||
$ sudo ./setup.py install --prefix=/usr/local
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
#!/bin/sh
|
||||
gtk-builder-convert gfceu.glade gfceu.xml
|
||||
gtk-builder-convert gfceux.glade gfceux.xml
|
||||
|
||||
|
|
19
gfceu.1
19
gfceu.1
|
@ -1,19 +0,0 @@
|
|||
.TH gfceu 1 "July 17 2006" "Lukas Sabota"
|
||||
.SH NAME
|
||||
GNOME FCE Ultra - A graphical front-end for FCE Ultra
|
||||
.SH SYNOPSIS
|
||||
.B gfceu
|
||||
.BR [options]
|
||||
.PP
|
||||
.SH DESCRIPTION
|
||||
GFCE Ultra is a graphical front-end for FCE Ultra, an advanced Nintendo Entertainment System emulator. The program allows easy control over various options including input, network, video, and sound. It uses the GTK+2 library and optionally GNOMEVFS.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
.B --version
|
||||
Displays the version number of the application
|
||||
.TP
|
||||
.B --help
|
||||
Displays a help message displaying options
|
||||
.SH AUTHOR
|
||||
.TP
|
||||
Written for Ubuntu/Debian by Lukas Sabota.
|
Binary file not shown.
Before Width: | Height: | Size: 9.3 KiB |
BIN
gfceu_old.png
BIN
gfceu_old.png
Binary file not shown.
Before Width: | Height: | Size: 1.7 KiB |
|
@ -1,9 +1,9 @@
|
|||
#!/usr/bin/python
|
||||
# gfceu - Graphical launcher for FCE Ultra.
|
||||
# gfceux - Graphical launcher for fceux.
|
||||
# Designed on Ubuntu, with platfrom independence in mind.
|
||||
version = "2.0.0"
|
||||
title = "gfceu"
|
||||
# Copyright (C) 2006 Lukas Sabota <punkrockguy318@comcast.net>
|
||||
title = "gfceux"
|
||||
# Copyright (C) 2008 Lukas Sabota <ltsmooth42 _at_ gmail.com>
|
||||
##
|
||||
"""
|
||||
This program is free software; you can redistribute it and/or
|
||||
|
@ -205,7 +205,7 @@ def find_binary(file):
|
|||
# # # # # # # # # # # # # # # # #
|
||||
# Globals
|
||||
options = None
|
||||
optionsfile = os.getenv('HOME') + '/.gfceu_options.dat'
|
||||
optionsfile = os.getenv('HOME') + '/.gfceux_options.dat'
|
||||
widgets = None
|
||||
|
||||
class GfceuApp:
|
||||
|
@ -268,11 +268,11 @@ class GfceuApp:
|
|||
global widgets
|
||||
""" Search for the glade XML file and load it """
|
||||
# Check first in the directory of this script.
|
||||
if os.path.isfile('gfceu.xml'):
|
||||
glade_file = 'gfceu.xml'
|
||||
if os.path.isfile('gfceux.xml'):
|
||||
glade_file = 'gfceux.xml'
|
||||
# Then check to see if its installed on a *nix system
|
||||
elif os.path.isfile(os.path.join(os.path.dirname(sys.argv[0]), '../share/gfceu/gfceu.xml')):
|
||||
glade_file = os.path.join(os.path.dirname(sys.argv[0]), '../share/gfceu/gfceu.xml')
|
||||
elif os.path.isfile(os.path.join(os.path.dirname(sys.argv[0]), '../share/gfceux/gfceux.xml')):
|
||||
glade_file = os.path.join(os.path.dirname(sys.argv[0]), '../share/gfceux/gfceux.xml')
|
||||
else:
|
||||
print 'ERROR.'
|
||||
print 'Could not find the glade.xml file.'
|
|
@ -1,10 +1,10 @@
|
|||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=GFCE Ultra NES Emulator
|
||||
Name=FCEUX NES Emulator
|
||||
Comment=Play Nintendo ROM files
|
||||
Exec=gfceu
|
||||
Exec=gfceux
|
||||
Terminal=false
|
||||
Type=Application
|
||||
StartupNotify=true
|
||||
Icon=gfceu
|
||||
Icon=gfceux
|
||||
Categories=GNOME;GTK;Game;
|
|
@ -246,7 +246,7 @@ Digital Manipulation:
|
|||
Artwork for old versions (< 0.2.7):
|
||||
Jimmy Angelakos
|
||||
<vyruss000@gmail.com></property>
|
||||
<property name="logo">gfceu_big.png</property>
|
||||
<property name="logo">gfceux_big.png</property>
|
||||
<child internal-child="vbox">
|
||||
<widget class="GtkVBox" id="dialog-vbox1">
|
||||
<property name="visible">True</property>
|
||||
|
@ -267,9 +267,9 @@ Artwork for old versions (< 0.2.7):
|
|||
</widget>
|
||||
<widget class="GtkWindow" id="main_window">
|
||||
<property name="visible">True</property>
|
||||
<property name="title">GFCE Ultra</property>
|
||||
<property name="title">GFCE UltraX</property>
|
||||
<property name="default_width">442</property>
|
||||
<property name="icon">gfceu.png</property>
|
||||
<property name="icon">gfceux.png</property>
|
||||
<signal name="delete_event" handler="end"/>
|
||||
<child>
|
||||
<widget class="GtkVBox" id="vbox4">
|
||||
|
@ -316,7 +316,7 @@ Artwork for old versions (< 0.2.7):
|
|||
<property name="label" translatable="yes">_Browse...</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="response_id">0</property>
|
||||
<signal name="clicked" handler="browse_button_clicked"/>
|
||||
<signal name="clicked" handler="rom_browse_button_clicked"/>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
|
@ -260,7 +260,7 @@ Digital Manipulation:
|
|||
Artwork for old versions (< 0.2.7):
|
||||
Jimmy Angelakos
|
||||
<vyruss000@gmail.com></property>
|
||||
<property name="logo">gfceu_big.png</property>
|
||||
<property name="logo">gfceux_big.png</property>
|
||||
<child internal-child="vbox">
|
||||
<object class="GtkVBox" id="dialog-vbox1">
|
||||
<property name="visible">True</property>
|
||||
|
@ -281,9 +281,9 @@ Artwork for old versions (< 0.2.7):
|
|||
</object>
|
||||
<object class="GtkWindow" id="main_window">
|
||||
<property name="visible">True</property>
|
||||
<property name="title">GFCE Ultra</property>
|
||||
<property name="title">GFCE UltraX</property>
|
||||
<property name="default_width">442</property>
|
||||
<property name="icon">gfceu.png</property>
|
||||
<property name="icon">gfceux.png</property>
|
||||
<signal handler="end" name="delete_event"/>
|
||||
<child>
|
||||
<object class="GtkVBox" id="vbox4">
|
||||
|
@ -329,7 +329,7 @@ Artwork for old versions (< 0.2.7):
|
|||
<property name="can_focus">True</property>
|
||||
<property name="label" translatable="yes">_Browse...</property>
|
||||
<property name="use_underline">True</property>
|
||||
<signal handler="browse_button_clicked" name="clicked"/>
|
||||
<signal handler="rom_browse_button_clicked" name="clicked"/>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
15
setup.py
15
setup.py
|
@ -1,15 +1,14 @@
|
|||
#!/usr/bin/env python
|
||||
from distutils.core import setup
|
||||
setup(name="gfceu",
|
||||
setup(name="gfceux",
|
||||
version="2.0.0",
|
||||
scripts = ['gfceu'],
|
||||
data_files=[('share/gfceu/',['gfceu.xml', 'gfceu_big.png', 'gfceu.png']),
|
||||
('share/pixmaps/', ['gfceu.png']),
|
||||
('share/man/man1/', ['gfceu.1']),
|
||||
('share/applications/', ['gfceu.desktop'])],
|
||||
data_files=[('share/gfceux/',['gfceux.xml', 'gfceux_big.png', 'gfceux.png']),
|
||||
('share/pixmaps/', ['gfceux.png']),
|
||||
('share/man/man1/', ['gfceux.1']),
|
||||
('share/applications/', ['gfceux.desktop'])],
|
||||
author = "Lukas Sabota",
|
||||
author_email = "punkrockguy318@comcast.net",
|
||||
url = "http://punkrockguy318.no-ip.org"
|
||||
|
||||
author_email = "ltsmooth42 _at_ gmail.com",
|
||||
url = "http://dietschnitzel.com/gfceu"
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue