First Last Prev Next    No search results available      Search page      Enter new bug
Bug#: 52613
Alias:
Product:
Component:
Status: RESOLVED
Resolution: FIXED
Assigned To: Gentoo Web Application Packages Maintainers <web-apps@gentoo.org>
Hardware:
OS:
Version:
Priority:
Severity:
Reporter: Benjamin Smee (strerror) (RETIRED) <strerror@gentoo.org>
Add CC:
CC:
URL:
Summary:
Status Whiteboard:
Keywords:

Filename Description Type Creator Created Size Actions
htdig-3.1.6-r5.ebuild ebuild with ssl support text/plain Benjamin Smee (strerror) (RETIRED) 2004-05-31 12:15 0000 1.82 KB Details
3.1.6-ssl.patch enables ssl support for htdig patch Benjamin Smee (strerror) (RETIRED) 2004-05-31 12:16 0000 18.63 KB Details | Diff
htdig-3.1.6-r7.ebuild latest htdig + ssl ebuild text/plain Benjamin Smee (strerror) (RETIRED) 2004-09-28 12:42 0000 1.73 KB Details
htdig-3.1.6-r7.ebuild final version text/plain Benjamin Smee (strerror) (RETIRED) 2004-09-28 13:28 0000 1.74 KB Details
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 52613 depends on: Show dependency tree
Bug 52613 blocks:
Votes: 0    Show votes for this bug    Vote for this bug

Additional Comments: (this is where you put emerge --info)


Not eligible to see or edit group visibility for this bug.






View Bug Activity   |   Format For Printing   |   XML   |   Clone This Bug


Description:   Opened: 2004-05-31 12:14 0000
new ebuild for htdig so that it includes ssl support

------- Comment #1 From Benjamin Smee (strerror) (RETIRED) 2004-05-31 12:15:57 0000 -------
Created an attachment (id=32403) [edit]
ebuild with ssl support

------- Comment #2 From Benjamin Smee (strerror) (RETIRED) 2004-05-31 12:16:31 0000 -------
Created an attachment (id=32404) [edit]
enables ssl support for htdig

------- Comment #3 From Renat Lumpau 2004-07-18 02:47:18 0000 -------
see http://bugs.gentoo.org/show_bug.cgi?id=52592 for an ebuild that uses
webapp.eclass instead of webapp-apache

------- Comment #4 From Benjamin Smee (strerror) (RETIRED) 2004-09-28 12:42:43 0000 -------
Created an attachment (id=40654) [edit]
latest htdig + ssl ebuild

latest version, with ssl support and converted to webapp

------- Comment #5 From Benjamin Smee (strerror) (RETIRED) 2004-09-28 13:26:48 0000 -------
(From update of attachment 40654 [edit])
># Copyright 1999-2004 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-r6.ebuild,v 1.1 2004/08/29 16:46:29 rl03 Exp $
>
>inherit webapp eutils
>
>DESCRIPTION="HTTP/HTML indexing and searching system"
>SRC_URI="http://www.htdig.org/files/${P}.tar.gz"
>HOMEPAGE="http://www.htdig.org"
>KEYWORDS="~x86 ~sparc ~ppc ~mips ~amd64"
>LICENSE="GPL-2"
>IUSE="ssl"
>
>DEPEND=">=sys-libs/zlib-1.1.3
>	app-arch/unzip"
>
>export CPPFLAGS="${CPPFLAGS} -Wno-deprecated"
>
>src_unpack() {
>    unpack ${A}
>    cd ${S}
>
>    use ssl && epatch ${FILESDIR}/${PV}-ssl.patch
>}
>
>src_compile() {
>	cd ${S}
>	./configure \
>		--prefix=/usr \
>		--with-config-dir=/${MY_HOSTROOTDIR}/${PN} \
>		--with-cgi-bin-dir=${MY_CGIBINDIR} \
>		--with-common-dir=/usr/share/${PN} \
>		--with-database-dir=${MY_HOSTROOTDIR}/${PN}/db \
>		--with-image-dir=${MY_HTDOCSDIR} \
>		--with-default-config-file=${MY_HOSTROOTDIR}/${PN}/${PN}.conf \
>		|| die
>
>	emake || die
>}
>
>src_install () {
>	webapp_src_preinst
>	dodir ${MY_HOSTROOTDIR}/${PN}
>
>	make 	\
>		DESTDIR=${D} \
>		CONFIG_DIR=${D}/${MY_HOSTROOTDIR}/${PN} \
>		SEARCH_DIR=${D}/${MY_HOSTROOTDIR} \
>		CGIBIN_DIR=${D}/${MY_CGIBINDIR} \
>		COMMON_DIR=${D}/usr/share/${PN} \
>		DATABASE_DIR=${D}/${MY_HOSTROOTDIR}/${PN}/db \
>		IMAGE_DIR=${D}/${MY_HTDOCSDIR} \
>		DEFAULT_CONFIG_FILE=${D}/${MY_HOSTROOTDIR}/${PN}/${PN}.conf \
>		exec_prefix=${D}/usr \
>		install || die
>
>	dodoc ChangeLog COPYING README
>	dohtml -r htdoc
>
>	sed -e "s/@DATABASE_DIR@/\/var\/${PN}\/db/" -i ${D}/${MY_HOSTROOTDIR}/${PN}/htdig.conf
>
>	dosed ${MY_HOSTROOTDIR}/${PN}/${PN}.conf
>	dosed /usr/bin/rundig
>
>	# symlink htsearch so it can be easily found. see bug #62087.
>	dosym ${MY_CGIBINDIR}/htsearch /usr/bin/htsearch
>
>	webapp_src_install
>}

