diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-01-19 20:11:46 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-01-19 20:11:46 +0000 |
commit | 5b5df25227111ef465caf5c52bcfb66dac3219cd (patch) | |
tree | 31b713cac6188358125cbb66b8804030328740f0 /sci-calculators | |
parent | 02e2208f46f4e2c00fb9743cbc47350bdd233bfa (diff) |
gentoo resync : 19.01.2018
Diffstat (limited to 'sci-calculators')
-rw-r--r-- | sci-calculators/Manifest.gz | bin | 3203 -> 3204 bytes | |||
-rw-r--r-- | sci-calculators/pcalc/Manifest | 2 | ||||
-rw-r--r-- | sci-calculators/pcalc/pcalc-4.ebuild | 27 |
3 files changed, 29 insertions, 0 deletions
diff --git a/sci-calculators/Manifest.gz b/sci-calculators/Manifest.gz Binary files differindex 1d7d253c60ec..800e40cf92cb 100644 --- a/sci-calculators/Manifest.gz +++ b/sci-calculators/Manifest.gz diff --git a/sci-calculators/pcalc/Manifest b/sci-calculators/pcalc/Manifest index 778b2a66c6e6..a65e9e4132cb 100644 --- a/sci-calculators/pcalc/Manifest +++ b/sci-calculators/pcalc/Manifest @@ -1,3 +1,5 @@ DIST pcalc-3.tar.xz 66908 BLAKE2B 40473405f564d5dc5fd43f6f7fc4a80d41d7c9b09f8f6915408313aa45ecaa860b27debe0131fa0450b9b62a7ed4157bc433c7866910211551c6b159113cecc3 SHA512 55b6644300a8eb5224df5a0885907c10847df7ab6296d012eb2bb638876687ddbe23d5b76e31ac6ff4c159e44940d5cf6ba747f2a410943fdc25c9d9855fd60e +DIST pcalc-4.tar.xz 68948 BLAKE2B f7d17e3ebf76aeccd9b7c74fe6ecfa7de94d8450d302e3b094b57f4050e0be2448887ea131496ab00ee140d0a44b0dd8d5b5564feb8fdc47d2fbbe5010af73d9 SHA512 6492ca89c5f60549f9388d8b7edad21c1c912feea0ee1a1271d730a63832c3b562b1a6bc9f69a0bd3118407906646c8d8fbed6c6d9a62db6a6bbde22579c1fd0 EBUILD pcalc-3-r1.ebuild 568 BLAKE2B dc17439a574ba1bedab83857e804b8d98a1475e1a763bdf035c01454de7d78bb4f2df598e7915d0bb0a3ea3e11b9f13e5e4a690e266e9fad4e1c32f4387d6743 SHA512 ae6f0a075472ea32e1c602ea86f68fa97fb24041dddc1bdc7f42cfa3bdc95b622599c67139445a36412aa284483dcb7dfddd09f62b90f019e7016afd25c1d8fa +EBUILD pcalc-4.ebuild 581 BLAKE2B 029f4f5db7a1e5109cb62ed27d967c9c43b286fb0be546b8ea7ab1914f36610ef84db93cd8ff7ad93cb0becf5a9cd80f40b5c608ac92c453fd340cd32d6cc971 SHA512 a7cdf3f58bb0d17a8ec8e80a723fb1de7299e818aee04d01a9b7a0439d758537e1ee7bcef023be1f6961755c140d3900af5dc0a00108c48060d39df55913e98a MISC metadata.xml 380 BLAKE2B 966f815d92d6c5680629d5bb6bf5b6124aa1bf6a747d914c94e66148a6e7d8b53e9931e56436a99d0ccc5bbbea1cb6e2a0bb3054fa31a4dd6f7fad54f279893f SHA512 45ac8682dd7d9e8c414354090b2733f3c715e9b76db3ab3e1e852282bf460f3a6881626d49c73b7975fbc238485ed38881187dd4c392469108bad1b15022465a diff --git a/sci-calculators/pcalc/pcalc-4.ebuild b/sci-calculators/pcalc/pcalc-4.ebuild new file mode 100644 index 000000000000..0b083d621208 --- /dev/null +++ b/sci-calculators/pcalc/pcalc-4.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +inherit toolchain-funcs + +DESCRIPTION="the programmers calculator" +HOMEPAGE="https://github.com/vapier/pcalc" +SRC_URI="mirror://sourceforge/pcalc/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND="sys-devel/flex" +RDEPEND="" + +src_prepare() { + default + sed -i -e "s:/usr:${EPREFIX}/usr:g" Makefile || die +} + +src_configure() { + tc-export CC +} |