Tag Dolphin 3.0

git-svn-id: https://dolphin-emu.googlecode.com/svn/tags/3.0@7615 8ced0084-cf51-0410-be5f-012b33b47a6e

3.0: Removed SVNRevGen stuff; changed revision string to 3.0; Removed installer since it was vastly outdated; Bumped CMake major version to 3

git-svn-id: https://dolphin-emu.googlecode.com/svn/tags/3.0@7616 8ced0084-cf51-0410-be5f-012b33b47a6e

3.0: Add the languages which were chosen to be release-worthy.
Uhm, unless I forgot something important, I guess we can declare 3.0 as officially released now and stuff. Cheers ;)

git-svn-id: https://dolphin-emu.googlecode.com/svn/tags/3.0@7617 8ced0084-cf51-0410-be5f-012b33b47a6e

3.0: Fix SCons build

git-svn-id: https://dolphin-emu.googlecode.com/svn/tags/3.0@7627 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
NeoBrainX
2011-06-23 23:11:12 +00:00
parent 2d1fef2989
commit 35d1599724
17 changed files with 9 additions and 787 deletions

View File

@ -92,8 +92,6 @@ if not env.has_key('install') or env['install'] == 'local':
if env['flavor'] == 'debug' or env['flavor'] == 'prof':
env['prefix'] += '-' + env['flavor']
env['svnrev'] = os.popen('svnversion -n .').read().split(':')[0]
# OS X specifics
if sys.platform == 'darwin':
#ccld = ['-mmacosx-version-min=10.5.4']
@ -123,7 +121,7 @@ if sys.platform == 'darwin':
if env['bundle']:
app = env['prefix'] + '/Dolphin.app'
dmg = env['prefix'] + '/Dolphin-r' + env['svnrev'] + '.dmg'
dmg = env['prefix'] + '/Dolphin-3.0' + '.dmg'
env.Command(dmg, app, 'rm -f ' + dmg +
' && hdiutil create -srcfolder ' + app + ' -format UDBZ ' + dmg +
' && hdiutil internet-enable -yes ' + dmg)
@ -237,7 +235,7 @@ else:
else:
print "Can't build prof without oprofile, disabling"
tarname = 'dolphin-' + env['svnrev']
tarname = 'dolphin-3.0'
env['TARFLAGS'] = '-cj'
env['TARSUFFIX'] = '.tar.bz2'