blob: 4c60a1b5f47d4053c42dae14007c9ff51db5ea6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/pico/pico-0.0.1.ebuild,v 1.11 2004/06/24 22:00:51 agriffis Exp $
HOMEPAGE="http://www.washington.edu/pine"
DESCRIPTION="Pico text editor"
SLOT="0"
LICENSE="as-is"
IUSE=""
KEYWORDS="x86 ppc sparc "
DEPEND="virtual/glibc"
PROVIDE="virtual/editor"
pkg_setup () {
einfo "There is no real Pico here."
einfo ""
einfo 'Pico is part of mail-client/pine. Try "emerge app-editors/nano"'
einfo "for a good Pico clone (it should be installed by default)."
einfo ""
einfo "If you really want to use the original Pico, you may want"
einfo 'to try "emerge mail-client/pine" instead.'
die "Pico is in mail-client/pine"
}
|