diff options
author | Tom William Payne <twp@gentoo.org> | 2005-11-21 23:58:59 +0000 |
---|---|---|
committer | Tom William Payne <twp@gentoo.org> | 2005-11-21 23:58:59 +0000 |
commit | 7f9a78a39875a744441357478fa8b15fd507c2cc (patch) | |
tree | a2924e1ff93a88ad7e2a51958a51f11d43e05895 /dev-ruby/rcairo/rcairo-1.0.0.ebuild | |
parent | changed cp -a to cp -pPR in compliance with bug 103487 (diff) | |
download | historical-7f9a78a39875a744441357478fa8b15fd507c2cc.tar.gz historical-7f9a78a39875a744441357478fa8b15fd507c2cc.tar.bz2 historical-7f9a78a39875a744441357478fa8b15fd507c2cc.zip |
Initial version.
Package-Manager: portage-2.0.53_rc7
Diffstat (limited to 'dev-ruby/rcairo/rcairo-1.0.0.ebuild')
-rw-r--r-- | dev-ruby/rcairo/rcairo-1.0.0.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-ruby/rcairo/rcairo-1.0.0.ebuild b/dev-ruby/rcairo/rcairo-1.0.0.ebuild new file mode 100644 index 000000000000..1ce2f9d24a82 --- /dev/null +++ b/dev-ruby/rcairo/rcairo-1.0.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rcairo/rcairo-1.0.0.ebuild,v 1.1 2005/11/21 23:58:59 twp Exp $ + +inherit ruby + +IUSE="examples" + +DESCRIPTION="Ruby bindings for cairo" +HOMEPAGE="http://cairographics.org" +SRC_URI="http://cairographics.org/releases/${P}.tar.gz" + +SLOT="0" +USE_RUBY="ruby18" +LICENSE="Ruby" +KEYWORDS="~x86" + +DEPEND=">=x11-libs/cairo-1.0.0" + +src_install() { + ruby_src_install --prefix=${D} + if `use examples`; then + insinto /usr/share/doc/${PF}/samples + doins samples/* + fi +} |