# Copyright 1999-2001 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Michael Conrad Tilstra # $Header: /var/cvsroot/gentoo-x86/app-text/dictd-vera/dictd-vera-1.7.ebuild,v 1.2 2001/04/24 22:58:35 michael Exp $ #P= A=vera_1.7.tar.gz S=${WORKDIR} DESCRIPTION="" SRC_URI="ftp://ftp.dict.org/pub/dict/pre/${A}" HOMEPAGE="http://www.dict.org" DEPEND=">=app-text/dictd-1.5.5" src_install () { dodir /usr/lib/dict insinto /usr/lib/dict doins vera.dict doins vera.index } pkg_postinst() { if [ -f /etc/dict/dictd.conf ]; then cat >> /etc/dict/dictd.conf << __EOF__ database vera { data "/usr/lib/dict/vera.dict" index "/usr/lib/dict/vera.index" } __EOF__ fi } pkg_postrm() { if [ -f /etc/dict/dictd.conf ]; then cat /etc/dict/dictd.conf | sed -e '/vera/d' > /etc/dict/dictd.conf.$$ mv /etc/dict/dictd.conf.$$ /etc/dict/dictd.conf fi } # vim: ai et sw=4 ts=4