------- Comment #6 From Benjamin Smee (strerror) (RETIRED) 2004-09-28 13:27:15 0000 -------
(From update of attachment 40654 [edit])
># Copyright 1999-2004 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-r6.ebuild,v 1.1 2004/08/29 16:46:29 rl03 Exp $
>
>inherit webapp eutils
>
>DESCRIPTION="HTTP/HTML indexing and searching system"
>SRC_URI="http://www.htdig.org/files/${P}.tar.gz"
>HOMEPAGE="http://www.htdig.org"
>KEYWORDS="~x86 ~sparc ~ppc ~mips ~amd64"
>LICENSE="GPL-2"
IUSE="ssl"
>
>DEPEND=">=sys-libs/zlib-1.1.3
>	app-arch/unzip"
>
>export CPPFLAGS="${CPPFLAGS} -Wno-deprecated"
>
>src_unpack() {
>    unpack ${A}
>    cd ${S}
>
>    use ssl && epatch ${FILESDIR}/${PV}-ssl.patch
>}
>
>src_compile() {
>	cd ${S}
>	./configure \
>		--prefix=/usr \
>		--with-config-dir=/${MY_HOSTROOTDIR}/${PN} \
>		--with-cgi-bin-dir=${MY_CGIBINDIR} \
>		--with-common-dir=/usr/share/${PN} \
>		--with-database-dir=${MY_HOSTROOTDIR}/${PN}/db \
>		--with-image-dir=${MY_HTDOCSDIR} \
>		--with-default-config-file=${MY_HOSTROOTDIR}/${PN}/${PN}.conf \
>		|| die
>
>	emake || die
>}
>
>src_install () {
>	webapp_src_preinst
>	dodir ${MY_HOSTROOTDIR}/${PN}
>
>	make 	\
>		DESTDIR=${D} \
>		CONFIG_DIR=${D}/${MY_HOSTROOTDIR}/${PN} \
>		SEARCH_DIR=${D}/${MY_HOSTROOTDIR} \
>		CGIBIN_DIR=${D}/${MY_CGIBINDIR} \
>		COMMON_DIR=${D}/usr/share/${PN} \
>		DATABASE_DIR=${D}/${MY_HOSTROOTDIR}/${PN}/db \
>		IMAGE_DIR=${D}/${MY_HTDOCSDIR} \
>		DEFAULT_CONFIG_FILE=${D}/${MY_HOSTROOTDIR}/${PN}/${PN}.conf \
>		exec_prefix=${D}/usr \
>		install || die
>
>	dodoc ChangeLog COPYING README
>	dohtml -r htdoc
>
>	sed -e "s/@DATABASE_DIR@/\/var\/${PN}\/db/" -i ${D}/${MY_HOSTROOTDIR}/${PN}/htdig.conf
>
>	dosed ${MY_HOSTROOTDIR}/${PN}/${PN}.conf
>	dosed /usr/bin/rundig
>
>	# symlink htsearch so it can be easily found. see bug #62087.
>	dosym ${MY_CGIBINDIR}/htsearch /usr/bin/htsearch
>
>	webapp_src_install
>}

------- Comment #7 From Benjamin Smee (strerror) (RETIRED) 2004-09-28 13:28:00 0000 -------
Created an attachment (id=40659) [edit]
final version

lastest version htdig +ssl with IUSE added

------- Comment #8 From Renat Lumpau 2006-05-01 06:42:36 0000 -------
in CVS.

First Last Prev Next    No search results available      Search page      Enter new bug