From 30343a531999b5e50673ee1731f1c54cbc008dfd Mon Sep 17 00:00:00 2001 From: jaybinks Date: Wed, 5 Sep 2007 12:02:06 +0000 Subject: added 3rd party dependencies ( except Jedi-SDL ) modified DPR to statically include all files needed (using relative paths) this means 3rd party components should not need installation in the IDE, or adding to search paths. git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@368 b956fd51-792f-4845-bead-9b4dfca2ff2c --- Game/Code/lib/requirements.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Game/Code/lib/requirements.txt (limited to 'Game/Code/lib/requirements.txt') diff --git a/Game/Code/lib/requirements.txt b/Game/Code/lib/requirements.txt new file mode 100644 index 00000000..bcf2fb82 --- /dev/null +++ b/Game/Code/lib/requirements.txt @@ -0,0 +1,17 @@ +Jedi-sdl + http://sourceforge.net/projects/jedi-sdl + + + + +BASS.pas + http://www.un4seen.com/download.php?bass23 + +zlportio + http://www.specosoft.com/en/download.html + +ffmpeg + http://www.iversenit.dk/dev/ffmpeg-headers/ + +SQLLite Wrapper + http://www.itwriting.com/sqlitesimple.php \ No newline at end of file -- cgit v1.2.3 From 611f516b33a0c109893354593e28afe10f48e7db Mon Sep 17 00:00:00 2001 From: jaybinks Date: Tue, 18 Sep 2007 12:07:57 +0000 Subject: major tidy up of Umusic ... removes mplayer unit and dependency. tidy up of other units in move to compile in lazarus. git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@392 b956fd51-792f-4845-bead-9b4dfca2ff2c --- Game/Code/lib/requirements.txt | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Game/Code/lib/requirements.txt') diff --git a/Game/Code/lib/requirements.txt b/Game/Code/lib/requirements.txt index bcf2fb82..8eafe2d2 100644 --- a/Game/Code/lib/requirements.txt +++ b/Game/Code/lib/requirements.txt @@ -1,8 +1,15 @@ +Not Included in SVN ( to many potential updates ) +--------------------------------------------------------------------------- + Jedi-sdl http://sourceforge.net/projects/jedi-sdl +Included in SVN .. +--------------------------------------------------------------------------- +pngImage + http://pngdelphi.sourceforge.net/ BASS.pas http://www.un4seen.com/download.php?bass23 -- cgit v1.2.3 From 4e9a191776560d0bc669800461948e5b9b206679 Mon Sep 17 00:00:00 2001 From: jaybinks Date: Wed, 19 Sep 2007 23:34:34 +0000 Subject: tested ffmpeg in lazarus - linux.. working :) just need to make sure development packages are installed for ffmpeg. such as : libavcodec-dev & libavformat-dev git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@406 b956fd51-792f-4845-bead-9b4dfca2ff2c --- Game/Code/lib/requirements.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Game/Code/lib/requirements.txt') diff --git a/Game/Code/lib/requirements.txt b/Game/Code/lib/requirements.txt index 8eafe2d2..30f84f39 100644 --- a/Game/Code/lib/requirements.txt +++ b/Game/Code/lib/requirements.txt @@ -2,7 +2,9 @@ Not Included in SVN ( to many potential updates ) --------------------------------------------------------------------------- Jedi-sdl - http://sourceforge.net/projects/jedi-sdl + http://sourceforge.net/projects/jedi-sdl + Make sure to download VERSION 1, beta... + not version 0.5 Included in SVN .. @@ -21,4 +23,4 @@ ffmpeg http://www.iversenit.dk/dev/ffmpeg-headers/ SQLLite Wrapper - http://www.itwriting.com/sqlitesimple.php \ No newline at end of file + http://www.itwriting.com/sqlitesimple.php -- cgit v1.2.3 From 77ac0ce6d082dfc0bfd2c9a7efaa304aadfe3683 Mon Sep 17 00:00:00 2001 From: jaybinks Date: Wed, 19 Sep 2007 23:40:11 +0000 Subject: tested sqlite3 in lazarus - linux.. working :) updated requirements text with instructions on how to get dev libraries for linux build. git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@407 b956fd51-792f-4845-bead-9b4dfca2ff2c --- Game/Code/lib/requirements.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'Game/Code/lib/requirements.txt') diff --git a/Game/Code/lib/requirements.txt b/Game/Code/lib/requirements.txt index 30f84f39..49aad6ba 100644 --- a/Game/Code/lib/requirements.txt +++ b/Game/Code/lib/requirements.txt @@ -24,3 +24,16 @@ ffmpeg SQLLite Wrapper http://www.itwriting.com/sqlitesimple.php + +====================================== +For LINUX build +====================================== +On top of the above pas files, you will need development libraries for them. + +here are the instructions needed to compile on ubunty ( 7.04 ) + +ffmpeg : + sudo apt-get install libavcodec-dev libavformat-dev + +sqlite : + sudo apt-get install libsqlite3-dev -- cgit v1.2.3 From b29759fbfdd8a013e3d0a85b578934ebec028c41 Mon Sep 17 00:00:00 2001 From: jaybinks Date: Tue, 2 Oct 2007 04:39:22 +0000 Subject: Fixed linux compilation. Linux is now running in the main loop fine. * no audio playback or input yet... * Timing hack inplace.. that must be replace * bunch of textures not working.. however the play screen is looking similar to windows builds. I hope this dosnt break windows builds to much. git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@460 b956fd51-792f-4845-bead-9b4dfca2ff2c --- Game/Code/lib/requirements.txt | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Game/Code/lib/requirements.txt') diff --git a/Game/Code/lib/requirements.txt b/Game/Code/lib/requirements.txt index 49aad6ba..e4b14060 100644 --- a/Game/Code/lib/requirements.txt +++ b/Game/Code/lib/requirements.txt @@ -37,3 +37,7 @@ ffmpeg : sqlite : sudo apt-get install libsqlite3-dev + +sdl development libraries : + sudo apt-get install libsdl-ttf2.0-dev + THERE WILL be more of them... oops I forgot to list them :P -- cgit v1.2.3 From 97a179d3ac5ce99d5e43406f2f66285576eefaf9 Mon Sep 17 00:00:00 2001 From: jaybinks Date: Thu, 11 Oct 2007 10:33:32 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@502 b956fd51-792f-4845-bead-9b4dfca2ff2c --- Game/Code/lib/requirements.txt | 45 +++++++++++++++++++++++------------------- 1 file changed, 25 insertions(+), 20 deletions(-) (limited to 'Game/Code/lib/requirements.txt') diff --git a/Game/Code/lib/requirements.txt b/Game/Code/lib/requirements.txt index e4b14060..ebaffea7 100644 --- a/Game/Code/lib/requirements.txt +++ b/Game/Code/lib/requirements.txt @@ -2,8 +2,8 @@ Not Included in SVN ( to many potential updates ) --------------------------------------------------------------------------- Jedi-sdl - http://sourceforge.net/projects/jedi-sdl - Make sure to download VERSION 1, beta... + http://sourceforge.net/projects/jedi-sdl + Make sure to download VERSION 1, beta... not version 0.5 @@ -23,21 +23,26 @@ ffmpeg http://www.iversenit.dk/dev/ffmpeg-headers/ SQLLite Wrapper - http://www.itwriting.com/sqlitesimple.php - -====================================== -For LINUX build -====================================== -On top of the above pas files, you will need development libraries for them. - -here are the instructions needed to compile on ubunty ( 7.04 ) - -ffmpeg : - sudo apt-get install libavcodec-dev libavformat-dev - -sqlite : - sudo apt-get install libsqlite3-dev - -sdl development libraries : - sudo apt-get install libsdl-ttf2.0-dev - THERE WILL be more of them... oops I forgot to list them :P + http://www.itwriting.com/sqlitesimple.php + +====================================== +For LINUX build +====================================== +On top of the above pas files, you will need development libraries for them. + +here are the instructions needed to compile on ubunty ( 7.04 ) + +ffmpeg : + sudo apt-get install libavcodec-dev libavformat-dev + +sqlite : + sudo apt-get install libsqlite3-dev + +sdl development libraries : + sudo apt-get install libsdl-ttf2.0-dev libsdl-image1.2-dev + THERE WILL be more of them... oops I forgot to list them :P + +For the Lazy... who use Debian or Ubuntu.... here is a single line + sudo apt-get install libavcodec-dev libavformat-dev libsqlite3-dev libsdl-ttf2.0-dev libsdl-image1.2-dev + + \ No newline at end of file -- cgit v1.2.3 From 73a9bf99b8993aa69f3ed77b36b0236fb1cde2ed Mon Sep 17 00:00:00 2001 From: jaybinks Date: Thu, 6 Dec 2007 23:53:46 +0000 Subject: trying to get projectM to run in linux git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@692 b956fd51-792f-4845-bead-9b4dfca2ff2c --- Game/Code/lib/requirements.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Game/Code/lib/requirements.txt') diff --git a/Game/Code/lib/requirements.txt b/Game/Code/lib/requirements.txt index ebaffea7..d1775390 100644 --- a/Game/Code/lib/requirements.txt +++ b/Game/Code/lib/requirements.txt @@ -34,6 +34,9 @@ here are the instructions needed to compile on ubunty ( 7.04 ) ffmpeg : sudo apt-get install libavcodec-dev libavformat-dev + +portaudio : + sudo apt-get install portaudio19-dev sqlite : sudo apt-get install libsqlite3-dev @@ -43,6 +46,6 @@ sdl development libraries : THERE WILL be more of them... oops I forgot to list them :P For the Lazy... who use Debian or Ubuntu.... here is a single line - sudo apt-get install libavcodec-dev libavformat-dev libsqlite3-dev libsdl-ttf2.0-dev libsdl-image1.2-dev + sudo apt-get install libavcodec-dev libavformat-dev libsqlite3-dev libsdl-ttf2.0-dev libsdl-image1.2-dev portaudio19-dev - \ No newline at end of file + -- cgit v1.2.3 From b2e0b65ac9d338fd76a564239feaec2cb4b85b36 Mon Sep 17 00:00:00 2001 From: jaybinks Date: Fri, 8 Feb 2008 00:39:02 +0000 Subject: added yum install line Thanks Kdub git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@842 b956fd51-792f-4845-bead-9b4dfca2ff2c --- Game/Code/lib/requirements.txt | 29 +++++++---------------------- 1 file changed, 7 insertions(+), 22 deletions(-) (limited to 'Game/Code/lib/requirements.txt') diff --git a/Game/Code/lib/requirements.txt b/Game/Code/lib/requirements.txt index d1775390..81759cfc 100644 --- a/Game/Code/lib/requirements.txt +++ b/Game/Code/lib/requirements.txt @@ -1,14 +1,8 @@ -Not Included in SVN ( to many potential updates ) +Included in SVN .. --------------------------------------------------------------------------- - + Jedi-sdl http://sourceforge.net/projects/jedi-sdl - Make sure to download VERSION 1, beta... - not version 0.5 - - -Included in SVN .. ---------------------------------------------------------------------------- pngImage http://pngdelphi.sourceforge.net/ @@ -32,20 +26,11 @@ On top of the above pas files, you will need development libraries for them. here are the instructions needed to compile on ubunty ( 7.04 ) -ffmpeg : - sudo apt-get install libavcodec-dev libavformat-dev + sudo apt-get install libavcodec-dev libavformat-dev libsqlite3-dev libsdl-ttf2.0-dev libsdl-image1.2-dev portaudio19-dev -portaudio : - sudo apt-get install portaudio19-dev - -sqlite : - sudo apt-get install libsqlite3-dev - -sdl development libraries : - sudo apt-get install libsdl-ttf2.0-dev libsdl-image1.2-dev - THERE WILL be more of them... oops I forgot to list them :P - -For the Lazy... who use Debian or Ubuntu.... here is a single line - sudo apt-get install libavcodec-dev libavformat-dev libsqlite3-dev libsdl-ttf2.0-dev libsdl-image1.2-dev portaudio19-dev + +for Fedora 8 ( contributed by kdub ) + + yum install ffmpeg-devel portaudio-devel SDL_ttf-devel SDL_image-devel sqlite-devel -- cgit v1.2.3 From c63d80995c2c618b9cd293d9eecd3eb9e0e9b871 Mon Sep 17 00:00:00 2001 From: jaybinks Date: Tue, 12 Feb 2008 13:43:34 +0000 Subject: builds nice... and builds deb also that runs / works .. mostly :P git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@846 b956fd51-792f-4845-bead-9b4dfca2ff2c --- Game/Code/lib/requirements.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Game/Code/lib/requirements.txt') diff --git a/Game/Code/lib/requirements.txt b/Game/Code/lib/requirements.txt index 81759cfc..a8cd99eb 100644 --- a/Game/Code/lib/requirements.txt +++ b/Game/Code/lib/requirements.txt @@ -26,7 +26,11 @@ On top of the above pas files, you will need development libraries for them. here are the instructions needed to compile on ubunty ( 7.04 ) - sudo apt-get install libavcodec-dev libavformat-dev libsqlite3-dev libsdl-ttf2.0-dev libsdl-image1.2-dev portaudio19-dev + sudo apt-get install libavcodec-dev libavformat-dev libsqlite3-dev libsdl-ttf2.0-dev libsdl-image1.2-dev portaudio19-dev + + in order to build the configure file ( with autogen.sh ) + + sudo apt-get install automake autoconf for Fedora 8 ( contributed by kdub ) -- cgit v1.2.3