diff options
author | Hans de Graaff <graaff@gentoo.org> | 2011-04-22 17:27:37 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2011-04-22 17:27:37 +0000 |
commit | f5f38bb31ff04ae89c6879dcaac80297d6c29b2c (patch) | |
tree | 451893b40d6fc00657d35755580cf09dd68a4760 /dev-ruby/daemons | |
parent | Marking mrouted-3.9.5 ppc for bug 358789 (diff) | |
download | gentoo-2-f5f38bb31ff04ae89c6879dcaac80297d6c29b2c.tar.gz gentoo-2-f5f38bb31ff04ae89c6879dcaac80297d6c29b2c.tar.bz2 gentoo-2-f5f38bb31ff04ae89c6879dcaac80297d6c29b2c.zip |
Version bump.
(Portage version: 2.1.9.42/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/daemons')
-rw-r--r-- | dev-ruby/daemons/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/daemons/daemons-1.1.3.ebuild | 30 |
2 files changed, 36 insertions, 1 deletions
diff --git a/dev-ruby/daemons/ChangeLog b/dev-ruby/daemons/ChangeLog index 7481c3fa2383..d31361325e81 100644 --- a/dev-ruby/daemons/ChangeLog +++ b/dev-ruby/daemons/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/daemons # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/daemons/ChangeLog,v 1.53 2011/04/09 08:32:34 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/daemons/ChangeLog,v 1.54 2011/04/22 17:27:37 graaff Exp $ + +*daemons-1.1.3 (22 Apr 2011) + + 22 Apr 2011; Hans de Graaff <graaff@gentoo.org> +daemons-1.1.3.ebuild: + Version bump. *daemons-1.1.2 (09 Apr 2011) diff --git a/dev-ruby/daemons/daemons-1.1.3.ebuild b/dev-ruby/daemons/daemons-1.1.3.ebuild new file mode 100644 index 000000000000..37c5ce5c911d --- /dev/null +++ b/dev-ruby/daemons/daemons-1.1.3.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/daemons/daemons-1.1.3.ebuild,v 1.1 2011/04/22 17:27:37 graaff Exp $ + +EAPI="2" +USE_RUBY="ruby18 ree18 ruby19 jruby" + +RUBY_FAKEGEM_EXTRADOC="Releases README TODO" +RUBY_FAKEGEM_DOCDIR="html" + +RUBY_FAKEGEM_TASK_TEST="" + +inherit ruby-fakegem + +DESCRIPTION="Wrap existing ruby scripts to be run as a daemon" +HOMEPAGE="http://daemons.rubyforge.org/" + +LICENSE="|| ( Ruby GPL-2 ) MIT" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="examples" + +all_ruby_install() { + all_fakegem_install + + use examples || return + + insinto /usr/share/doc/${PF}/ + doins -r examples || die "Failed to install examples" +} |