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.
Signed-off-by: Maciej Barć <[email protected]>
- Loading branch information
Showing
2 changed files
with
42 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 algol68g-3.4.4.tar.gz 661980 BLAKE2B c596dbc7579415bd386f26f483857d6ffababdb43e9bb7bd8edc3171b447c3da2dc8baa25ad8fadcadd7dfdaa4650620b8449c5b0d9d2e056775726e7db53dc6 SHA512 d3d9b1aac61871475877c4dd1078bc856fd6f1726bd374e16d8ac9530aee00cdd7fb618c96afa98b28fd66dee343cc7bf92e201787d4598e41dbd794ec3d0a9a | ||
DIST algol68g-3.4.6.tar.gz 661358 BLAKE2B 1a825534833f2b4ff4025c3ca2d2f022c1c78cf8f8a365cc12e97af1cc4994228b705d6395e5c967d6a195cd2fc542212025133e6410d4876d43c36952dc60c0 SHA512 831585cb90c524014cc199256dbcf663868b37804071774e2eac5c64944e25513df4584421042d02140ee2695a918caec9b99c837d117e775d3721bf09065fb4 | ||
DIST algol68g-3.4.7.tar.gz 661381 BLAKE2B ef7b72dd4a03f64c27b3907b8602bedc8cb11485a71280ea4d1da1dc984b32d94e99d394d74e73235c607a4d41585df72b661b584cfb2f8b158fe37f2c08fa73 SHA512 0c45968f08b1ccbdad2e57b9045a12641a5420957de15b8e62e5e8e699d512d8d4e7f4f4077ec89ba1713a9e8f067e57292245f602bc5546431a70598fa39db0 | ||
DIST algol68g-3.5.0.tar.gz 661454 BLAKE2B b46f96672cd9ab18cd74347a3fc71cfb686f10dc6cecd04bfa3dff19f57cc510bc08f61a1562097a0178a3ce562c7348cb3eaed97f0847e69de8dd202a9818ac SHA512 60cba4440a90df30c9114ff6e5e3779b97f0dcdf35778c7ae4c1f21cfacf1d6e16fa3bca353dcb41fb09de9d66b102d7db2ffabb71a2472277a8efb15c12896e |
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,41 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DESCRIPTION="Algol 68 Genie compiler-interpreter" | ||
HOMEPAGE="https://jmvdveer.home.xs4all.nl/en.algol-68-genie.html" | ||
SRC_URI="https://jmvdveer.home.xs4all.nl/${P}.tar.gz" | ||
|
||
LICENSE="GPL-3+" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="+curl +gsl +mpfr +ncurses plotutils postgres +readline" | ||
|
||
RDEPEND=" | ||
curl? ( net-misc/curl ) | ||
gsl? ( sci-libs/gsl:= ) | ||
mpfr? ( dev-libs/mpfr:= ) | ||
plotutils? ( media-libs/plotutils ) | ||
postgres? ( dev-db/postgresql:* ) | ||
readline? ( sys-libs/readline:= ) | ||
" | ||
DEPEND=" | ||
${RDEPEND} | ||
" | ||
|
||
PATCHES=( "${FILESDIR}/${PN}-3.3.21-configure-implicit.patch" ) | ||
|
||
src_configure() { | ||
local -a myconf=( | ||
$(use_enable curl) | ||
$(use_enable gsl) | ||
$(use_enable mpfr) | ||
$(use_enable ncurses curses) | ||
$(use_enable plotutils) | ||
$(use_enable postgres postgresql) | ||
$(use_enable readline) | ||
$(use_with ncurses) | ||
) | ||
econf "${myconf[@]}" | ||
} |