diff options
author | Jeroen Roovers <jer@gentoo.org> | 2009-08-12 15:01:56 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2009-08-12 15:01:56 +0000 |
commit | a579aeece5e2f73d2e3df736bc13a33db955c536 (patch) | |
tree | f6836559cf6aa5386aec1b5b625547fd4c822ba5 /www-client/surfraw | |
parent | Fix bug 280930 -- broken intltool rules (diff) | |
download | gentoo-2-a579aeece5e2f73d2e3df736bc13a33db955c536.tar.gz gentoo-2-a579aeece5e2f73d2e3df736bc13a33db955c536.tar.bz2 gentoo-2-a579aeece5e2f73d2e3df736bc13a33db955c536.zip |
Remove old.
(Portage version: 2.2_rc38/cvs/Linux i686)
Diffstat (limited to 'www-client/surfraw')
-rw-r--r-- | www-client/surfraw/ChangeLog | 5 | ||||
-rw-r--r-- | www-client/surfraw/surfraw-2.2.4.ebuild | 75 |
2 files changed, 4 insertions, 76 deletions
diff --git a/www-client/surfraw/ChangeLog b/www-client/surfraw/ChangeLog index 85884f8055be..aa34e10bb2e8 100644 --- a/www-client/surfraw/ChangeLog +++ b/www-client/surfraw/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-client/surfraw # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/surfraw/ChangeLog,v 1.44 2009/07/25 05:57:08 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/surfraw/ChangeLog,v 1.45 2009/08/12 15:01:56 jer Exp $ + + 12 Aug 2009; Jeroen Roovers <jer@gentoo.org> -surfraw-2.2.4.ebuild: + Remove old. 25 Jul 2009; Jeroen Roovers <jer@gentoo.org> files/surfraw-2.1.5-gentoo_pkg_tools.patch: diff --git a/www-client/surfraw/surfraw-2.2.4.ebuild b/www-client/surfraw/surfraw-2.2.4.ebuild deleted file mode 100644 index 162ff9b10412..000000000000 --- a/www-client/surfraw/surfraw-2.2.4.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/surfraw/surfraw-2.2.4.ebuild,v 1.5 2009/04/14 10:24:22 armin76 Exp $ - -inherit bash-completion eutils - -DESCRIPTION="A fast unix command line interface to WWW" -HOMEPAGE="http://surfraw.alioth.debian.org/" -SRC_URI="http://${PN}.alioth.debian.org/dist/${P}.tar.gz" - -SLOT="0" -LICENSE="public-domain" -KEYWORDS="amd64 hppa ppc sparc x86" -IUSE="" -RESTRICT="test" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}"/${PN}-2.1.5-gentoo_pkg_tools.patch - # Man page symlinks shouldn't link to compressed files - sed -i 's,\.gz,,g' links.IN -} - -src_compile() { - econf \ - --with-elvidir='$(datadir)'/surfraw \ - --disable-opensearch \ - || die "./configure failed" - emake || die "make failed" -} - -src_install() { - make DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS ChangeLog HACKING NEWS README TODO - - dobashcompletion surfraw-bash-completion -} - -pkg_preinst() { - has_version "=${CATEGORY}/${PN}-1.0.7" - upgrade_from_1_0_7=$? -} - -pkg_postinst() { - bash-completion_pkg_postinst - einfo - einfo "You can get a list of installed elvi by just typing 'surfraw' or" - einfo "the abbreviated 'sr'." - einfo - einfo "You can try some searches, for example:" - einfo "$ sr ask why is jeeves gay? " - einfo "$ sr google -results=100 RMS, GNU, which is sinner, which is sin?" - einfo "$ sr rhyme -method=perfect Julian" - einfo - einfo "The system configuration file is /etc/surfraw.conf" - einfo - einfo "Users can specify preferences in '~/.surfraw.conf' e.g." - einfo "SURFRAW_graphical_browser=mozilla" - einfo "SURFRAW_text_browser=w3m" - einfo "SURFRAW_graphical=no" - einfo - einfo "surfraw works with any graphical and/or text WWW browser" - einfo - if [[ $upgrade_from_1_0_7 = 0 ]] ; then - ewarn "surfraw usage has changed slightly since version 1.0.7, elvi are now called" - ewarn "using the 'sr' wrapper script as described above. If you wish to return to" - ewarn "the old behaviour you can add /usr/share/surfraw to your \$PATH" - fi - # This file was always autogenerated, and is no longer needed. - if [ -f "${ROOT}"/etc/surfraw_elvi.list ]; then - rm -f "${ROOT}"/etc/surfraw_elvi.list - fi -} |