diff options
author | 2000-08-13 12:14:31 +0000 | |
---|---|---|
committer | 2000-08-13 12:14:31 +0000 | |
commit | ec229cd6f10ac2a6557f1af753e3bf2493d8052c (patch) | |
tree | 5e34ed5fbb5962338ca09ae96fe260041dc62a98 | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-ec229cd6f10ac2a6557f1af753e3bf2493d8052c.tar.gz gentoo-2-ec229cd6f10ac2a6557f1af753e3bf2493d8052c.tar.bz2 gentoo-2-ec229cd6f10ac2a6557f1af753e3bf2493d8052c.zip |
*** empty log message ***
23 files changed, 366 insertions, 17 deletions
diff --git a/app-cdr/cdrecord/files/digest b/app-cdr/cdrecord/files/digest new file mode 100644 index 000000000000..b9745b46e2f9 --- /dev/null +++ b/app-cdr/cdrecord/files/digest @@ -0,0 +1 @@ +MD5 0fa360d9280d16370d7738ec0b62affb cdrecord-1.9.tar.gz diff --git a/app-editors/joe/joe-2.8-r1.ebuild b/app-editors/joe/joe-2.8-r1.ebuild index 0676a04a73eb..6430484723de 100644 --- a/app-editors/joe/joe-2.8-r1.ebuild +++ b/app-editors/joe/joe-2.8-r1.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/app-editors/joe/joe-2.8-r1.ebuild,v 1.2 2000/08/07 11:29:13 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/joe/joe-2.8-r1.ebuild,v 1.3 2000/08/13 12:10:49 achim Exp $ P=joe-2.8 A=joe2.8.tar.Z S=${WORKDIR}/joe -CATEGORY="app-misc" +CATEGORY="app-editors" DESCRIPTION="A free ASCII-Text Screen Editor for UNIX" SRC_URI="ftp://ftp.std.com/src/editors/"${A} @@ -47,3 +47,4 @@ src_install() { + diff --git a/app-shells/ccsh/ccsh-0.0.4-r1.ebuild b/app-shells/ccsh/ccsh-0.0.4-r1.ebuild new file mode 100644 index 000000000000..41aefb19ce84 --- /dev/null +++ b/app-shells/ccsh/ccsh-0.0.4-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-shells/ccsh/ccsh-0.0.4-r1.ebuild,v 1.1 2000/08/13 12:10:49 achim Exp $ + +P=ccsh-0.0.4 +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="UNIX Shell for people already familiar with the C language" +SRC_URI="http://download.sourceforge.net/ccsh/"${A} +HOMEPAGE="http://ccsh.sourceforge.net" +CATEGORY="app-shells" + +src_compile() { + cd ${S} + + make CFLAGS="${CFLAGS}" all +} + +src_install() { + cd ${S} + into / + dobin ccsh + into /usr + newman ccsh.man ccsh.1 + dodoc ChangeLog COPYING README TODO +} + + + + + diff --git a/app-shells/ccsh/files/digest b/app-shells/ccsh/files/digest new file mode 100644 index 000000000000..25a513ed0f28 --- /dev/null +++ b/app-shells/ccsh/files/digest @@ -0,0 +1 @@ +MD5 042a8596065e49dccf154b661e2444a9 ccsh-0.0.4.tar.gz diff --git a/app-shells/esh/esh-0.8-r1.ebuild b/app-shells/esh/esh-0.8-r1.ebuild new file mode 100644 index 000000000000..fc751fcdf00e --- /dev/null +++ b/app-shells/esh/esh-0.8-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-shells/esh/esh-0.8-r1.ebuild,v 1.1 2000/08/13 12:10:49 achim Exp $ + +P=esh-0.8 +A=${P}.tar.gz +S=${WORKDIR}/esh +DESCRIPTION="A UNIX Shell with a simplified Scheme syntax" +SRC_URI="http://esh.netpedia.net/"${A} +HOMEPAGE="http://esh.netpedia.net/" +CATEGORY="app-shells" + +src_compile() { + cd ${S} + cp Makefile Makefile.orig + sed -e "s:^CFLAGS=:CFLAGS=${CFLAGS} :" \ + -e "s:^LIB=:LIB=-lncurses :" Makefile.orig > Makefile + make +} + +src_install() { + cd ${S} + into / + dobin esh + into /usr + doinfo doc/esh.info + dodoc CHANGELOG CREDITS GC_README HEADER LICENSE READLNE-HACKS TODO + docinto html + dodoc doc/*.html + docinto examples + dodoc examples/* + insinto /usr/share/emacs/site-lisp/ + doins emacs/esh-mode.el +} + + + + + diff --git a/app-shells/esh/files/digest b/app-shells/esh/files/digest new file mode 100644 index 000000000000..4ea7be5f1d42 --- /dev/null +++ b/app-shells/esh/files/digest @@ -0,0 +1 @@ +MD5 b59022b88bae24420156d25869b8be54 esh-0.8.tar.gz diff --git a/app-shells/sash/files/digest b/app-shells/sash/files/digest new file mode 100644 index 000000000000..d8d6a75468ab --- /dev/null +++ b/app-shells/sash/files/digest @@ -0,0 +1 @@ +MD5 9c631eb171371b69276ff6692100beb6 sash-3.4.tar.gz diff --git a/app-shells/sash/sash-3.4-r1.ebuild b/app-shells/sash/sash-3.4-r1.ebuild new file mode 100644 index 000000000000..71049560c8d0 --- /dev/null +++ b/app-shells/sash/sash-3.4-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/sash-3.4-r1.ebuild,v 1.1 2000/08/13 12:10:49 achim Exp $ + +P=sash-3.4 +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="A small UNIX Shell" +SRC_URI="http://www.canb.auug.org.au/~dbell/programs/"${A} +HOMEPAGE="http://www.canb.auug.org.au/~dbell/" +CATEGORY="app-shells" + +src_compile() { + cd ${S} + cp Makefile Makefile.orig + sed -e "s:-O3:${CFLAGS}:" Makefile.orig > Makefile + make +} + +src_install() { + cd ${S} + into / + dobin sash + into /usr + doman sash.1 + dodoc README + +} + + + + + diff --git a/dev-db/mysql/files/mysql b/dev-db/mysql/files/mysql index f0a6ea019a13..4aef25c9a38c 100755 --- a/dev-db/mysql/files/mysql +++ b/dev-db/mysql/files/mysql @@ -74,6 +74,11 @@ fi cd $basedir start() { + # Create db on first start + if [ ! -d /var/mysql/mysql ] + then + /usr/bin/mysql_install_db + fi # Start daemon if test -x $bindir/safe_mysqld @@ -112,3 +117,4 @@ restart () { doservice ${@} + diff --git a/dev-db/mysql/mysql-3.22.32-r1.ebuild b/dev-db/mysql/mysql-3.22.32-r1.ebuild index 6398927d779a..cfe34c3979cb 100644 --- a/dev-db/mysql/mysql-3.22.32-r1.ebuild +++ b/dev-db/mysql/mysql-3.22.32-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-3.22.32-r1.ebuild,v 1.2 2000/08/13 05:28:48 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-3.22.32-r1.ebuild,v 1.3 2000/08/13 12:10:49 achim Exp $ A=${P}.tar.gz DESCRIPTION="The MySQL Database" @@ -81,17 +81,11 @@ src_install() { } -pkg_postinst () { +pkg_config () { - . ${ROOT}/var/lib/packages/install.config - if [ "$ROOT" == "/" ] ; then - /usr/bin/mysql_install_db - /etc/rc.d/init.d/mysql start - sleep 5 - /usr/bin/mysqladmin password $MySQLpass - fi echo "Setting up symlinks..." ${ROOT}/usr/sbin/rc-update add mysql } + diff --git a/dev-util/yacc/files/digest b/dev-util/yacc/files/digest new file mode 100644 index 000000000000..0fbb5ecdd357 --- /dev/null +++ b/dev-util/yacc/files/digest @@ -0,0 +1 @@ +MD5 3bcf50bece4ef1d0fbaf479e25790437 yacc-1.9.1.tar.Z diff --git a/dev-util/yacc/yacc-1.9.1-r1.ebuild b/dev-util/yacc/yacc-1.9.1-r1.ebuild new file mode 100644 index 000000000000..d26f4c632f5e --- /dev/null +++ b/dev-util/yacc/yacc-1.9.1-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/dev-util/yacc/yacc-1.9.1-r1.ebuild,v 1.1 2000/08/13 12:10:49 achim Exp $ + +P=yacc-1.9.1 +A=${P}.tar.Z +S=${WORKDIR}/${P} +CATEGORY="dev-util" +DESCRIPTION="Yacc" +SRC_URI="ftp://metalab.unc.edu/pub/Linux/devel/compiler-tools/${A}" + +src_unpack () { + unpack ${A} + cd ${S} + cp Makefile Makefile.orig + sed -e "s:-O:${CFLAGS}:" Makefile.orig > Makefile +} +src_compile() { + make clean + make +} + +src_install() { + into /usr + dobin yacc + doman yacc.1 + dodoc 00README* ACKNOWLEDGEMENTS NEW_FEATURES NO_WARRANTY NOTES README* + ln -s /usr/lib/cvs/contrib ${D}/usr/doc/${P}/contrib +} + + + + diff --git a/media-video/bcast-2000/bcast-2000a-r1.ebuild b/media-video/bcast-2000/bcast-2000a-r1.ebuild new file mode 100644 index 000000000000..ca69dd97e20e --- /dev/null +++ b/media-video/bcast-2000/bcast-2000a-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-video/bcast-2000/bcast-2000a-r1.ebuild,v 1.1 2000/08/13 12:10:49 achim Exp $ + +P=bcast-2000a +A=${P}-src.tar.gz +S=${WORKDIR}/${P} +CATEGORY="media-video" +DESCRIPTION="Realtime audio and video editor" +SRC_URI="http://heroine.linuxave.net/${A}" +HOMEPAGE="http://heroine.linuxave.net/bcast2000.html" + +src_unpack() { + unpack ${A} + cd ${S}/esound + cp esd.h esd.h.orig + sed -e "s:<audiofile\.h>:\"\.\./audiofile/audiofile\.h\":" esd.h.orig > esd.h + cd ${S}/quicktime/libdv + cp dvprivate.h dvprivate.h.orig + sed -e "s:<libraw1394/raw1394\.h>:\"\.\./\.\./libraw1394/raw1394\.h\":" dvprivate.h.orig > dvprivate.h +} +src_compile() { + + cd ${S} + ./configure + make + +} + +src_install () { + + cd ${S} + into /usr + dobin bcast/bcast2000 + dolib.so bcbase/libbcbase.so + insinto /usr/X11R6/lib/bcast2000a/plugins + doins plugins/*.plugin + dodoc COPYING + docinto html + dodoc docs/*.html docs/*.png docs/*.jpg + + +} + + + diff --git a/media-video/bcast-2000/files/digest b/media-video/bcast-2000/files/digest new file mode 100644 index 000000000000..2fb982c33cac --- /dev/null +++ b/media-video/bcast-2000/files/digest @@ -0,0 +1 @@ +MD5 642cb24ba6c8270e69959ccfe2bea271 bcast-2000a-src.tar.gz diff --git a/media-video/xmps/files/digest b/media-video/xmps/files/digest index 858927fef896..b8ffe8a412a8 100644 --- a/media-video/xmps/files/digest +++ b/media-video/xmps/files/digest @@ -1 +1 @@ -MD5 15e8c24aa324d5494679f4591fc3522a xmps-0.1.1.tar.gz +MD5 f56559b59e83e3e5eee518b63d95416c xmps-0.1.3.tar.gz diff --git a/media-video/xmps/xmps-0.1.3-r1.ebuild b/media-video/xmps/xmps-0.1.3-r1.ebuild new file mode 100644 index 000000000000..4e022c51d083 --- /dev/null +++ b/media-video/xmps/xmps-0.1.3-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-video/xmps/xmps-0.1.3-r1.ebuild,v 1.1 2000/08/13 12:14:31 achim Exp $ + +P=xmps-0.1.3 +A=${P}.tar.gz +S=${WORKDIR}/${P} +CATEGORY="media-video" +DESCRIPTION="X Movie Player System" +SRC_URI="http://www-eleves.enst-bretagne.fr/~chavarri/xmps/sources/${A}" +HOMEPAGE="http://www-eleves.enst-bretagne.fr/~chavarri/xmps/" + +src_compile() { + + cd ${S} + ./configure --prefix=/usr/X11R6 --host=${CHOST} \ + --with-catgets + make + +} + +src_install () { + + cd ${S} + make DESTDIR=${D} install + dodoc AUTHORS ChangeLog COPYING NEWS README TODO + +} + + + diff --git a/net-print/LPRng/LPRng-3.6.19-r1.ebuild b/net-print/LPRng/LPRng-3.6.19-r1.ebuild new file mode 100644 index 000000000000..c3775eb59028 --- /dev/null +++ b/net-print/LPRng/LPRng-3.6.19-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-print/LPRng/LPRng-3.6.19-r1.ebuild,v 1.1 2000/08/13 12:10:49 achim Exp $ + +P=LPRng-3.6.19 +A=${P}.tgz +S=${WORKDIR}/${P} +CATEGORY="net-print" +DESCRIPTION="Extended implementation of the Berkley LPR print spooler" +SRC_URI="ftp://ftp.astart.com/pub/LPRng/LPRng/"${A} +HOMEPAGE="http://www.astart.com/LPRng/LPRng.html" + +src_unpack() { + unpack ${A} + cd ${S}/po + rm Makefile.in.in + cp /usr/share/gettext/po/Makefile.in.in . + rm -rf ${S}/intl +} + +src_compile() { + cd ${S} + ./configure --host=${CHOST} --prefix=/usr --sysconfdir=/etc/lprng \ + --enable-nls --with-catgets --with-included-gettext + make +} + +src_install() { + cd ${S} + make INSTALL_PREFIX=${D} datadir=${D}/usr/share gnulocaledir=${D}/usr/share/locale install + + prepman + + rm -rf ${D}/usr/share/locale + MOPREFIX=LPRng + domo po/fr.po + cp ${O}/files/lprng ${D}/etc/rc.d/init.d/lprng + cd ${S} + dodoc ABOUT-NLS.LPRng CHANGES CONTRIBUTORS COPYRIGHT LICENSE LINK README* UPDATE VERSION + dodoc HOWTO/*.txt HOWTO/*.ppt + docinto html + dodoc HOWTO/*.html HOWTO/*.gif +} + + + diff --git a/net-print/LPRng/files/digest b/net-print/LPRng/files/digest new file mode 100644 index 000000000000..9ffbd3fa1032 --- /dev/null +++ b/net-print/LPRng/files/digest @@ -0,0 +1 @@ +MD5 3943e3f21e925f4e3f8fae268281b0c2 LPRng-3.6.19.tgz diff --git a/net-print/LPRng/files/lprng b/net-print/LPRng/files/lprng new file mode 100755 index 000000000000..b05f4caab1a3 --- /dev/null +++ b/net-print/LPRng/files/lprng @@ -0,0 +1,71 @@ +#!/bin/sh +#RCUPDATE:3 4:75: + +LPD_PATH="/usr/sbin/lpd" +INSTALL="/bin/install -c" +LPD_PERMS_PATH="/etc/lprng/lpd.perms" +LPD_CONF_PATH="/etc/lprng/lpd.conf" +PRINTCAP_PATH="/etc/lprng/printcap" +SYSCONFDIR=/etc/lprng +SBINDIR=/usr/sbin +FILTER_DIR=/usr/libexec/filters +LOCKFILE="/var/run/lpd" +PSHOWALL="-ax" +VERSION=3.6.19 +# +# -- START -- +# $Id: lprng,v 1.1 2000/08/13 12:10:50 achim Exp $ +# +# lpd This shell script takes care of starting and stopping +# lpd (printer daemon). +# Taken from the RedHat Linux 6.2 distribution for the lpd startup +# modified to make things a little more robust +# +# chkconfig: 2345 60 60 +# description: lpd is the print daemon required for lpr to work properly. \ +# It is basically a server that arbitrates print jobs to printer(s). +# processname: lpd +# config: /etc/printcap + +# Source function library. + +. /etc/rc.d/config/functions + + +[ -f "${LPD_PATH}" ] || exit 0 +[ -f /etc/printcap ] || exit 0 + +RETVAL=0 +SERVICE=lpd +opts="start stop restart status" + +# See how we were called. + +function start() { + # Start daemons. + ebegin "Starting lpd: " + start-stop-daemon --start --quiet --exec ${LPD_PATH} + eend $? "Started $SERVICE." "Error Starting $SERVICE" +} +function stop() { + + # Stop daemons. + ebegin "Shutting down lpd: " + start-stop-daemon --stop --quiet --pidfile ${LOCKFILE} --exec ${LPD_PATH} + eend $? "Stopped $SERVICE." "Error Stopping $SERVICE." +} + +function restart() { + + stop + start +} + +function status() { + + lpc lpd + +} + +doservice ${@} + diff --git a/net-www/netscape/files/digest b/net-www/netscape/files/digest index 0c7d1f83e210..9a1271899c65 100644 --- a/net-www/netscape/files/digest +++ b/net-www/netscape/files/digest @@ -1 +1 @@ -MD5 e5434d67a50f1328a21825033055584c communicator-v473-export.x86-unknown-linuxglibc2.0.tar.gz +MD5 980a921d78868c85128b660ea1266bb4 netscape-i686-pc-linux-gnu-sea.tar.gz diff --git a/sys-apps/vim-nogui/vim-nogui-5.7-r1.ebuild b/sys-apps/vim-nogui/vim-nogui-5.7-r1.ebuild index 79f25ebc12d5..6f7aac40a01f 100644 --- a/sys-apps/vim-nogui/vim-nogui-5.7-r1.ebuild +++ b/sys-apps/vim-nogui/vim-nogui-5.7-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/vim-nogui/vim-nogui-5.7-r1.ebuild,v 1.1 2000/08/02 17:07:16 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/vim-nogui/vim-nogui-5.7-r1.ebuild,v 1.2 2000/08/13 12:10:50 achim Exp $ P=vim-nogui-5.7 A="vim-5.7-src.tar.gz vim-5.7-rt.tar.gz" @@ -10,6 +10,7 @@ CATEGORY="sys-apps" DESCRIPTION="Handy vi-compatible editor" SRC_URI="ftp://ftp.home.vim.org/pub/vim/unix/vim-5.7-src.tar.gz ftp://ftp.home.vim.org/pub/vim/unix/vim-5.7-rt.tar.gz" +HOMEPAGE="http://www.vim.org" src_compile() { ./configure --prefix=/usr --host=${CHOST} \ @@ -33,3 +34,4 @@ src_install() { + diff --git a/x11-libs/gtk+/files/digest b/x11-libs/gtk+/files/digest new file mode 100644 index 000000000000..7fc9e80637ce --- /dev/null +++ b/x11-libs/gtk+/files/digest @@ -0,0 +1 @@ +MD5 d947ecc5780b4367d4c50fbb019d0216 gtk+-1.2.8.tar.gz diff --git a/x11-libs/gtk+/gtk+-1.2.8-r1.ebuild b/x11-libs/gtk+/gtk+-1.2.8-r1.ebuild index a6ca4686a75f..a58df3a9bc4a 100644 --- a/x11-libs/gtk+/gtk+-1.2.8-r1.ebuild +++ b/x11-libs/gtk+/gtk+-1.2.8-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/gtk+-1.2.8-r1.ebuild,v 1.1 2000/08/12 16:46:05 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/gtk+-1.2.8-r1.ebuild,v 1.2 2000/08/13 12:10:50 achim Exp $ P=gtk+-1.2.8 A=${P}.tar.gz @@ -13,14 +13,14 @@ HOMEPAGE="http://www.gtk.org" src_compile() { cd ${S} - ./configure --host=${CHOST} --prefix=/usr/X11R6 \ + ./configure --host=${CHOST} --prefix=/usr/X11R6 --sysconfdir=/etx/X11 \ --with-xinput=xfree --with-catgets --with-x make } src_install() { cd ${S} - make install prefix=${D}/usr/X11R6 + make install prefix=${D}/usr/X11R6 sysconfdir=${D}/etc/X11 prepman /usr/X11R6 prepinfo /usr/X11R6 into /usr @@ -36,3 +36,4 @@ src_install() { + |