blob: 7173a6a6929195dd772616b11b9056fc7d67b469 (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/maruku/maruku-0.5.6.ebuild,v 1.1 2007/05/24 15:23:43 agorf Exp $
inherit ruby gems
USE_RUBY="ruby18"
DESCRIPTION="A Markdown-superset interpreter written in Ruby."
HOMEPAGE="http://maruku.rubyforge.org/"
SRC_URI="http://gems.rubyforge.org/gems/${P}.gem"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=dev-ruby/syntax-1.0.0
>=dev-lang/ruby-1.8.3"
RDEPEND="${DEPEND}"
pkg_postinst() {
elog
elog "You need to emerge app-text/tetex and dev-tex/latex-unicode if"
elog "you want to use --pdf with Maruku. You may also want to emerge"
elog "dev-tex/listings to enable LaTeX syntax highlighting."
elog
}
|