diff options
author | Jon Nelson <jnelson@gentoo.org> | 2002-07-02 04:19:59 +0000 |
---|---|---|
committer | Jon Nelson <jnelson@gentoo.org> | 2002-07-02 04:19:59 +0000 |
commit | 894206a5f95079f4d9ff96e88bff0de5304fcff2 (patch) | |
tree | 423774e01e852e002035bea40572b36f27fbf934 /net-www/boa | |
parent | actually refer to proper python-config file (diff) | |
download | gentoo-2-894206a5f95079f4d9ff96e88bff0de5304fcff2.tar.gz gentoo-2-894206a5f95079f4d9ff96e88bff0de5304fcff2.tar.bz2 gentoo-2-894206a5f95079f4d9ff96e88bff0de5304fcff2.zip |
remove old, unused files
Diffstat (limited to 'net-www/boa')
-rw-r--r-- | net-www/boa/boa-0.94.11-r1.ebuild | 88 | ||||
-rw-r--r-- | net-www/boa/boa-0.94.11-r2.ebuild | 88 | ||||
-rw-r--r-- | net-www/boa/boa-0.94.11.ebuild | 90 | ||||
-rw-r--r-- | net-www/boa/files/digest-boa-0.94.11 | 1 | ||||
-rw-r--r-- | net-www/boa/files/digest-boa-0.94.11-r1 | 1 | ||||
-rw-r--r-- | net-www/boa/files/digest-boa-0.94.11-r2 | 1 |
6 files changed, 0 insertions, 269 deletions
diff --git a/net-www/boa/boa-0.94.11-r1.ebuild b/net-www/boa/boa-0.94.11-r1.ebuild deleted file mode 100644 index ee7faf98d749..000000000000 --- a/net-www/boa/boa-0.94.11-r1.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2001 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Jon Nelson <jnelson@boa.org> -# /home/cvsroot/gentoo-x86/skel.build,v 1.7 2001/08/25 21:15:08 chadh Exp - -#Source directory; the dir where the sources can be found (automatically -# unpacked) inside ${WORKDIR} -S=${WORKDIR}/${P} - -#Short one-line description -DESCRIPTION="Boa - A very small and very fast http daemon." - -#Point to any required sources; these will be automatically downloaded -# by Portage -SRC_URI="http://www.boa.org/${P}.tar.gz" - -#Homepage, not used by Portage directly but handy for developer reference -HOMEPAGE="http://www.boa.org/" - -#build-time dependencies -DEPEND="virtual/glibc - sys-devel/flex - sys-devel/bison - sys-apps/texinfo - tetex? ( app-text/tetex )" - -#run-time dependencies, same as DEPEND if RDEPEND isn't defined: -RDEPEND="virtual/glibc" - -src_compile() { - cd src - ./configure --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST} || die - #Note the use of --infodir and --mandir, above. This is to make - # this package FHS 2.2-compliant - #(/usr/share is used for info and man now). - - emake || die - cd ../docs - make boa.html boa.info || die - use tetex && make boa.dvi -} - -src_install () { - # make prefix=${D}/usr install - dosbin src/boa || die - doman docs/boa.8 || die - dodoc docs/boa.html || die - dodoc docs/boa_banner.png || die - doinfo docs/boa.info || die - if [ "`use tetex`" ]; then - dodoc docs/boa.dvi || die - fi - - dodir /var/log/boa || die - dodir /home/httpd/htdocs || die - dodir /home/httpd/cgi-bin || die - dodir /home/httpd/icons || die - - exeinto /usr/lib/boa - doexe src/boa_indexer || die - - exeinto /etc/init.d - newexe ${FILESDIR}/boa.rc6 boa || die - - insinto /etc/boa - insopts -m700 - insopts -m600 - doins ${FILESDIR}/boa.conf || die - doins ${FILESDIR}/mime.types || die - - # make DESTDIR=${D} install || die -} - -pkg_prerm() { - - if [ "$ROOT" = "/" ] && [ -e /dev/shm/.init.d/started/boa ] ; then - /etc/init.d/boa stop - fi - return # dont fail -} - -pkg_preinst() { - - if [ "$ROOT" = "/" ] && [ -e /dev/shm/.init.d/started/boa ] ; then - /etc/init.d/boa stop - fi - return # dont fail -} diff --git a/net-www/boa/boa-0.94.11-r2.ebuild b/net-www/boa/boa-0.94.11-r2.ebuild deleted file mode 100644 index ee7faf98d749..000000000000 --- a/net-www/boa/boa-0.94.11-r2.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2001 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Jon Nelson <jnelson@boa.org> -# /home/cvsroot/gentoo-x86/skel.build,v 1.7 2001/08/25 21:15:08 chadh Exp - -#Source directory; the dir where the sources can be found (automatically -# unpacked) inside ${WORKDIR} -S=${WORKDIR}/${P} - -#Short one-line description -DESCRIPTION="Boa - A very small and very fast http daemon." - -#Point to any required sources; these will be automatically downloaded -# by Portage -SRC_URI="http://www.boa.org/${P}.tar.gz" - -#Homepage, not used by Portage directly but handy for developer reference -HOMEPAGE="http://www.boa.org/" - -#build-time dependencies -DEPEND="virtual/glibc - sys-devel/flex - sys-devel/bison - sys-apps/texinfo - tetex? ( app-text/tetex )" - -#run-time dependencies, same as DEPEND if RDEPEND isn't defined: -RDEPEND="virtual/glibc" - -src_compile() { - cd src - ./configure --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST} || die - #Note the use of --infodir and --mandir, above. This is to make - # this package FHS 2.2-compliant - #(/usr/share is used for info and man now). - - emake || die - cd ../docs - make boa.html boa.info || die - use tetex && make boa.dvi -} - -src_install () { - # make prefix=${D}/usr install - dosbin src/boa || die - doman docs/boa.8 || die - dodoc docs/boa.html || die - dodoc docs/boa_banner.png || die - doinfo docs/boa.info || die - if [ "`use tetex`" ]; then - dodoc docs/boa.dvi || die - fi - - dodir /var/log/boa || die - dodir /home/httpd/htdocs || die - dodir /home/httpd/cgi-bin || die - dodir /home/httpd/icons || die - - exeinto /usr/lib/boa - doexe src/boa_indexer || die - - exeinto /etc/init.d - newexe ${FILESDIR}/boa.rc6 boa || die - - insinto /etc/boa - insopts -m700 - insopts -m600 - doins ${FILESDIR}/boa.conf || die - doins ${FILESDIR}/mime.types || die - - # make DESTDIR=${D} install || die -} - -pkg_prerm() { - - if [ "$ROOT" = "/" ] && [ -e /dev/shm/.init.d/started/boa ] ; then - /etc/init.d/boa stop - fi - return # dont fail -} - -pkg_preinst() { - - if [ "$ROOT" = "/" ] && [ -e /dev/shm/.init.d/started/boa ] ; then - /etc/init.d/boa stop - fi - return # dont fail -} diff --git a/net-www/boa/boa-0.94.11.ebuild b/net-www/boa/boa-0.94.11.ebuild deleted file mode 100644 index 8fc9ae3b4464..000000000000 --- a/net-www/boa/boa-0.94.11.ebuild +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 1999-2001 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Jon Nelson <jnelson@boa.org> -# /home/cvsroot/gentoo-x86/skel.build,v 1.7 2001/08/25 21:15:08 chadh Exp - -#Source directory; the dir where the sources can be found (automatically -# unpacked) inside ${WORKDIR} -S=${WORKDIR}/${P} - -#Short one-line description -DESCRIPTION="Boa - A very small and very fast http daemon." - -#Point to any required sources; these will be automatically downloaded -# by Portage -SRC_URI="http://www.boa.org/${P}.tar.gz" - -#Homepage, not used by Portage directly but handy for developer reference -HOMEPAGE="http://www.boa.org/" - -#build-time dependencies -DEPEND="virtual/glibc - sys-devel/flex - sys-devel/bison - sys-apps/texinfo - tex? ( app-text/tetex )" - -#run-time dependencies, same as DEPEND if RDEPEND isn't defined: -RDEPEND="virtual/glibc" - -src_compile() { - cd src - ./configure --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST} || die - #Note the use of --infodir and --mandir, above. This is to make - # this package FHS 2.2-compliant - #(/usr/share is used for info and man now). - - emake || die - cd ../docs - make boa.html boa.info || die - echo "`use tex`" - if [ ! -z "`use tex`" ]; then - make boa.dvi || die - fi -} - -src_install () { - # make prefix=${D}/usr install - dosbin src/boa || die - doman docs/boa.8 || die - dodoc docs/boa.html || die - dodoc docs/boa_banner.png || die - doinfo docs/boa.info || die - if [ ! -z "`use tex`" ]; then - dodoc docs/boa.dvi || die - fi - - dodir /var/log/boa || die - dodir /home/httpd/html || die - dodir /home/httpd/cgi-bin || die - - exeinto /usr/lib/boa - doexe src/boa_indexer || die - - exeinto /etc/init.d - newexe ${FILESDIR}/boa.rc6 boa || die - - insinto /etc/boa - insopts -m700 - insopts -m600 - doins ${FILESDIR}/boa.conf || die - doins ${FILESDIR}/mime.types || die - - # make DESTDIR=${D} install || die -} - -pkg_prerm() { - - if [ "$ROOT" = "/" ] && [ -e /dev/shm/.init.d/started/boa ] ; then - /etc/init.d/boa stop - fi - return # dont fail -} - -pkg_preinst() { - - if [ "$ROOT" = "/" ] && [ -e /dev/shm/.init.d/started/boa ] ; then - /etc/init.d/boa stop - fi - return # dont fail -} diff --git a/net-www/boa/files/digest-boa-0.94.11 b/net-www/boa/files/digest-boa-0.94.11 deleted file mode 100644 index 6f39b5b8cad2..000000000000 --- a/net-www/boa/files/digest-boa-0.94.11 +++ /dev/null @@ -1 +0,0 @@ -MD5 bcddde841aa11ab619f3cacf2c5ea79b boa-0.94.11.tar.gz 117110 diff --git a/net-www/boa/files/digest-boa-0.94.11-r1 b/net-www/boa/files/digest-boa-0.94.11-r1 deleted file mode 100644 index 6f39b5b8cad2..000000000000 --- a/net-www/boa/files/digest-boa-0.94.11-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 bcddde841aa11ab619f3cacf2c5ea79b boa-0.94.11.tar.gz 117110 diff --git a/net-www/boa/files/digest-boa-0.94.11-r2 b/net-www/boa/files/digest-boa-0.94.11-r2 deleted file mode 100644 index 6f39b5b8cad2..000000000000 --- a/net-www/boa/files/digest-boa-0.94.11-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 bcddde841aa11ab619f3cacf2c5ea79b boa-0.94.11.tar.gz 117110 |