ChangeLog

# ChangeLog for app-vim/showmarks
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/showmarks/ChangeLog,v 1.22 2007/02/22 00:07:30 peper Exp $

22 Feb 2007; Piotr Jaroszyński ChangeLog:
Transition to Manifest2.

24 Apr 2005; Michael Hanselmann showmarks-2.2.ebuild:
Stable on ppc.

29 Dec 2004; Ciaran McCreesh -showmarks-2.0.ebuild,
-showmarks-2.1.ebuild:
Tidy up

28 Dec 2004; Ciaran McCreesh :
Change encoding to UTF-8 for GLEP 31 compliance

19 Oct 2004; Dylan Carlson showmarks-2.2.ebuild:
Stable on amd64.

19 Sep 2004; Bryan Østergaard,,, showmarks-2.2.ebuild:
Stable on alpha.

06 Sep 2004; Ciaran McCreesh showmarks-2.2.ebuild:
Stable on x86, sparc, mips

06 Sep 2004; Bryan Østergaard showmarks-2.1.ebuild:
Stable on alpha.

05 Sep 2004; Ciaran McCreesh showmarks-2.2.ebuild:
Added help text, bug #62559

*showmarks-2.2 (21 Aug 2004)

21 Aug 2004; Ciaran McCreesh +showmarks-2.2.ebuild:
Version bump

20 Aug 2004; Ciaran McCreesh showmarks-2.1.ebuild:
Stable on x86

04 Apr 2004; Ciaran McCreesh showmarks-2.1.ebuild:
Stable on sparc, mips

*showmarks-2.1 (05 Mar 2004)

05 Mar 2004; Ciaran McCreesh showmarks-2.1.ebuild:
Version bump

06 Feb 2004; Ciaran McCreesh showmarks-2.0.ebuild:
Added ~mips

10 Dec 2003; Ciaran McCreesh showmarks-2.0.ebuild:
Added amd64 keyword

05 Dec 2003; Ciaran McCreesh showmarks-2.0.ebuild:
Added ~ppc to keywords

15 Nov 2003; Aron Griffis metadata.xml:
Added metadata.xml

14 Nov 2003; Aron Griffis showmarks-2.0.ebuild:
Stable on ia64

06 Sep 2003; Aron Griffis showmarks-2.0.ebuild:
Mark stable on alpha

*showmarks-2.0 (06 Sep 2003)

06 Sep 2003; Aron Griffis showmarks-2.0.ebuild:
Initial import of showmarks vim plugin, submitted by Ciaran McCreesh in bug
27731

Manifest

DIST showmarks-2.2.tar.bz2 8195 RMD160 3643ee8c634e499b86d0ef9d46cc741bb44b87c5 SHA1 3230746db5f6374131c354f64cc7bb5f409b54f3 SHA256 7c25f98e14796595400bfb76fe7433eaea00c204e04fce7b339714ba560e5d49
EBUILD showmarks-2.2.ebuild 943 RMD160 d5d72d853a038af31b90793ce23563d9c86bd557 SHA1 3dafbf7d60d2c69eb3926d78d850c69404b5442c SHA256 56afd0a0912db7fe5d9433b1ac3024e57e53e0ff99797e339d2fb7002c3e3d92
MISC ChangeLog 2282 RMD160 5f2e5553553eeeaac891ab5959ab103775ae1e58 SHA1 1f0c52b580cae1b39497c037d63b44db0138e812 SHA256 463425ef5f062cba3596ec0409447605b8b2354a92d0de888304b64509d5c6f4
MISC metadata.xml 157 RMD160 adcd6494e1e562ab5e0bd090e114622782ac753a SHA1 22983b8e9ba3045d8ccbc2b14393423f7f05d2ee SHA256 106c8618581360c66c2b535fcb7a6cb9ff318f1bd8e6c8f40f2f2f2d54e6787a

metadata.xml




vim

showmarks-2.2.ebuild

# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/showmarks/showmarks-2.2.ebuild,v 1.8 2005/04/24 12:18:32 hansmi Exp $

inherit vim-plugin

DESCRIPTION="vim plugin: show location marks visually"
HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=152"

LICENSE="public-domain"
KEYWORDS="alpha amd64 ia64 mips ppc sparc x86"
IUSE=""

VIM_PLUGIN_HELPFILES="showmarks.txt"

function src_unpack() {
unpack ${A}
mkdir ${S}/doc || die "can't make doc dir"

# This plugin uses an 'automatic HelpExtractor' variant. This causes
# problems for us during the unmerge. Fortunately, sed can fix this
# for us.
sed -e '1,/^" HelpExtractorDoc:$/d' \
${S}/plugin/showmarks.vim > ${S}/doc/showmarks.txt \
|| die "help extraction failed"
sed -i -e '/^" HelpExtractor:$/,$d' ${S}/plugin/showmarks.vim \
|| die "help extract remove failed"
}