forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.3.3
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST curses-1.0.2.gem 34304 SHA256 6bb70325b45b82eacd219ffb51cbcd80b4ecf648493bc528384dfbafa9515e87 SHA512 5c448359106604ccf99d804bf3f2a6c3e62c23fc9e5926198cfdb83f5a108445cd780f1a7cba76a9929cee499d2c9e8ed1a14bcd9b72f9bf2dfde94c685f625d WHIRLPOOL d821fcde5f3033beec401fceb2e9150c48be19960b9f74ffd1aa9cf21b5b560fc9020161a3820ce0bbcc9a17a822e5284e4d265e74cbc4b9990f2e8271dda1f2 | ||
DIST curses-1.1.1.gem 1408000 SHA256 8118e315fd3b470e88a046620b16b8f8ade0019fe79ad4f637eae42179bc0dc7 SHA512 20cae17a20907c79f6ac5a344eee174bcc92aa838cbf032dc28316dd2d75cc218752915320127db774e1ef227fcb57a822693ab45996c5b959c6187fd27ce010 WHIRLPOOL efbbd0084be6b8470bd7d3b8550bf4eae6db61edc41ea6685d2bf849292e66f91bc92d876710e6792d37fbc630b28ba7340972b09be8b617c1af96ecdf4591d8 | ||
DIST curses-1.1.2.gem 1408000 SHA256 3354f983fcce74c63b4c5d37a7ded53df05c8a21b9c724438bc73a633835d00f SHA512 1697d234d4cf238af8d61aab21f2df64812bbaa2381c872a036d22aa1fee17542670d294a3974724b308145d2be7439dfcea620fb8b1d83cb0c8341856ee8cdc WHIRLPOOL a67b6fd655ba2cc0a19ad57417fdbbe7dd2f1b294eb8c0f23c3bcfa074cf3170375b491bfd9c144955b6ee1c57958a666815ea9949955102483d30594d31dd45 | ||
DIST curses-1.1.3.gem 33280 SHA256 b574b1fbe5590988d7e599ace69ded83be07c14336e54c7c6d9693980c1c08a8 SHA512 1b2dbd46ea955dfbd8b686c98308192ca8bd1be414441960ec30c53c2c922a54688f636be5e518404bd066167a1d3249f5688278d577f1b2ffcdb7a734543348 WHIRLPOOL 2c900724e6d8867e10afd23d77eb1f97a8fd9c5f6d5460612afa625da989500b12af8b7ef61512b506c6aa71da643dae789cc51162f313a5fbca9e3d4ae6aa9e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
USE_RUBY="ruby21 ruby22 ruby23 ruby24" | ||
|
||
RUBY_FAKEGEM_RECIPE_DOC="rdoc" | ||
RUBY_FAKEGEM_EXTRADOC="README.md" | ||
|
||
RUBY_FAKEGEM_RECIPE_TEST="none" | ||
|
||
inherit ruby-fakegem | ||
|
||
DESCRIPTION="Ruby binding for curses, ncurses, and PDCurses" | ||
HOMEPAGE="https://github.com/ruby/curses" | ||
LICENSE="|| ( Ruby BSD-2 )" | ||
|
||
KEYWORDS="~amd64 ~x86" | ||
|
||
SLOT="1" | ||
IUSE="" | ||
|
||
DEPEND+=" sys-libs/ncurses:0" | ||
RDEPEND+=" sys-libs/ncurses:0" | ||
|
||
each_ruby_configure() { | ||
${RUBY} -Cext/curses extconf.rb || die | ||
} | ||
|
||
each_ruby_compile() { | ||
emake V=1 -Cext/curses | ||
cp ext/curses/curses.so lib/ || die | ||
} |