embryo: handle filename given to #line command
[framework/uifw/embryo.git] / README.in
index c73ab7e..e062e42 100644 (file)
--- a/README.in
+++ b/README.in
@@ -1,10 +1,19 @@
-Embryo @VERSION@
+Embryo @VERSION@ BETA
 
+******************************************************************************
+
+ FOR ANY ISSUES PLEASE EMAIL:
+ enlightenment-devel@lists.sourceforge.net
+  
+******************************************************************************
+  
 Requirements:
 -------------
 
 Must:
-  libc libm
+  eina
+  libc
+  libm
 
 WARNING: gcc compatibility!!!
 There seems to be some bug (or disagreement) between embryo and gcc 3.2.x
@@ -23,7 +32,7 @@ interpreted programs compiled into an abstract machine bytecode that it
 understands.  This abstract (or virtual) machine is similar to a real machine
 with a CPU, but it is emulated in software.  The architecture is simple and is
 the same as the abstract machine (AMX) in the 
-<a href=http://www.compuphase.com/pawn.htm>PAWN</a> language (formerly called
+<a href=http://www.compuphase.com/pawn>PAWN</a> language (formerly called
 SMALL) as it is based on exactly the same code. Embryo has modified the code
 for the AMX extensively and has made it smaller and more portable.  It is VERY
 small.  The total size of the virtual machine code AND header files is less
@@ -54,7 +63,7 @@ issue.
 
 For more documentation please see the Language guide here:
 
-<a href=http://www.compuphase.com/pawn/pawn-lang.pdf>Pawn Language Booklet</a>
+<a href=http://www.compuphase.com/pawn>Pawn Language Booklet</a>
   
 This documents the PAWN language and is 100% relevant for Embryo and the
 syntax of files it can compile (.sma files).
@@ -78,27 +87,5 @@ COMPILING AND INSTALLING:
 
   ./configure
   make
-(as root unless youre installing in your users directories):
+(as root unless you are installing in your users directories):
   make install
-      
-------------------------------------------------------------------------------
-BUILDING PACKAGES:
-
-RPM: To build rpm packages:
-  
-  sudo rpm -ta @PACKAGE@-@VERSION@.tar.gz
-
-You will find rpm packages in your system /usr/src/redhat/* dirs (note you may
-not need to use sudo or root if you have your own ~/.rpmrc. see rpm documents
-for more details)
-
-DEB: To build deb packages:
-
-  tar zvf @PACKAGE@-@VERSION@.tar.gz
-  cd @PACKAGE@-@VERSION@
-  dpkg-buildpackage -us -uc -rfakeroot
-  cd ..
-  rm -rf @PACKAGE@-@VERSION@
-
-You will find all the debian source, binary etc. packages put in the directory
-where you first untarred the source tarball.