blob: 651f98d2a4aa53d89bed01f5c6896a57457d463e (
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
29
30
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bluecloth/bluecloth-1.0.0.ebuild,v 1.11 2007/06/20 19:58:04 corsair Exp $
inherit ruby gems
MY_P="BlueCloth-${PV}"
DESCRIPTION="A Ruby implementation of Markdown"
HOMEPAGE="http://www.deveiate.org/projects/BlueCloth"
SRC_URI="http://www.deveiate.org/code/${MY_P}.gem"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ia64 ppc ppc64 x86"
IUSE=""
USE_RUBY="ruby18"
DEPEND=">=dev-lang/ruby-1.8"
S=${WORKDIR}/${MY_P}
pkg_postinst() {
elog "This package was installed using a 'gem'."
elog "If you are intending to write code which"
elog "requires ${PN}, you will need to"
elog
elog "require 'rubygems'"
elog
elog "before requiring '${PN}'."
}
|