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-3.0.30, Repoman-3.0.3 Signed-off-by: Hans de Graaff <[email protected]>
- Loading branch information
Showing
2 changed files
with
49 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
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,48 @@ | ||
# Copyright 1999-2022 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
GITHUB_USER=yob | ||
|
||
USE_RUBY="ruby26 ruby27 ruby30" | ||
|
||
RUBY_FAKEGEM_RECIPE_TEST="rspec3" | ||
|
||
RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.md TODO" | ||
|
||
RUBY_FAKEGEM_GEMSPEC="pdf-reader.gemspec" | ||
|
||
inherit ruby-fakegem | ||
|
||
DESCRIPTION="PDF parser conforming as much as possible to the PDF specification from Adobe" | ||
HOMEPAGE="https://github.com/yob/pdf-reader/" | ||
|
||
# We cannot use the gem distributions because they don't contain the | ||
# tests' data, we have to rely on the git tags. | ||
SRC_URI="https://github.com/${GITHUB_USER}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="MIT" | ||
SLOT="2" | ||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" | ||
IUSE="" | ||
|
||
RDEPEND+=" !!<dev-ruby/pdf-reader-1.4.1-r2" | ||
|
||
ruby_add_rdepend ">=dev-ruby/afm-0.2.1 =dev-ruby/afm-0.2* | ||
=dev-ruby/ascii85-1* | ||
=dev-ruby/hashery-2* | ||
dev-ruby/ttfunk:* | ||
dev-ruby/ruby-rc4" | ||
|
||
all_ruby_prepare() { | ||
# Remove bundler support | ||
sed -i -e '/[Bb]undler/d' spec/spec_helper.rb || die | ||
} | ||
|
||
all_ruby_install() { | ||
all_fakegem_install | ||
|
||
docinto examples | ||
dodoc examples/* | ||
} |