diff options
author | 2001-04-30 11:45:59 +0000 | |
---|---|---|
committer | 2001-04-30 11:45:59 +0000 | |
commit | f945148cab4c08b7a4d18d4460ac09a2ca8179be (patch) | |
tree | e2ab4db6d622c63c7ad489579c014dde740d62a3 /net-www | |
parent | *** empty log message *** (diff) | |
download | historical-f945148cab4c08b7a4d18d4460ac09a2ca8179be.tar.gz historical-f945148cab4c08b7a4d18d4460ac09a2ca8179be.tar.bz2 historical-f945148cab4c08b7a4d18d4460ac09a2ca8179be.zip |
Cleanup
Diffstat (limited to 'net-www')
39 files changed, 0 insertions, 878 deletions
diff --git a/net-www/apache-ssl/apache-ssl-1.3.14.2.7.1-r2.ebuild b/net-www/apache-ssl/apache-ssl-1.3.14.2.7.1-r2.ebuild deleted file mode 100644 index 6ea22ffbdd03..000000000000 --- a/net-www/apache-ssl/apache-ssl-1.3.14.2.7.1-r2.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# 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-www/apache-ssl/apache-ssl-1.3.14.2.7.1-r2.ebuild,v 1.1 2001/01/04 23:02:44 drobbins Exp $ - -A="apache_1.3.14.tar.gz mod_ssl-2.7.1-1.3.14.tar.gz" -S=${WORKDIR}/apache_1.3.14 -DESCRIPTION="The Apache Web Server v1.3.14 with mod_ssl" -SRC_URI="http://httpd.apache.org/dist/apache_1.3.14.tar.gz - ftp://ftp.modssl.org/source/mod_ssl-2.7.1-1.3.14.tar.gz" -HOMEPAGE="http://www.apache.org http://www.modssl.org" - -DEPEND=">=sys-apps/bash-2.04 - >=sys-libs/glibc-2.1.3 - >=sys-libs/db-3.1 - >=dev-libs/openssl-0.9.6" - -src_compile() { - export SSL_BASE=SYSTEM -#I get file locking errors with 2.4.0-test10 thru 12 (everything I've tried) -#so we zap the FLOCK option... -# export EXTRA_CFLAGS="-DUSE_FLOCK_SERIALIZED_ACCEPT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" - export EXTRA_CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" - cd ${S}/../mod_ssl-2.7.1-1.3.14 - try ./configure --with-apache=${S} --with-ssl=SYSTEM - cd ${S} - try ./configure --prefix=/usr/local/httpd --bindir=/usr/bin \ - --sbindir=/usr/sbin --datadir=/usr/local/httpd \ - --sysconfdir=/etc/httpd --libexecdir=/usr/lib/apache \ - --mandir=/usr/man --logfiledir=/var/log/apache --localstatedir=/var/lock \ - --proxycachedir=/var/cache/httpd --includedir=/usr/include/apache \ - --enable-module=all --enable-module=ssl \ - --enable-shared=max --enable-suexec --suexec-caller=wwwrun \ - --suexec-userdir=public_html --suexec-uidmin=96 \ - --suexec-gidmin=96 --suexec-safepath="/bin:/usr/bin" -# --disable-module=auth_dbm" - try make - try make certificate TYPE=dummy -} - -src_install() { - cd ${S} - try make install-quiet root=${D} - - dodoc ABOUT_APACHE Announcement INSTALL* KEYS LICENSE* README* WARNING* - docinto mod_ssl - cd ../mod_ssl-2.7.1-1.3.14 - dodoc ANNOUNCE CHANGES CREDITS INSTALL* LICENSE NEWS README* - dodir /etc/rc.d/init.d - cp ${O}/files/httpd.conf ${D}/etc/httpd - cp ${O}/files/httpd ${D}/etc/rc.d/init.d -} - -pkg_config() { - - source ${ROOT}/var/db/pkg/install.config - source ${ROOT}/etc/rc.d/config/functions - - if [ "$ServerName" = "" ] - then - ServerName=`uname -n` - fi - if [ "$ServerAdmin" = "" ] - - then - ServerAdmin="webmaster\@$ServerName" - fi - - # Make apache start at boot - ${ROOT}/usr/sbin/rc-update add httpd - - # Set ServerName and ServerAdmin - einfo "Setting Servername to $ServerName..." - cp ${ROOT}/etc/httpd/httpd.conf ${ROOT}/etc/httpd/httpd.conf.orig - sed -e "s/^\#ServerName.*/ServerName $ServerName/" \ - -e "s/^ServerName.*/ServerName $ServerName/" \ - -e "s/^ServerAdmin.*/ServerAdmin $ServerAdmin/" \ - ${ROOT}/etc/httpd/httpd.conf.orig > ${ROOT}/etc/httpd/httpd.conf - -} - -pkg_prerm() { - - source ${ROOT}/etc/rc.d/config/functions - if [ "$ROOT" = "/" ] - then - if [ -f /var/run/httpd.pid ] - then - einfo "Stopping running daemon..." - /etc/rc.d/init.d/httpd stop - fi - fi - -} - diff --git a/net-www/apache-ssl/apache-ssl-1.3.17.2.8.0.ebuild b/net-www/apache-ssl/apache-ssl-1.3.17.2.8.0.ebuild deleted file mode 100644 index 74277a8d8b17..000000000000 --- a/net-www/apache-ssl/apache-ssl-1.3.17.2.8.0.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# 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-www/apache-ssl/apache-ssl-1.3.17.2.8.0.ebuild,v 1.1 2001/01/31 00:14:25 achim Exp $ - -A="apache_1.3.17.tar.gz mod_ssl-2.8.0-1.3.17.tar.gz" -S=${WORKDIR}/apache_1.3.17 -DESCRIPTION="The Apache Web Server v1.3.17 with mod_ssl" -SRC_URI="http://httpd.apache.org/dist/apache_1.3.17.tar.gz - ftp://ftp.modssl.org/source/mod_ssl-2.8.0-1.3.17.tar.gz" -HOMEPAGE="http://www.apache.org http://www.modssl.org" - -DEPEND=">=sys-apps/bash-2.04 - >=sys-libs/glibc-2.1.3 - >=sys-libs/db-3.1 - >=dev-libs/openssl-0.9.6" - -src_compile() { - export SSL_BASE=SYSTEM -#I get file locking errors with 2.4.0-test10 thru 12 (everything I've tried) -#so we zap the FLOCK option... -# export EXTRA_CFLAGS="-DUSE_FLOCK_SERIALIZED_ACCEPT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" - export EXTRA_CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" - cd ${S}/../mod_ssl-2.8.0-1.3.17 - try ./configure --with-apache=${S} --with-ssl=SYSTEM - cd ${S} - try ./configure --prefix=/usr/local/httpd --bindir=/usr/bin \ - --sbindir=/usr/sbin --datadir=/usr/local/httpd \ - --sysconfdir=/etc/httpd --libexecdir=/usr/lib/apache \ - --mandir=/usr/man --logfiledir=/var/log/apache --localstatedir=/var/lock \ - --proxycachedir=/var/cache/httpd --includedir=/usr/include/apache \ - --enable-module=all --enable-module=ssl \ - --enable-shared=max --enable-suexec --suexec-caller=wwwrun \ - --suexec-userdir=public_html --suexec-uidmin=96 \ - --suexec-gidmin=96 --suexec-safepath="/bin:/usr/bin" -# --disable-module=auth_dbm" - try make - try make certificate TYPE=dummy -} - -src_install() { - cd ${S} - try make install-quiet root=${D} - - dodoc ABOUT_APACHE Announcement INSTALL* KEYS LICENSE* README* WARNING* - docinto mod_ssl - cd ../mod_ssl-2.8.0-1.3.17 - dodoc ANNOUNCE CHANGES CREDITS INSTALL* LICENSE NEWS README* - dodir /etc/rc.d/init.d - cp ${O}/files/httpd.conf ${D}/etc/httpd - cp ${O}/files/httpd ${D}/etc/rc.d/init.d -} - -pkg_config() { - - source ${ROOT}/var/db/pkg/install.config - source ${ROOT}/etc/rc.d/config/functions - - if [ "$ServerName" = "" ] - then - ServerName=`uname -n` - fi - if [ "$ServerAdmin" = "" ] - - then - ServerAdmin="webmaster\@$ServerName" - fi - - # Make apache start at boot - ${ROOT}/usr/sbin/rc-update add httpd - - # Set ServerName and ServerAdmin - einfo "Setting Servername to $ServerName..." - cp ${ROOT}/etc/httpd/httpd.conf ${ROOT}/etc/httpd/httpd.conf.orig - sed -e "s/^\#ServerName.*/ServerName $ServerName/" \ - -e "s/^ServerName.*/ServerName $ServerName/" \ - -e "s/^ServerAdmin.*/ServerAdmin $ServerAdmin/" \ - ${ROOT}/etc/httpd/httpd.conf.orig > ${ROOT}/etc/httpd/httpd.conf - -} - -pkg_prerm() { - - source ${ROOT}/etc/rc.d/config/functions - if [ "$ROOT" = "/" ] - then - if [ -f /var/run/httpd.pid ] - then - einfo "Stopping running daemon..." - /etc/rc.d/init.d/httpd stop - fi - fi - -} - diff --git a/net-www/apache-ssl/files/digest-apache-ssl-1.3.14.2.7.1 b/net-www/apache-ssl/files/digest-apache-ssl-1.3.14.2.7.1 deleted file mode 100644 index 53b0c5cf8cf4..000000000000 --- a/net-www/apache-ssl/files/digest-apache-ssl-1.3.14.2.7.1 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 34803e3d83a0a9ed981b571657b33109 apache_1.3.14.tar.gz -MD5 99e05bd4ab7bd5c72fbb70bd8cfbf283 mod_ssl-2.7.1-1.3.14.tar.gz diff --git a/net-www/apache-ssl/files/digest-apache-ssl-1.3.14.2.7.1-r1 b/net-www/apache-ssl/files/digest-apache-ssl-1.3.14.2.7.1-r1 deleted file mode 100644 index 53b0c5cf8cf4..000000000000 --- a/net-www/apache-ssl/files/digest-apache-ssl-1.3.14.2.7.1-r1 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 34803e3d83a0a9ed981b571657b33109 apache_1.3.14.tar.gz -MD5 99e05bd4ab7bd5c72fbb70bd8cfbf283 mod_ssl-2.7.1-1.3.14.tar.gz diff --git a/net-www/apache-ssl/files/digest-apache-ssl-1.3.14.2.7.1-r2 b/net-www/apache-ssl/files/digest-apache-ssl-1.3.14.2.7.1-r2 deleted file mode 100644 index 53b0c5cf8cf4..000000000000 --- a/net-www/apache-ssl/files/digest-apache-ssl-1.3.14.2.7.1-r2 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 34803e3d83a0a9ed981b571657b33109 apache_1.3.14.tar.gz -MD5 99e05bd4ab7bd5c72fbb70bd8cfbf283 mod_ssl-2.7.1-1.3.14.tar.gz diff --git a/net-www/apache-ssl/files/digest-apache-ssl-1.3.17.2.8.0 b/net-www/apache-ssl/files/digest-apache-ssl-1.3.17.2.8.0 deleted file mode 100644 index 107bf1e63ab0..000000000000 --- a/net-www/apache-ssl/files/digest-apache-ssl-1.3.17.2.8.0 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 bcb3c0db956709ad8f04655fd75621e6 apache_1.3.17.tar.gz -MD5 3a158f3b5442cb8b7bee4a55851c3794 mod_ssl-2.8.0-1.3.17.tar.gz diff --git a/net-www/cocoon/cocoon-1.7.4.ebuild b/net-www/cocoon/cocoon-1.7.4.ebuild deleted file mode 100644 index 381a1d462f1a..000000000000 --- a/net-www/cocoon/cocoon-1.7.4.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# 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-www/cocoon/cocoon-1.7.4.ebuild,v 1.4 2000/11/02 08:31:53 achim Exp $ - -P=cocoon-1.7.4 -A=Cocoon-1.7.4.tar.gz -S=${WORKDIR}/${P} -DESCRIPTION="A Web Publishing Framework for Apache" -SRC_URI="http://xml.apache.org/cocoon/dist/"${A} -HOMEPAGE="http://xml.apache.org/cocoon/" - -DEPEND=">=dev-lang/jdk-1.2.2 - >=dev-java/fesi-1 - >=dev-java/xt-1 - >=dev-java/jndi-1.2.1" - -src_unpack() { - unpack ${A} -} - -src_compile() { - CLASSPATH=/opt/java/src.jar:/opt/java/lib/tools.jar - CLASSPATH=${CLASSPATH}:/usr/lib/java/jndi.jar - CLASSPATH=${CLASSPATH}:/usr/lib/java/xt.jar:/usr/lib/java/sax.jar - CLASSPATH=${CLASSPATH}:/usr/lib/java/fesi.jar - export CLASSPATH - export JAVA_HOME=/opt/java - cd ${S} - sh build.sh -} - -src_install() { - cd ${S} - insinto /usr/lib/java - for i in xerces_1_0_3 xalan_1_0_1 fop_0_12_1 \ - servlet_2_2 stylebook-1.0-b2 - do - doins lib/$i.jar - done - doins build/cocoon.jar - insinto /opt/tomcat/webapps/ROOT - doins ${O}/files/cocoon.properties - dodoc README LICENSE - dodir /usr/doc/${PF}/html - cp -a docs/* ${D}/usr/doc/${PF}/html - find ${D}/usr/doc/${PF}/html -type f -exec gzip -9 {} \; -} - - - - diff --git a/net-www/cocoon/files/digest-cocoon-1.7.4 b/net-www/cocoon/files/digest-cocoon-1.7.4 deleted file mode 100644 index b0b3e8ebdfd2..000000000000 --- a/net-www/cocoon/files/digest-cocoon-1.7.4 +++ /dev/null @@ -1 +0,0 @@ -MD5 184467d297cf7e876a54644af3cfe39f Cocoon-1.7.4.tar.gz diff --git a/net-www/cvsweb/files/digest-cvsweb-1.93 b/net-www/cvsweb/files/digest-cvsweb-1.93 deleted file mode 100644 index 6ad4a6f28a4e..000000000000 --- a/net-www/cvsweb/files/digest-cvsweb-1.93 +++ /dev/null @@ -1 +0,0 @@ -MD5 9d97d08f3649c4f972d0bfa996630eef cvsweb-1.93.tar.gz diff --git a/net-www/htdig/files/digest-htdig-3.1.5 b/net-www/htdig/files/digest-htdig-3.1.5 deleted file mode 100644 index 360405ad2d8b..000000000000 --- a/net-www/htdig/files/digest-htdig-3.1.5 +++ /dev/null @@ -1 +0,0 @@ -MD5 cbf4a0f2b703d9822db555a14dc96ed3 htdig-3.1.5.tar.gz diff --git a/net-www/htdig/htdig-3.1.5.ebuild b/net-www/htdig/htdig-3.1.5.ebuild deleted file mode 100644 index 6b99cd5775ce..000000000000 --- a/net-www/htdig/htdig-3.1.5.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# 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-www/htdig/htdig-3.1.5.ebuild,v 1.4 2000/11/05 12:59:09 achim Exp $ - -A=${P}.tar.gz -S=${WORKDIR}/${P} -DESCRIPTION="WWW index and searching system" -SRC_URI="http://www.htdig.org/files/${A}" -HOMEPAGE="http://www.htdig.org" - -DEPEND=">=sys-apps/bash-2.04 - >=sys-devel/gcc-2.95.2 - >=sys-libs/glibc-2.1.3 - >=sys-libs/zlib-1.1.3" - -src_unpack() { - unpack ${A} - cp ${FILESDIR}/CONFIG.in ${S} -} - -src_compile() { - - cd ${S} - try ./configure --prefix=/usr --host=${CHOST} \ - --with-cgi-bin-dir=/usr/local/httpd/cgi-bin \ - --with-image-dir=/usr/local/httpd/images/htdig \ - --with-search-dir=/usr/local/httpd/htdocs/htdig - try make - -} - -src_install () { - - cd ${S} - try make DESTDIR=${D} CGIBIN_DIR=${D}/usr/local/httpd/cgi-bin \ - SEARCH_DIR=${D}/usr/local/httpd/htdocs/htdig \ - IMAGE_DIR=${D}/usr/local/httpd/htdocs/images/htdig \ - exec_prefix=${D}/usr install - dosed /etc/httpd/htdig.conf /usr/bin/rundig - dodoc ChangeLog COPYING README - -} - diff --git a/net-www/jakarta/files/digest-jakarta-3.1-r1 b/net-www/jakarta/files/digest-jakarta-3.1-r1 deleted file mode 100644 index 9b6569885211..000000000000 --- a/net-www/jakarta/files/digest-jakarta-3.1-r1 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 32025cd19b28c416532eb17e7cda1218 jakarta-tomcat.tar.gz -MD5 f3c6f2df40562b36eed067a8b6580526 jakarta-ant.tar.gz diff --git a/net-www/jakarta/jakarta-3.1-r1.ebuild b/net-www/jakarta/jakarta-3.1-r1.ebuild deleted file mode 100644 index 90905dd64884..000000000000 --- a/net-www/jakarta/jakarta-3.1-r1.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# 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-www/jakarta/jakarta-3.1-r1.ebuild,v 1.6 2001/01/05 07:58:48 achim Exp $ - -P=jakarta-3.1 -A="jakarta-tomcat.tar.gz jakarta-ant.tar.gz" -S=${WORKDIR} -DESCRIPTION="Apache Servlet Engine" -SRC_URI="http://jakarta.apache.org/builds/tomcat/release/v3.1/src/jakarta-tomcat.tar.gz - http://jakarta.apache.org/builds/tomcat/release/v3.1/src/jakarta-ant.tar.gz" -HOMEPAGE="http://jakarta.apache.org" - -DEPEND=">=sys-apps/bash-2.04 - >=sys-libs/glibc-2.1.3 - >=dev-lang/jdk-1.2 - >=net-www/apache-ssl-1.3" - -src_unpack() { - unpack ${A} -} - -src_compile() { - export CLASSPATH=/opt/java/src.jar:/opt/java/lib/tools.jar - - echo "Building ant..." - cd ${S}/jakarta-ant - ./bootstrap.sh - echo "Building tomcat..." - cd ${S}/jakarta-tomcat - ./build.sh - cd src/native/apache/jserv - apxs -c mod_jserv.c jserv*.c - cd ${S}/build/tomcat/classes - jar -cf tomcat.jar javax org - rm -rf javax - rm -rf org -} - -src_install() { - cp -a ${S}/build/tomcat ${D}/opt - insinto /opt/tomcat/lib - doins ${S}/build/tomcat/classes/tomcat.jar - rm -rf ${D}/opt/tomcat/classes - insinto /usr/lib/apache - doins ${S}/jakarta-tomcat/src/native/apache/jserv/mod_jserv.so - insinto /etc/httpd - doins ${O}/files/tomcat.conf - insinto /etc/rc.d/init.d - insopts -m755 - doins ${O}/files/jakarta - #insinto /opt/tomcat/conf - #doins ${O}/files/web.xml - - cd ${S}/jakarta-tomcat - dodoc BUGS LICENSE README RELEASE-* TODO etc/*.txt src/doc/faq src/doc/readme - docinto html - dodoc *.html etc/*.html - docinto html/guide - dodoc src/doc/uguide/*.html - dodoc src/doc/uguide/*.css - docinto html/guide/images - dodoc src/doc/uguide/images/*.gif - dodir /usr/local/httpd/logs - - -} - -pkg_config() { - - einfo "Activating Servlet Engine..." - ${ROOT}/usr/sbin/rc-update add jakarta -} - - - diff --git a/net-www/links/files/digest-links-0.95 b/net-www/links/files/digest-links-0.95 deleted file mode 100644 index 7df1cdb5be1e..000000000000 --- a/net-www/links/files/digest-links-0.95 +++ /dev/null @@ -1 +0,0 @@ -MD5 fcc0a036f68d76350d2723f5bb7f1a84 links-0.95.tar.gz diff --git a/net-www/links/links-0.95.ebuild b/net-www/links/links-0.95.ebuild deleted file mode 100644 index 9ba89f4da901..000000000000 --- a/net-www/links/links-0.95.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Ryan Tolboom <ryan@intphsys.com> - -S=${WORKDIR}/links-0.95 -SRC_URI="http://artax.karlin.mff.cuni.cz/~mikulas/links/download/links-0.95.tar.gz" - -HOMEPAGE="http://artax.karlin.mff.cuni.cz/~mikulas/links" - -DESCRIPTION="A links like console-based web browser" - -DEPEND=">=sys-libs/glibc-2.1.3 - >=sys-libs/gpm-1.19.3 - >=sys-libs/ncurses-5.1 - >=dev-libs/openssl-0.9.6" - -src_compile() { - - try ./configure --prefix=/usr --enable-ssl - try make - -} - - -src_install() { - - try make DESTDIR=${D} install - - dodoc README SITES NEWS AUTHORS COPYING BUGS TODO - -} diff --git a/net-www/mozilla/files/digest-mozilla-0.7 b/net-www/mozilla/files/digest-mozilla-0.7 deleted file mode 100644 index bf9bb2860bc4..000000000000 --- a/net-www/mozilla/files/digest-mozilla-0.7 +++ /dev/null @@ -1 +0,0 @@ -MD5 d945e4420ab6f0b7097b040770bd9ee6 mozilla-source-0.7.tar.gz diff --git a/net-www/mozilla/files/digest-mozilla-0.8 b/net-www/mozilla/files/digest-mozilla-0.8 deleted file mode 100644 index fba5e15e9e5d..000000000000 --- a/net-www/mozilla/files/digest-mozilla-0.8 +++ /dev/null @@ -1 +0,0 @@ -MD5 192d9f44004b19dffb4e1e8ba28d8736 mozilla-source-0.8.tar.gz diff --git a/net-www/mozilla/files/digest-mozilla-0.8-r1 b/net-www/mozilla/files/digest-mozilla-0.8-r1 deleted file mode 100644 index fba5e15e9e5d..000000000000 --- a/net-www/mozilla/files/digest-mozilla-0.8-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 192d9f44004b19dffb4e1e8ba28d8736 mozilla-source-0.8.tar.gz diff --git a/net-www/mozilla/files/digest-mozilla-0.8-r2 b/net-www/mozilla/files/digest-mozilla-0.8-r2 deleted file mode 100644 index fba5e15e9e5d..000000000000 --- a/net-www/mozilla/files/digest-mozilla-0.8-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 192d9f44004b19dffb4e1e8ba28d8736 mozilla-source-0.8.tar.gz diff --git a/net-www/mozilla/files/digest-mozilla-0.8.1 b/net-www/mozilla/files/digest-mozilla-0.8.1 deleted file mode 100644 index 1f66125c9c87..000000000000 --- a/net-www/mozilla/files/digest-mozilla-0.8.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 04c6fbb5dd01ba68687ea2dd95195451 mozilla-source-0.8.1.tar.gz diff --git a/net-www/mozilla/files/digest-mozilla-0.8.1-r1 b/net-www/mozilla/files/digest-mozilla-0.8.1-r1 deleted file mode 100644 index 1f66125c9c87..000000000000 --- a/net-www/mozilla/files/digest-mozilla-0.8.1-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 04c6fbb5dd01ba68687ea2dd95195451 mozilla-source-0.8.1.tar.gz diff --git a/net-www/mozilla/files/digest-mozilla-milestone-18 b/net-www/mozilla/files/digest-mozilla-milestone-18 deleted file mode 100644 index 085c07fe9f42..000000000000 --- a/net-www/mozilla/files/digest-mozilla-milestone-18 +++ /dev/null @@ -1 +0,0 @@ -MD5 532934635ad426255036ee070bad03c8 mozilla-source-M18.tar.gz diff --git a/net-www/mozilla/mozilla-0.7.ebuild b/net-www/mozilla/mozilla-0.7.ebuild deleted file mode 100644 index 1f2b472ef741..000000000000 --- a/net-www/mozilla/mozilla-0.7.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# 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-www/mozilla/mozilla-0.7.ebuild,v 1.1 2001/01/30 00:33:06 achim Exp $ - -A=mozilla-source-${PV}.tar.gz -S=${WORKDIR}/mozilla -DESCRIPTION="" -SRC_URI="ftp://ftp.mozilla.org/pub/mozilla/releases/mozilla${PV}/src/${A}" -HOMEPAGE="http://www.mozilla.org" -PROVIDE="virtual/x11-web-browser" - -DEPEND=">=gnome-base/ORBit-0.5.6 - >=x11-libs/gtk+-1.2.8 - >=sys-libs/zlib-1.1.3 - >=media-libs/jpeg-6b - >=media-libs/libpng-1.0.7" - -src_compile() { - - cd ${S} - try ./configure --prefix=/opt/mozilla --host=${CHOST} \ - --with-gtk -enable-mathml --enable-svg - try make - -} - -src_install () { - - cd ${S} - export MOZILLA_OFFICIAL=1 - export BUILD_OFFICIAL=1 - cd ${S}/xpinstall/packager - try make - dodir /opt - tar xzf ${S}/dist/mozilla-i686-pc-linux-gnu.tar.gz -C ${D}/opt - mv ${D}/opt/package ${D}/opt/mozilla - dodoc LEGAL LICENSE README/mozilla/README* - - -} - diff --git a/net-www/mozilla/mozilla-0.8-r1.ebuild b/net-www/mozilla/mozilla-0.8-r1.ebuild deleted file mode 100644 index 31b5f31c5ab4..000000000000 --- a/net-www/mozilla/mozilla-0.8-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# 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-www/mozilla/mozilla-0.8-r1.ebuild,v 1.1 2001/03/06 06:20:41 achim Exp $ - -A=mozilla-source-${PV}.tar.gz -S=${WORKDIR}/mozilla -DESCRIPTION="" -SRC_URI="ftp://ftp.mozilla.org/pub/mozilla/releases/mozilla${PV}/src/${A}" -HOMEPAGE="http://www.mozilla.org" -PROVIDE="virtual/x11-web-browser" - -DEPEND=">=gnome-base/ORBit-0.5.7 - >=x11-libs/gtk+-1.2.9 - >=sys-libs/zlib-1.1.3 - >=media-libs/jpeg-6b - >=media-libs/libpng-1.0.9" - -src_compile() { - - try ./configure --prefix=/opt/mozilla --host=${CHOST} \ - --with-gtk -enable-mathml --enable-svg - try make - -} - -src_install () { - - export MOZILLA_OFFICIAL=1 - export BUILD_OFFICIAL=1 - cd ${S}/xpinstall/packager - try make - dodir /opt - tar xzf ${S}/dist/mozilla-i686-pc-linux-gnu.tar.gz -C ${D}/opt - mv ${D}/opt/package ${D}/opt/mozilla - insinto /opt/mozilla/include - doins ${S}/include/*.h - exeinto /usr/bin - doexe ${FILESDIR}/mozilla - dodoc LEGAL LICENSE README/mozilla/README* - - -} - diff --git a/net-www/mozilla/mozilla-0.8-r2.ebuild b/net-www/mozilla/mozilla-0.8-r2.ebuild deleted file mode 100644 index 8707aa04b100..000000000000 --- a/net-www/mozilla/mozilla-0.8-r2.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# 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-www/mozilla/mozilla-0.8-r2.ebuild,v 1.4 2001/03/09 10:26:59 achim Exp $ - -A=mozilla-source-${PV}.tar.gz -S=${WORKDIR}/mozilla -DESCRIPTION="" -SRC_URI="ftp://ftp.mozilla.org/pub/mozilla/releases/mozilla${PV}/src/${A}" -HOMEPAGE="http://www.mozilla.org" -PROVIDE="virtual/x11-web-browser" - -DEPEND=">=gnome-base/ORBit-0.5.7 - >=x11-libs/gtk+-1.2.9 - >=sys-libs/zlib-1.1.3 - >=media-libs/jpeg-6b - >=media-libs/libpng-1.0.9" - -src_compile() { - - try ./configure --prefix=/opt/mozilla --host=${CHOST} \ - --with-gtk --disable-tests --disable-debug - try make - -} - -src_install () { - - dodir /opt/mozilla/include/{private,obsolete} - cd dist/include - cp -f *.h ${D}/opt/mozilla/include - cp -f obsolete/*.h ${D}/opt/mozilla/include/obsolete - cp -f private/*.h ${D}/opt/mozilla/include/private - - export MOZILLA_OFFICIAL=1 - export BUILD_OFFICIAL=1 - cd ${S}/xpinstall/packager - try make - dodir /opt - tar xzf ${S}/dist/mozilla-i686-pc-linux-gnu.tar.gz -C ${D}/opt - mv ${D}/opt/package ${D}/opt/mozilla - - exeinto /usr/bin - doexe ${FILESDIR}/mozilla - insinto /etc/env.d - doins ${FILESDIR}/10mozilla - dodoc LEGAL LICENSE README/mozilla/README* - - -} - diff --git a/net-www/mozilla/mozilla-0.8.1-r1.ebuild b/net-www/mozilla/mozilla-0.8.1-r1.ebuild deleted file mode 100644 index ebc8e82c09b3..000000000000 --- a/net-www/mozilla/mozilla-0.8.1-r1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# 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-www/mozilla/mozilla-0.8.1-r1.ebuild,v 1.1 2001/04/25 23:15:09 achim Exp $ - -A=mozilla-source-${PV}.tar.gz -S=${WORKDIR}/mozilla -DESCRIPTION="" -SRC_URI="ftp://ftp.mozilla.org/pub/mozilla/releases/mozilla${PV}/src/${A}" -HOMEPAGE="http://www.mozilla.org" -PROVIDE="virtual/x11-web-browser" - -DEPEND=">=gnome-base/ORBit-0.5.7 - >=x11-libs/gtk+-1.2.9 - >=sys-libs/zlib-1.1.3 - >=media-libs/jpeg-6b - >=media-libs/libpng-1.0.9" - -src_compile() { - - try ./configure --prefix=/opt/mozilla --host=${CHOST} \ - --with-gtk --disable-tests --disable-debug - try make - try ./configure --prefix=/opt/mozilla --host=${CHOST} \ - --with-gtk --disable-tests --disable-debug - try make BUILD_MODULES=psm -} - -src_install () { - - dodir /opt/mozilla/include/{private,obsolete} - cd dist/include - cp -f *.h ${D}/opt/mozilla/include - cp -f obsolete/*.h ${D}/opt/mozilla/include/obsolete - cp -f private/*.h ${D}/opt/mozilla/include/private - - export MOZILLA_OFFICIAL=1 - export BUILD_OFFICIAL=1 - cd ${S}/xpinstall/packager - try make - dodir /opt - tar xzf ${S}/dist/mozilla-i686-pc-linux-gnu.tar.gz -C ${D}/opt - mv ${D}/opt/package ${D}/opt/mozilla - - exeinto /usr/bin - doexe ${FILESDIR}/mozilla - insinto /etc/env.d - doins ${FILESDIR}/10mozilla - dodoc LEGAL LICENSE README/mozilla/README* - - -} - diff --git a/net-www/mozilla/mozilla-0.8.1.ebuild b/net-www/mozilla/mozilla-0.8.1.ebuild deleted file mode 100644 index ecf7bbd3fa83..000000000000 --- a/net-www/mozilla/mozilla-0.8.1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# 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-www/mozilla/mozilla-0.8.1.ebuild,v 1.1 2001/03/30 04:15:40 achim Exp $ - -A=mozilla-source-${PV}.tar.gz -S=${WORKDIR}/mozilla -DESCRIPTION="" -SRC_URI="ftp://ftp.mozilla.org/pub/mozilla/releases/mozilla${PV}/src/${A}" -HOMEPAGE="http://www.mozilla.org" -PROVIDE="virtual/x11-web-browser" - -DEPEND=">=gnome-base/ORBit-0.5.7 - >=x11-libs/gtk+-1.2.9 - >=sys-libs/zlib-1.1.3 - >=media-libs/jpeg-6b - >=media-libs/libpng-1.0.9" - -src_compile() { - - try ./configure --prefix=/opt/mozilla --host=${CHOST} \ - --with-gtk --disable-tests --disable-debug - try make - -} - -src_install () { - - dodir /opt/mozilla/include/{private,obsolete} - cd dist/include - cp -f *.h ${D}/opt/mozilla/include - cp -f obsolete/*.h ${D}/opt/mozilla/include/obsolete - cp -f private/*.h ${D}/opt/mozilla/include/private - - export MOZILLA_OFFICIAL=1 - export BUILD_OFFICIAL=1 - cd ${S}/xpinstall/packager - try make - dodir /opt - tar xzf ${S}/dist/mozilla-i686-pc-linux-gnu.tar.gz -C ${D}/opt - mv ${D}/opt/package ${D}/opt/mozilla - - exeinto /usr/bin - doexe ${FILESDIR}/mozilla - insinto /etc/env.d - doins ${FILESDIR}/10mozilla - dodoc LEGAL LICENSE README/mozilla/README* - - -} - diff --git a/net-www/mozilla/mozilla-0.8.ebuild b/net-www/mozilla/mozilla-0.8.ebuild deleted file mode 100644 index 39c129b8285b..000000000000 --- a/net-www/mozilla/mozilla-0.8.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# 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-www/mozilla/mozilla-0.8.ebuild,v 1.2 2001/02/21 20:33:34 pete Exp $ - -A=mozilla-source-${PV}.tar.gz -S=${WORKDIR}/mozilla -DESCRIPTION="" -SRC_URI="ftp://ftp.mozilla.org/pub/mozilla/releases/mozilla${PV}/src/${A}" -HOMEPAGE="http://www.mozilla.org" -PROVIDE="virtual/x11-web-browser" - -DEPEND=">=gnome-base/ORBit-0.5.6 - >=x11-libs/gtk+-1.2.8 - >=sys-libs/zlib-1.1.3 - >=media-libs/jpeg-6b - >=media-libs/libpng-1.0.7" - -src_compile() { - cd ${S} - if [ "${DEBUG}" ] - then - try ./configure --prefix=/opt/mozilla --host=${CHOST} \ - --with-gtk -enable-mathml --enable-svg - else - try ./configure --prefix=/opt/mozilla --host=${CHOST} \ - --with-gtk -enable-mathml --enable-svg --disable-debug - fi - try make -} - -src_install () { - - cd ${S} - export MOZILLA_OFFICIAL=1 - export BUILD_OFFICIAL=1 - cd ${S}/xpinstall/packager - try make - dodir /opt - tar xzf ${S}/dist/mozilla-i686-pc-linux-gnu.tar.gz -C ${D}/opt - mv ${D}/opt/package ${D}/opt/mozilla - dodoc LEGAL LICENSE README/mozilla/README* - - -} - diff --git a/net-www/netscape/files/digest-navigator-4.76 b/net-www/netscape/files/digest-navigator-4.76 deleted file mode 100644 index bdcf7d2f2f61..000000000000 --- a/net-www/netscape/files/digest-navigator-4.76 +++ /dev/null @@ -1 +0,0 @@ -MD5 dc0c4c4cfad4d7c2fc81a2d98f021090 navigator-v476-us.x86-unknown-linux2.2.tar.gz diff --git a/net-www/netscape/files/digest-navigator-4.76-r1 b/net-www/netscape/files/digest-navigator-4.76-r1 deleted file mode 100644 index bdcf7d2f2f61..000000000000 --- a/net-www/netscape/files/digest-navigator-4.76-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 dc0c4c4cfad4d7c2fc81a2d98f021090 navigator-v476-us.x86-unknown-linux2.2.tar.gz diff --git a/net-www/netscape/files/digest-netscape-4.76 b/net-www/netscape/files/digest-netscape-4.76 deleted file mode 100644 index df1848676858..000000000000 --- a/net-www/netscape/files/digest-netscape-4.76 +++ /dev/null @@ -1 +0,0 @@ -MD5 720de067072ff74d1e0c4aaa47eeae5c communicator-v476-us.x86-unknown-linux2.2.tar.gz diff --git a/net-www/netscape/files/digest-netscape-4.76-r1 b/net-www/netscape/files/digest-netscape-4.76-r1 deleted file mode 100644 index df1848676858..000000000000 --- a/net-www/netscape/files/digest-netscape-4.76-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 720de067072ff74d1e0c4aaa47eeae5c communicator-v476-us.x86-unknown-linux2.2.tar.gz diff --git a/net-www/netscape/netscape-4.76-r1.ebuild b/net-www/netscape/netscape-4.76-r1.ebuild deleted file mode 100644 index e30adbe447a3..000000000000 --- a/net-www/netscape/netscape-4.76-r1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# 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-www/netscape/netscape-4.76-r1.ebuild,v 1.1 2001/01/15 16:20:54 achim Exp $ - -P=netscape-4.76 -A=communicator-v476-us.x86-unknown-linux2.2.tar.gz -S=${WORKDIR}/communicator-v476.x86-unknown-linux2.2 -DESCRIPTION="Netscape Communicator 4.76" -SRC_URI="ftp://ftp.netscape.com/pub/communicator/english/4.76/unix/supported/linux22/complete_install/"${A} -HOMEPAGE="http://developer.netscape.com/support/index.html" - -RDEPEND=">=sys-libs/lib-compat-1.0" -PROVIDE="virtual/x11-web-browser" - -src_install() { - cd ${S} - dodir /opt/netscape - dodir /opt/netscape/java/classes - dodir /usr/X11R6/bin - dodoc README.install - cd ${D}/opt/netscape - gzip -dc ${S}/netscape-v476.nif | tar xf - - gzip -dc ${S}/nethelp-v476.nif | tar xf - - gzip -dc ${S}/spellchk-v476.nif | tar xf - - cp ${S}/*.jar ${D}/opt/netscape/java/classes - cp ${O}/files/netscape ${D}/usr/X11R6/bin/netscape - rm ${D}/opt/netscape/netscape-dynMotif - rm ${D}/opt/netscape/libnullplugin-dynMotif.so - insinto /usr/X11R6/bin - doins ${FILESDIR}/netscape - chmod +x ${D}/usr/X11R6/bin/netscape -} - diff --git a/net-www/netscape/netscape-4.76.ebuild b/net-www/netscape/netscape-4.76.ebuild deleted file mode 100644 index 0c39d0216ef3..000000000000 --- a/net-www/netscape/netscape-4.76.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# 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-www/netscape/netscape-4.76.ebuild,v 1.2 2000/12/25 16:17:42 achim Exp $ - -P=netscape-4.76 -A=communicator-v476-us.x86-unknown-linux2.2.tar.gz -S=${WORKDIR}/communicator-v476.x86-unknown-linux2.2 -DESCRIPTION="Netscape Communicator 4.76" -SRC_URI="ftp://ftp.netscape.com/pub/communicator/english/4.76/unix/supported/linux22/complete_install/"${A} -HOMEPAGE="http://developer.netscape.com/support/index.html" - -DEPEND="" - -src_install() { - cd ${S} - dodir /opt/netscape - dodir /opt/netscape/java/classes - dodir /usr/X11R6/bin - dodoc README.install - cd ${D}/opt/netscape - gzip -dc ${S}/netscape-v476.nif | tar xf - - gzip -dc ${S}/nethelp-v476.nif | tar xf - - gzip -dc ${S}/spellchk-v476.nif | tar xf - - cp ${S}/*.jar ${D}/opt/netscape/java/classes - cp ${O}/files/netscape ${D}/usr/X11R6/bin/netscape - rm ${D}/opt/netscape/netscape-dynMotif - rm ${D}/opt/netscape/libnullplugin-dynMotif.so - insinto /usr/X11R6/bin - doins ${FILESDIR}/netscape - chmod +x ${D}/usr/X11R6/bin/netscape -} - diff --git a/net-www/prozilla/files/digest-prozilla-1.3.2 b/net-www/prozilla/files/digest-prozilla-1.3.2 deleted file mode 100644 index 9170ea38b382..000000000000 --- a/net-www/prozilla/files/digest-prozilla-1.3.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 6b3c185bdc10f68d3fbc71d00a4ca0b2 prozilla-1.3.2.tar.gz diff --git a/net-www/prozilla/files/digest-prozilla-1.3.3 b/net-www/prozilla/files/digest-prozilla-1.3.3 deleted file mode 100644 index 6a5d565dc377..000000000000 --- a/net-www/prozilla/files/digest-prozilla-1.3.3 +++ /dev/null @@ -1 +0,0 @@ -MD5 6e0f2c6d4260f0a3b126cc9bb761e171 prozilla-1.3.3.tar.gz diff --git a/net-www/prozilla/prozilla-1.3.2.ebuild b/net-www/prozilla/prozilla-1.3.2.ebuild deleted file mode 100644 index c9a8041ab964..000000000000 --- a/net-www/prozilla/prozilla-1.3.2.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Your Name <your email> -# $Header: /var/cvsroot/gentoo-x86/net-www/prozilla/prozilla-1.3.2.ebuild,v 1.1 2001/02/21 09:52:57 achim Exp $ - -A=${P}.tar.gz -S=${WORKDIR}/${P} -DESCRIPTION="A download manager" -SRC_URI="http://www.lintux.cx/~kalum/${A}" -HOMEPAGE="http://www.lintux.cx/~kalum/prozilla.html" - -DEPEND="virtual/glibc - >=sys-libs/ncurses-5.2" - -src_compile() { - - try ./configure --prefix=/usr --mandir=/usr/share/man --host=${CHOST} - try make - -} - -src_install () { - - try make DESTDIR=${D} install - - dodoc ANNOUNCE AUTHORS COPYING CREDITS ChangeLog FAQ NEWS README TODO - -} - diff --git a/net-www/squid/files/digest-squid-2.3.4s-r1 b/net-www/squid/files/digest-squid-2.3.4s-r1 deleted file mode 100644 index 9b5fa11e06e5..000000000000 --- a/net-www/squid/files/digest-squid-2.3.4s-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 c38c083f44c222a8d026fa129c30b98f squid-2.3.STABLE4-src.tar.gz diff --git a/net-www/squid/squid-2.3.4s-r1.ebuild b/net-www/squid/squid-2.3.4s-r1.ebuild deleted file mode 100644 index 7191bc07af0f..000000000000 --- a/net-www/squid/squid-2.3.4s-r1.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# 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-www/squid/squid-2.3.4s-r1.ebuild,v 1.6 2000/12/22 07:34:15 drobbins Exp $ - -P=squid-2.3.STABLE4 -A=${P}-src.tar.gz -S=${WORKDIR}/${P} -DESCRIPTION="SQUID - Web Proxy Server" -SRC_URI="http://www.squid-cache.org/Versions/v2/2.3/"${A} -HOMEPAGE="http://www.squid-cache.org/" - -DEPEND=">=sys-libs/glibc-2.1.3 - >=sys-libs/pam-0.72 - >=net-nds/openldap-1.2.11" - -src_compile() { - cd ${S} - LDFLAGS="$LDFLAGS -lresolv" try ./configure --host=${CHOST} \ - --prefix=/usr --sysconfdir=/etc/squid \ - --localstatedir=/var/state/squid \ - --enable-useragent-log \ - --enable-async-io --enable-icmp - try make - cd ${S}/auth_modules/LDAP - try make - cd ../PAM - try make - cd ../SMB - try make - cd ../LDAP - try make - cd ../NCSA - try make - -} - -src_install() { - cd ${S} - rm -rf ${D} - dodir /usr/bin - dodir /etc/squid - dodir /var/squid - chown squid.daemon ${D}/var/squid - try make install prefix=${D}/usr sysconfdir=${D}/etc/squid \ - localstatedir=${D}/var/state/squid - into /usr - cd auth_modules - dobin LDAP/squid_ldap_auth PAM/pam_auth SMB/smb_auth NCSA/ncsa_auth - cd ../doc - doman tree.3 - dodoc *.txt - cd .. - dodoc README QUICKSTART CONTRIBUTORS COPYRIGHT COPYING CREDITS - dodoc ChangeLog TODO - cp ${O}/files/squid.conf ${D}/etc/squid - dodir /etc/rc.d/init.d - cp ${O}/files/squid ${D}/etc/rc.d/init.d -# rm -r ${D}/var/squid - dodir /var/log/squid - dodir /var/cache/squid - fowners squid.daemon /var/log/squid - fowners squid.daemon /var/cache/squid - fperms 755 /var/log/squid - fperms 755 /var/cache/squid -} - -pkg_config() { - - . ${ROOT}/etc/rc.d/config/functions - - einfo "Generating symlinks..." - ${ROOT}/usr/sbin/rc-update add squid - -} |