diff options
author | Renat Lumpau <rl03@gentoo.org> | 2005-09-08 00:15:58 +0000 |
---|---|---|
committer | Renat Lumpau <rl03@gentoo.org> | 2005-09-08 00:15:58 +0000 |
commit | 628069bd8b074590b471fdd037fe61dedce66238 (patch) | |
tree | 2a9c074e347a1cab51e26d360e71903f15d04cd0 /www-misc | |
parent | Version bump (diff) | |
download | gentoo-2-628069bd8b074590b471fdd037fe61dedce66238.tar.gz gentoo-2-628069bd8b074590b471fdd037fe61dedce66238.tar.bz2 gentoo-2-628069bd8b074590b471fdd037fe61dedce66238.zip |
Removing old obsolete version
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'www-misc')
-rw-r--r-- | www-misc/htdig/ChangeLog | 5 | ||||
-rw-r--r-- | www-misc/htdig/files/digest-htdig-3.1.6-r4 | 1 | ||||
-rw-r--r-- | www-misc/htdig/htdig-3.1.6-r4.ebuild | 78 |
3 files changed, 4 insertions, 80 deletions
diff --git a/www-misc/htdig/ChangeLog b/www-misc/htdig/ChangeLog index a717ce02f112..29cb3ba88877 100644 --- a/www-misc/htdig/ChangeLog +++ b/www-misc/htdig/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-misc/htdig # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-misc/htdig/ChangeLog,v 1.11 2005/08/01 12:54:13 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-misc/htdig/ChangeLog,v 1.12 2005/09/08 00:15:58 rl03 Exp $ + + 08 Sep 2005; Renat Lumpau <rl03@gentoo.org> -htdig-3.1.6-r4.ebuild: + Removing old obsolete version 01 Aug 2005; Danny van Dyk <kugelfang@gentoo.org> htdig-3.2.0_beta6.ebuild: diff --git a/www-misc/htdig/files/digest-htdig-3.1.6-r4 b/www-misc/htdig/files/digest-htdig-3.1.6-r4 deleted file mode 100644 index a44fa14c97b5..000000000000 --- a/www-misc/htdig/files/digest-htdig-3.1.6-r4 +++ /dev/null @@ -1 +0,0 @@ -MD5 7a2f20d8d6149efd8d119bb2ebf55f23 htdig-3.1.6.tar.gz 2068675 diff --git a/www-misc/htdig/htdig-3.1.6-r4.ebuild b/www-misc/htdig/htdig-3.1.6-r4.ebuild deleted file mode 100644 index aaf43eb33a30..000000000000 --- a/www-misc/htdig/htdig-3.1.6-r4.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-misc/htdig/htdig-3.1.6-r4.ebuild,v 1.2 2005/02/10 17:13:48 luckyduck Exp $ - -inherit webapp-apache - -DESCRIPTION="HTTP/HTML indexing and searching system" -HOMEPAGE="http://www.htdig.org" -SRC_URI="http://www.htdig.org/files/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 sparc ppc ~mips amd64" -IUSE="" - -DEPEND=">=sys-libs/zlib-1.1.3 - app-arch/unzip" - -export CPPFLAGS="${CPPFLAGS} -Wno-deprecated" - -HTTPD_USER="apache" -HTTPD_GROUP="apache" - -pkg_setup() { - webapp-detect || NO_WEBSERVER=1 - webapp-pkg_setup "${NO_WEBSERVER}" - einfo "Installing into ${ROOT}${HTTPD_ROOT}." -} - -src_compile() { - local DocumentRoot=${HTTPD_ROOT} - local destdir=${DocumentRoot}/${PN} - - cd ${S} - ./configure \ - --prefix=/usr \ - --with-config-dir=/etc/${PN} \ - --with-cgi-bin-dir=${HTTPD_CGIBIN} \ - --with-common-dir=/usr/share/${PN} \ - --with-database-dir=/var/${PN}/db \ - --with-image-dir=${destdir} \ - --with-default-config-file=/etc/${PN}/${PN}.conf \ - || die - - emake || die - -} - -src_install () { - webapp-mkdirs - - local DocumentRoot=${HTTPD_ROOT} - local destdir=${DocumentRoot}/${PN} - - make \ - DESTDIR=${D} \ - CONFIG_DIR=${D}/etc/${PN} \ - SEARCH_DIR=${D}/${destdir} \ - CGIBIN_DIR=${D}/${HTTPD_CGIBIN} \ - COMMON_DIR=${D}/usr/share/${PN} \ - DATABASE_DIR=${D}/var/${PN}/db \ - IMAGE_DIR=${D}/${destdir} \ - DEFAULT_CONFIG_FILE=${D}/etc/${PN}/${PN}.conf \ - exec_prefix=${D}/usr \ - install || die - - dodoc ChangeLog COPYING README - dohtml -r htdoc - - insinto /etc/conf.d - doins installdir/htdig.conf - - dosed /etc/htdig/htdig.conf - dosed /usr/bin/rundig - - touch ${D}/var/htdig/db/word2root.db - touch ${D}/var/htdig/db/root2word.db -} |