From: demian Date: Wed, 19 Feb 2003 23:55:28 +0000 (+0000) Subject: : Modified Files: X-Git-Url: https://hackdaworld.org/gitweb/?p=hdw-repos%2Fpackages.git;a=commitdiff_plain;h=e7b97b2b445effe6de4f26adad868bc24db28513 : Modified Files: : demian/gdbm/gdbm : Added Files: : demian/dialog/dialog demian/libao/libao demian/mad/mad : demian/mesalib/mesalib demian/mpg321/mpg321 : demian/nethack/nethack demian/ogg-vorbis/ogg-vorbis : ---------------------------------------------------------------------- --- diff --git a/demian/dialog/dialog b/demian/dialog/dialog new file mode 100755 index 0000000..0402f9a --- /dev/null +++ b/demian/dialog/dialog @@ -0,0 +1,9 @@ +# HDW Linux dialog +# +# [M] Jonathan J. Vargas demian@hackdaworld.dyndns.org +# [I] Utility designed for displaying menu's and dialog boxes +# [I] in the linux TTY's. +# [V] 0.9b +# [S] 3 10 +# [D] dialog-0.9b-20020814.tbz2 ftp://invisible-island.net/dialog/ +confopt="$confopt --with-ncurses --with-warnings --enable-nls" diff --git a/demian/gdbm/gdbm b/demian/gdbm/gdbm index 0e205e9..cc7cc58 100755 --- a/demian/gdbm/gdbm +++ b/demian/gdbm/gdbm @@ -1,7 +1,9 @@ # HDW Linux gdbm # # [M] Jonathan J. Vargas demian@hackdaworld.dyndns.org -# [I] GNU dbm -# [V] 1.8.0 -# [S] 3 6 -# [D] gdbm-1.8.0.tar.gz ftp://ftp.gnu.org/pub/gnu/gdbm/ +# [I] GNU DBM +# [V] 1.8.3 +# [S] 3 4 +# [D] gdbm-1.8.3.tar.gz ftp://ftp.gnu.org/pub/gnu/gdbm/ + +install_conf="install-compat" diff --git a/demian/libao/libao b/demian/libao/libao new file mode 100755 index 0000000..0e087a6 --- /dev/null +++ b/demian/libao/libao @@ -0,0 +1,7 @@ +# HDW Linux libao +# +# [M] Jonathan J. Vargas demian@hackdaworld.dyndns.org +# [I] +# [V] 0.8.3 +# [S] 3 7 +# [D] libao-0.8.3.tar.gz http://www.vorbis.com/files/1.0/unix/ diff --git a/demian/mad/mad b/demian/mad/mad new file mode 100755 index 0000000..6064cdd --- /dev/null +++ b/demian/mad/mad @@ -0,0 +1,7 @@ +# HDW Linux mad +# +# [M] Jonathan J. Vargas demian@hackdaworld.dyndns.org +# [I] Advanced MPEG Encoder +# [V] 0.14.2b +# [S] 3 5 +# [D] mad-0.14.2b.tar.gz ftp://ftp.mars.org/pub/mpeg/ diff --git a/demian/mesalib/mesalib b/demian/mesalib/mesalib new file mode 100755 index 0000000..18d2f37 --- /dev/null +++ b/demian/mesalib/mesalib @@ -0,0 +1,7 @@ +# HDW Linux mesalib +# +# [M] Jonathan J. Vargas demian@hackdaworld.dyndns.org +# [I] 3d graphics stuff +# [V] 4.0.3 +# [S] 3 5 +# [D] MesaLib-4.0.3.tar.gz ftp://ftp.mesa3d.org/pub/sourceforge/mesa3d/ diff --git a/demian/mpg321/mpg321 b/demian/mpg321/mpg321 new file mode 100755 index 0000000..d7b5f99 --- /dev/null +++ b/demian/mpg321/mpg321 @@ -0,0 +1,7 @@ +# HDW Linux mpg321 +# +# [M] Jonathan J. Vargas demian@hackdaworld.dyndns.org +# [I] A Free software mpg123 layer decoder +# [V] 0.2.10 +# [S] 3 6 +# [D] mpg321-0.2.10.tar.gz !unknown diff --git a/demian/nethack/nethack b/demian/nethack/nethack new file mode 100755 index 0000000..3f962d1 --- /dev/null +++ b/demian/nethack/nethack @@ -0,0 +1,7 @@ +# HDW Linux methack +# +# [M] Jonathan J. Vargas demian@hackdaworld.dyndns.org +# [I] NetHack, the game. +# [V] 3.4.0 +# [S] 3 5 +# [D] nethack-340.tgz http://belnet.dl.sourceforge.net/sourceforge/nethack/ diff --git a/demian/ogg-vorbis/ogg-vorbis b/demian/ogg-vorbis/ogg-vorbis new file mode 100755 index 0000000..654cdbd --- /dev/null +++ b/demian/ogg-vorbis/ogg-vorbis @@ -0,0 +1,26 @@ +# HDW Linux vorbis +# +# [M] Jonathan J. Vargas demian@hackdaworld.dyndns.org +# [I] Audio compression tools. Open Source replacement +# [I] of the mp3 music format +# [V] 1.0 +# [S] 3 8 +# [D] libvorbis-1.0.tar.gz http://www.vorbis.com/files/1.0/unix/ +# [D] vorbisinfo-0.2.pl http://drocklinux.dyndns.org/rene/vorbisinfo/ +# [D] vorbis-tools-1.0.tar.gz http://www.vorbis.com/files/1.0/unix/ +# [D] libogg-1.0.tar.gz http://www.vorbis.com/files/1.0/unix/ + +build_main() +{ + ./configure $confopt ; make $make_conf ; make $install_conf install + cd .. + for pak in vorbis-tools-1.0 libogg-1.0 + do + echo "untaring ${pak}.tar.gz" + tar --use-compress-program=gzip -xvf \ + $archdir/${pak}.tar.gz + cd $pak ; + ./configure $confopt ; make $make_conf ; make $install_conf install + cd .. + done +}