1 |
# Copyright 1999-2005 Gentoo Foundation |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pdf-writer/pdf-writer-1.1.2.ebuild,v 1.1 2005/08/25 12:53:02 citizen428 Exp $ |
4 |
|
5 |
inherit ruby gems |
6 |
|
7 |
DESCRIPTION="PDF::Writer for Ruby" |
8 |
HOMEPAGE="http://rubyforge.org/projects/ruby-pdf/" |
9 |
SRC_URI="http://gems.rubyforge.org/gems/${P}.gem" |
10 |
|
11 |
LICENSE="MIT" |
12 |
SLOT="0" |
13 |
KEYWORDS="~x86" |
14 |
IUSE="" |
15 |
|
16 |
USE_RUBY="ruby18" |
17 |
DEPEND=">=dev-ruby/color-tools-1.3.0 |
18 |
>=dev-ruby/transaction-simple-1.3.0" |
19 |
|
20 |
pkg_postinst() { |
21 |
einfo "This package was installed using a 'gem'." |
22 |
einfo "If you are intending to write code which" |
23 |
einfo "requires ${PN}, you will need to" |
24 |
einfo |
25 |
einfo "require 'rubygems'" |
26 |
einfo |
27 |
einfo "before requiring '${PN}'." |
28 |
} |
29 |
|