Changeset 1490
- Timestamp:
- 09/12/04 04:47:11 (4 years ago)
- Location:
- trunk
- Files:
-
- 7 modified
-
INSTALL (modified) (1 diff)
-
misc/debian/control (modified) (1 diff)
-
misc/lgt_install.sh (modified) (1 diff)
-
misc/logtalk.spec (modified) (2 diffs)
-
scripts/debian/control (modified) (1 diff)
-
scripts/lgt_install.sh (modified) (1 diff)
-
scripts/logtalk.spec (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/INSTALL
r1460 r1490 51 51 If you use a csh shell, add the following line to your ~/.cshrc file: 52 52 53 setenv LOGTALKHOME /your/installation/directory/lgt22 0253 setenv LOGTALKHOME /your/installation/directory/lgt2210 54 54 setenv PATH $PATH:$LOGTALKHOME/xml:$LOGTALKHOME/misc 55 55 56 56 If you use a bash shell, add the following lines to your ~/.profile file: 57 57 58 LOGTALKHOME=/your/installation/directory/lgt22 0258 LOGTALKHOME=/your/installation/directory/lgt2210 59 59 export LOGTALKHOME 60 60 PATH=$PATH:$LOGTALKHOME/xml:$LOGTALKHOME/misc -
trunk/misc/debian/control
r1447 r1490 1 1 Package: logtalk 2 Version: 2.2 0.22 Version: 2.21.0 3 3 Section: languages 4 4 Priority: optional -
trunk/misc/lgt_install.sh
r1460 r1490 17 17 fi 18 18 19 rm -rf $prefix/lgt22 0119 rm -rf $prefix/lgt2210 20 20 rm -f $prefix/logtalk 21 21 22 mkdir $prefix/lgt22 0122 mkdir $prefix/lgt2210 23 23 24 24 cd .. 25 cp -R * $prefix/lgt22 0125 cp -R * $prefix/lgt2210 26 26 27 27 cd $prefix 28 chmod -R go-w,a+r lgt22 0129 chmod a+x lgt22 0130 chmod a+x lgt22 01/misc/*.sh31 chmod a+x lgt22 01/xml/*.sh32 ln -sf lgt22 01logtalk28 chmod -R go-w,a+r lgt2210 29 chmod a+x lgt2210 30 chmod a+x lgt2210/misc/*.sh 31 chmod a+x lgt2210/xml/*.sh 32 ln -sf lgt2210 logtalk 33 33 34 34 cd bin 35 ln -sf ../lgt22 01/misc/cplgtdirs.sh cplgtdirs36 ln -sf ../lgt22 01/xml/lgt2pdf.sh lgt2pdf37 ln -sf ../lgt22 01/xml/lgt2html.sh lgt2html35 ln -sf ../lgt2210/misc/cplgtdirs.sh cplgtdirs 36 ln -sf ../lgt2210/xml/lgt2pdf.sh lgt2pdf 37 ln -sf ../lgt2210/xml/lgt2html.sh lgt2html 38 38 39 39 echo "Logtalk installation completed." -
trunk/misc/logtalk.spec
r1447 r1490 1 1 Name: logtalk 2 2 Summary: Logtalk - Open source object-oriented extension to Prolog 3 Version: 2.2 0.23 Version: 2.21.0 4 4 Release: 1 5 5 License: Artistic License 2.0 6 6 Group: Development/Languages 7 7 Packager: Paulo Moura <pmoura@logtalk.org> 8 Source: http://www.logtalk.org/files/lgt22 02.tgz8 Source: http://www.logtalk.org/files/lgt2210.tgz 9 9 BuildArchitectures: noarch 10 10 URL: http://www.logtalk.org/ … … 14 14 Logtalk is an open source object-oriented extension to the Prolog programming language. Integrating logic programming with object-oriented and event-driven programming, it is compatible with most Prolog compilers. It supports both prototypes and classes. In addition, it supports component-based programming through category-based composition. 15 15 %prep 16 %setup -n lgt22 0216 %setup -n lgt2210 17 17 %build 18 18 %install 19 rm -rf /usr/local/lgt22 0219 rm -rf /usr/local/lgt2210 20 20 rm -f /usr/local/logtalk 21 mkdir /usr/local/lgt22 0222 cp -R * /usr/local/lgt22 0221 mkdir /usr/local/lgt2210 22 cp -R * /usr/local/lgt2210 23 23 cd /usr/local 24 chmod -R go-w,a+r lgt22 0225 chmod a+x lgt22 0226 chmod a+x lgt22 02/misc/*.sh27 chmod a+x lgt22 02/xml/*.sh28 ln -sf lgt22 02logtalk24 chmod -R go-w,a+r lgt2210 25 chmod a+x lgt2210 26 chmod a+x lgt2210/misc/*.sh 27 chmod a+x lgt2210/xml/*.sh 28 ln -sf lgt2210 logtalk 29 29 cd bin 30 ln -sf ../lgt22 02/misc/cplgtdirs.sh cplgtdirs31 ln -sf ../lgt22 02/xml/lgt2pdf.sh lgt2pdf32 ln -sf ../lgt22 02/xml/lgt2html.sh lgt2html30 ln -sf ../lgt2210/misc/cplgtdirs.sh cplgtdirs 31 ln -sf ../lgt2210/xml/lgt2pdf.sh lgt2pdf 32 ln -sf ../lgt2210/xml/lgt2html.sh lgt2html 33 33 %clean 34 34 %files 35 35 %defattr(-,root,users) 36 %doc /usr/local/lgt22 02/BIBLIOGRAPHY37 %doc /usr/local/lgt22 02/INSTALL38 %doc /usr/local/lgt22 02/LICENSE39 %doc /usr/local/lgt22 02/QUICK_START40 %doc /usr/local/lgt22 02/README41 %doc /usr/local/lgt22 02/RELEASE_NOTES42 %doc /usr/local/lgt22 02/UPGRADING43 /usr/local/lgt22 02/compiler44 /usr/local/lgt22 02/configs45 /usr/local/lgt22 02/examples46 /usr/local/lgt22 02/library47 %docdir /usr/local/lgt22 02/manuals48 /usr/local/lgt22 02/manuals49 /usr/local/lgt22 02/misc50 /usr/local/lgt22 02/wenv51 /usr/local/lgt22 02/xml36 %doc /usr/local/lgt2210/BIBLIOGRAPHY 37 %doc /usr/local/lgt2210/INSTALL 38 %doc /usr/local/lgt2210/LICENSE 39 %doc /usr/local/lgt2210/QUICK_START 40 %doc /usr/local/lgt2210/README 41 %doc /usr/local/lgt2210/RELEASE_NOTES 42 %doc /usr/local/lgt2210/UPGRADING 43 /usr/local/lgt2210/compiler 44 /usr/local/lgt2210/configs 45 /usr/local/lgt2210/examples 46 /usr/local/lgt2210/library 47 %docdir /usr/local/lgt2210/manuals 48 /usr/local/lgt2210/manuals 49 /usr/local/lgt2210/misc 50 /usr/local/lgt2210/wenv 51 /usr/local/lgt2210/xml 52 52 /usr/local/logtalk 53 53 /usr/local/bin/cplgtdirs -
trunk/scripts/debian/control
r1447 r1490 1 1 Package: logtalk 2 Version: 2.2 0.22 Version: 2.21.0 3 3 Section: languages 4 4 Priority: optional -
trunk/scripts/lgt_install.sh
r1460 r1490 17 17 fi 18 18 19 rm -rf $prefix/lgt22 0119 rm -rf $prefix/lgt2210 20 20 rm -f $prefix/logtalk 21 21 22 mkdir $prefix/lgt22 0122 mkdir $prefix/lgt2210 23 23 24 24 cd .. 25 cp -R * $prefix/lgt22 0125 cp -R * $prefix/lgt2210 26 26 27 27 cd $prefix 28 chmod -R go-w,a+r lgt22 0129 chmod a+x lgt22 0130 chmod a+x lgt22 01/misc/*.sh31 chmod a+x lgt22 01/xml/*.sh32 ln -sf lgt22 01logtalk28 chmod -R go-w,a+r lgt2210 29 chmod a+x lgt2210 30 chmod a+x lgt2210/misc/*.sh 31 chmod a+x lgt2210/xml/*.sh 32 ln -sf lgt2210 logtalk 33 33 34 34 cd bin 35 ln -sf ../lgt22 01/misc/cplgtdirs.sh cplgtdirs36 ln -sf ../lgt22 01/xml/lgt2pdf.sh lgt2pdf37 ln -sf ../lgt22 01/xml/lgt2html.sh lgt2html35 ln -sf ../lgt2210/misc/cplgtdirs.sh cplgtdirs 36 ln -sf ../lgt2210/xml/lgt2pdf.sh lgt2pdf 37 ln -sf ../lgt2210/xml/lgt2html.sh lgt2html 38 38 39 39 echo "Logtalk installation completed." -
trunk/scripts/logtalk.spec
r1447 r1490 1 1 Name: logtalk 2 2 Summary: Logtalk - Open source object-oriented extension to Prolog 3 Version: 2.2 0.23 Version: 2.21.0 4 4 Release: 1 5 5 License: Artistic License 2.0 6 6 Group: Development/Languages 7 7 Packager: Paulo Moura <pmoura@logtalk.org> 8 Source: http://www.logtalk.org/files/lgt22 02.tgz8 Source: http://www.logtalk.org/files/lgt2210.tgz 9 9 BuildArchitectures: noarch 10 10 URL: http://www.logtalk.org/ … … 14 14 Logtalk is an open source object-oriented extension to the Prolog programming language. Integrating logic programming with object-oriented and event-driven programming, it is compatible with most Prolog compilers. It supports both prototypes and classes. In addition, it supports component-based programming through category-based composition. 15 15 %prep 16 %setup -n lgt22 0216 %setup -n lgt2210 17 17 %build 18 18 %install 19 rm -rf /usr/local/lgt22 0219 rm -rf /usr/local/lgt2210 20 20 rm -f /usr/local/logtalk 21 mkdir /usr/local/lgt22 0222 cp -R * /usr/local/lgt22 0221 mkdir /usr/local/lgt2210 22 cp -R * /usr/local/lgt2210 23 23 cd /usr/local 24 chmod -R go-w,a+r lgt22 0225 chmod a+x lgt22 0226 chmod a+x lgt22 02/misc/*.sh27 chmod a+x lgt22 02/xml/*.sh28 ln -sf lgt22 02logtalk24 chmod -R go-w,a+r lgt2210 25 chmod a+x lgt2210 26 chmod a+x lgt2210/misc/*.sh 27 chmod a+x lgt2210/xml/*.sh 28 ln -sf lgt2210 logtalk 29 29 cd bin 30 ln -sf ../lgt22 02/misc/cplgtdirs.sh cplgtdirs31 ln -sf ../lgt22 02/xml/lgt2pdf.sh lgt2pdf32 ln -sf ../lgt22 02/xml/lgt2html.sh lgt2html30 ln -sf ../lgt2210/misc/cplgtdirs.sh cplgtdirs 31 ln -sf ../lgt2210/xml/lgt2pdf.sh lgt2pdf 32 ln -sf ../lgt2210/xml/lgt2html.sh lgt2html 33 33 %clean 34 34 %files 35 35 %defattr(-,root,users) 36 %doc /usr/local/lgt22 02/BIBLIOGRAPHY37 %doc /usr/local/lgt22 02/INSTALL38 %doc /usr/local/lgt22 02/LICENSE39 %doc /usr/local/lgt22 02/QUICK_START40 %doc /usr/local/lgt22 02/README41 %doc /usr/local/lgt22 02/RELEASE_NOTES42 %doc /usr/local/lgt22 02/UPGRADING43 /usr/local/lgt22 02/compiler44 /usr/local/lgt22 02/configs45 /usr/local/lgt22 02/examples46 /usr/local/lgt22 02/library47 %docdir /usr/local/lgt22 02/manuals48 /usr/local/lgt22 02/manuals49 /usr/local/lgt22 02/misc50 /usr/local/lgt22 02/wenv51 /usr/local/lgt22 02/xml36 %doc /usr/local/lgt2210/BIBLIOGRAPHY 37 %doc /usr/local/lgt2210/INSTALL 38 %doc /usr/local/lgt2210/LICENSE 39 %doc /usr/local/lgt2210/QUICK_START 40 %doc /usr/local/lgt2210/README 41 %doc /usr/local/lgt2210/RELEASE_NOTES 42 %doc /usr/local/lgt2210/UPGRADING 43 /usr/local/lgt2210/compiler 44 /usr/local/lgt2210/configs 45 /usr/local/lgt2210/examples 46 /usr/local/lgt2210/library 47 %docdir /usr/local/lgt2210/manuals 48 /usr/local/lgt2210/manuals 49 /usr/local/lgt2210/misc 50 /usr/local/lgt2210/wenv 51 /usr/local/lgt2210/xml 52 52 /usr/local/logtalk 53 53 /usr/local/bin/cplgtdirs
