Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (306bc47e05eb75dcd43e59683cc12483a179ede1)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ladislav Hagara <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (306bc47e05eb75dcd43e59683cc12483a179ede1)
  • Date: Mon, 9 Jun 2008 09:31:19 -0500

GIT changes to master grimoire by Ladislav Hagara <ladislav.hagara AT unob.cz>:

ChangeLog | 1 +
utils/cowsay/BUILD | 1 +
utils/cowsay/DEPENDS | 1 +
utils/cowsay/DETAILS | 18 ++++++++++++++++++
utils/cowsay/HISTORY | 3 +++
utils/cowsay/INSTALL | 22 ++++++++++++++++++++++
6 files changed, 46 insertions(+)

New commits:
commit 306bc47e05eb75dcd43e59683cc12483a179ede1
Author: Ladislav Hagara <ladislav.hagara AT unob.cz>
Commit: Ladislav Hagara <ladislav.hagara AT unob.cz>

cowsay - ChangeLog entry

commit ceadf20529cd3c2502ea715554b12118bcb0bdd3
Author: Ladislav Hagara <ladislav.hagara AT unob.cz>
Commit: Ladislav Hagara <ladislav.hagara AT unob.cz>

utils/cowsay: new spell, an easy way to add speaking and thinking cows to
anything

diff --git a/ChangeLog b/ChangeLog
index a318a62..72d09ec 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@

2008-06-09 Ladislav Hagara <hgr AT vabo.cz>
* utils/latrace: new spell, a glibc 2.4+ LD_AUDIT frontend
+ * utils/cowsay: new spell, a speaking and thinking cow

2008-06-07 Treeve Jelbert <treeve AT sourcemage.org>
* graphics/lensfun: new spell, tool to manipulate photos,
diff --git a/utils/cowsay/BUILD b/utils/cowsay/BUILD
new file mode 100755
index 0000000..27ba77d
--- /dev/null
+++ b/utils/cowsay/BUILD
@@ -0,0 +1 @@
+true
diff --git a/utils/cowsay/DEPENDS b/utils/cowsay/DEPENDS
new file mode 100755
index 0000000..6826bc7
--- /dev/null
+++ b/utils/cowsay/DEPENDS
@@ -0,0 +1 @@
+depends perl
diff --git a/utils/cowsay/DETAILS b/utils/cowsay/DETAILS
new file mode 100755
index 0000000..ededc52
--- /dev/null
+++ b/utils/cowsay/DETAILS
@@ -0,0 +1,18 @@
+ SPELL=cowsay
+ VERSION=3.03
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE_URL[0]=http://www.nog.net/~tony/warez/${SOURCE}
+
SOURCE_HASH=sha512:8e91d0c929c2e0743106c08643029a943d0684343ff44ad8ff172636a8f47fd25ee8bc4d108ccfe308c756d2871b956cceef0c406800615ed0dc1e1e24648219
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ WEB_SITE=http://www.nog.net/~tony/warez/cowsay.shtml
+ LICENSE[0]=ART
+ ENTERED=20080609
+ SHORT="an easy way to add speaking and thinking cows to anything"
+cat << EOF
+Cowsay is the easy way to add speaking and thinking cows (and a few other
+creatures) to anything. Any message you like, even in large figlet letters,
+can be rattled off by these ASCII critters. Cowsay comes with over 40
creatures
+that can be bent to your sick and twisted will. New "cows" can be
+easily bred by those versed in the appropriate dark arts. Cowsay is more
useful
+than most of the items found in SkyMall catalogues, and a lot less expensive.
+EOF
diff --git a/utils/cowsay/HISTORY b/utils/cowsay/HISTORY
new file mode 100644
index 0000000..6a24cce
--- /dev/null
+++ b/utils/cowsay/HISTORY
@@ -0,0 +1,3 @@
+2008-06-09 Ladislav Hagara <hgr AT vabo.cz>
+ * DETAILS, DEPENDS, BUILD, INSTALL: created this spell, version 3.03
+
diff --git a/utils/cowsay/INSTALL b/utils/cowsay/INSTALL
new file mode 100755
index 0000000..218b8cb
--- /dev/null
+++ b/utils/cowsay/INSTALL
@@ -0,0 +1,22 @@
+filelist='cows'
+usethisperl=/usr/bin/perl
+PREFIX=/usr
+
+echo Okay, time to install this puppy.
+
+echo s,%BANGPERL%,!$usethisperl,\; > install.pl
+echo s,%PREFIX%,$PREFIX,\; >> install.pl
+set -x
+mkdir -p $PREFIX/bin || (mkdir $PREFIX; mkdir $PREFIX/bin)
+$usethisperl -p install.pl cowsay > $PREFIX/bin/cowsay
+chmod a+x $PREFIX/bin/cowsay
+ln -s cowsay $PREFIX/bin/cowthink
+mkdir -p $PREFIX/man/man1 || ($mkdir $PREFIX; mkdir $PREFIX/man; mkdir
$PREFIX/man/man1)
+$usethisperl -p install.pl cowsay.1 > $PREFIX/man/man1/cowsay.1
+chmod a+r $PREFIX/man/man1/cowsay.1
+ln -s cowsay.1 $PREFIX/man/man1/cowthink.1
+mkdir -p $PREFIX/share/cows || (mkdir $PREFIX; mkdir $PREFIX/share; mkdir
$PREFIX/share/cows)
+tar -cf - $filelist | (cd $PREFIX/share && tar -xvf -)
+set +x
+
+echo Installation complete! Enjoy the cows!




Archive powered by MHonArc 2.6.24.

Top of Page