* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-dickey/
@ 2022-09-09 5:52 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2022-09-09 5:52 UTC (permalink / raw
To: gentoo-commits
commit: 02cc640d67e30895e96f4d3ced59708b4e6b40bb
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 9 05:50:05 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 9 05:52:28 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02cc640d
sys-devel/autoconf-dickey: new package, add 2.52_p20210509
Use same package name as Debian. Needed to be able to
regenerate configure in sys-libs/ncurses (and other
Thomas Dickey packages).
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-dickey/Manifest | 1 +
.../autoconf-dickey-2.52_p20210509.ebuild | 41 ++++++++++++++++++++++
sys-devel/autoconf-dickey/metadata.xml | 8 +++++
3 files changed, 50 insertions(+)
diff --git a/sys-devel/autoconf-dickey/Manifest b/sys-devel/autoconf-dickey/Manifest
new file mode 100644
index 000000000000..0898f0a03ea6
--- /dev/null
+++ b/sys-devel/autoconf-dickey/Manifest
@@ -0,0 +1 @@
+DIST autoconf-2.52-20210509.tgz 874991 BLAKE2B bf8ff6496887f23cce167dfcc5177117ab5514996884998b3237c21e355b34301aabb71dacbff1e171ef21530d745345e584d876b3b5571f4faf863135b4269f SHA512 0203bbe096a2ecbee6bf012fec10a8f90e0b391d5988e202d2a1c718aa856d6c4953fb5e2be215ae635cd6b876b0229d6de1ffc7e2b35cd14684ef7c8294e546
diff --git a/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild b/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild
new file mode 100644
index 000000000000..403065a60182
--- /dev/null
+++ b/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# TODO: verify-sig, adapt toolchain-autoconf to take econf args?
+# TODO: review our old autoconf-2.52 patches?
+
+MY_P=${PN/-dickey}-${PV/_p/-}
+DESCRIPTION="Fork of sys-devel/autoconf for Thomas Dickey's packages"
+HOMEPAGE="https://invisible-island.net/autoconf/autoconf.html"
+SRC_URI="https://invisible-island.net/archives/autoconf/${MY_P}.tgz"
+S="${WORKDIR}"/${MY_P}
+
+LICENSE="GPL-2"
+SLOT="${PV}"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+BDEPEND="
+ >=sys-devel/m4-1.4.16
+ >=dev-lang/perl-5.6
+"
+RDEPEND="${BDEPEND}"
+
+src_prepare() {
+ # usr/bin/libtool is provided by binutils-apple, need gnu libtool
+ #if [[ ${CHOST} == *-darwin* ]] ; then
+ # PATCHES+=( "${FILESDIR}"/${PN}-2.61-darwin.patch )
+ #fi
+
+ default
+}
+
+src_configure() {
+ local myeconfargs=(
+ --datadir=/usr/share/${PN}
+ --program-suffix=-dickey
+ )
+
+ econf "${myeconfargs[@]}"
+}
diff --git a/sys-devel/autoconf-dickey/metadata.xml b/sys-devel/autoconf-dickey/metadata.xml
new file mode 100644
index 000000000000..b0d83aa2e489
--- /dev/null
+++ b/sys-devel/autoconf-dickey/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>base-system@gentoo.org</email>
+ <name>Gentoo Base System</name>
+ </maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-dickey/
@ 2022-09-09 6:14 Fabian Groffen
0 siblings, 0 replies; 8+ messages in thread
From: Fabian Groffen @ 2022-09-09 6:14 UTC (permalink / raw
To: gentoo-commits
commit: 82a395f67d5d46a78caa50e5186e4549fb6d81a2
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 9 06:14:30 2022 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Fri Sep 9 06:14:30 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82a395f6
sys-devel/autoconf-dickey: fix out of prefix install
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild b/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild
index 403065a60182..c02432050d58 100644
--- a/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild
+++ b/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild
@@ -33,7 +33,7 @@ src_prepare() {
src_configure() {
local myeconfargs=(
- --datadir=/usr/share/${PN}
+ --datadir="${EPREFIX}"/usr/share/${PN}
--program-suffix=-dickey
)
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-dickey/
@ 2022-09-09 14:43 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2022-09-09 14:43 UTC (permalink / raw
To: gentoo-commits
commit: 881a6712cd47c459923415c8c86e3bd3d8aa0d3b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 9 14:43:07 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 9 14:43:07 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=881a6712
sys-devel/autoconf-dickey: force -j1 for tests
They still fail, but very differently. May just be because
of grep 3.8.
Closes: https://bugs.gentoo.org/869278
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild b/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild
index c02432050d58..f3ca0509bac2 100644
--- a/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild
+++ b/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild
@@ -39,3 +39,8 @@ src_configure() {
econf "${myeconfargs[@]}"
}
+
+src_test() {
+ # -j1 for bug #869278
+ emake -j1 check
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-dickey/
@ 2022-11-18 3:37 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2022-11-18 3:37 UTC (permalink / raw
To: gentoo-commits
commit: cf883bf2ba6b5bf045ff7d701e956f43140dedc1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 18 03:32:22 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 18 03:32:22 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf883bf2
sys-devel/autoconf-dickey: add github upstream metadata
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-dickey/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/sys-devel/autoconf-dickey/metadata.xml b/sys-devel/autoconf-dickey/metadata.xml
index b0d83aa2e489..d4fcaf15067d 100644
--- a/sys-devel/autoconf-dickey/metadata.xml
+++ b/sys-devel/autoconf-dickey/metadata.xml
@@ -5,4 +5,7 @@
<email>base-system@gentoo.org</email>
<name>Gentoo Base System</name>
</maintainer>
+ <upstream>
+ <remote-id type="github">ThomasDickey/my-autoconf-snapshots</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-dickey/
@ 2022-12-06 16:55 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2022-12-06 16:55 UTC (permalink / raw
To: gentoo-commits
commit: 26750a49bf8752162b982cbdaaa6695a24b26672
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 6 16:25:24 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 6 16:54:55 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26750a49
sys-devel/autoconf-dickey: add 2.52_p20221202
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-dickey/Manifest | 2 ++
.../autoconf-dickey-2.52_p20210509-r1.ebuild | 2 +-
...09-r1.ebuild => autoconf-dickey-2.52_p20221202.ebuild} | 15 +++++++++++----
3 files changed, 14 insertions(+), 5 deletions(-)
diff --git a/sys-devel/autoconf-dickey/Manifest b/sys-devel/autoconf-dickey/Manifest
index 0898f0a03ea6..db6ee2c323ab 100644
--- a/sys-devel/autoconf-dickey/Manifest
+++ b/sys-devel/autoconf-dickey/Manifest
@@ -1 +1,3 @@
DIST autoconf-2.52-20210509.tgz 874991 BLAKE2B bf8ff6496887f23cce167dfcc5177117ab5514996884998b3237c21e355b34301aabb71dacbff1e171ef21530d745345e584d876b3b5571f4faf863135b4269f SHA512 0203bbe096a2ecbee6bf012fec10a8f90e0b391d5988e202d2a1c718aa856d6c4953fb5e2be215ae635cd6b876b0229d6de1ffc7e2b35cd14684ef7c8294e546
+DIST autoconf-2.52-20221202.tgz 877960 BLAKE2B 52ef77d98f5d6e64e4c13e09ef92b3141703238953ad27b6e232cb62407cd56b07a1cad79f4405606f400246e85650925a7035b73119cda70d7faf049b61105c SHA512 8becd8791dbdbcf0801bbed8cbdf70666db10e3c6882b3f8e63e1cf04163818345be573018d96a2e0a28770e13cc452126fb9cb23b223df598c50f59e69c2d1a
+DIST autoconf-2.52-20221202.tgz.asc 729 BLAKE2B 64a528da36243271d1ae1e95e4182c663c571021e617554076bed78e5c12a3f16a2554e3b41ad6372751090ac05770bc59f090ca1e5226aa2c7c5fda48026bbf SHA512 dadf6805072cc072bbd16a939b285c7ab378e23aa0b9e6c808eb11bf40b679cc97cc748c524ac7255a0b47a4815dcd2796c606f963dbbce52a93956ccc8814fd
diff --git a/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509-r1.ebuild b/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509-r1.ebuild
index f3ca0509bac2..e0389543c326 100644
--- a/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509-r1.ebuild
+++ b/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://invisible-island.net/archives/autoconf/${MY_P}.tgz"
S="${WORKDIR}"/${MY_P}
LICENSE="GPL-2"
-SLOT="${PV}"
+SLOT="$(ver_cut 1-2)"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
BDEPEND="
diff --git a/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509-r1.ebuild b/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20221202.ebuild
similarity index 76%
copy from sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509-r1.ebuild
copy to sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20221202.ebuild
index f3ca0509bac2..e1ebff9a61c1 100644
--- a/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509-r1.ebuild
+++ b/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20221202.ebuild
@@ -3,24 +3,31 @@
EAPI=8
-# TODO: verify-sig, adapt toolchain-autoconf to take econf args?
+# TODO: adapt toolchain-autoconf to take econf args?
# TODO: review our old autoconf-2.52 patches?
+VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/thomasdickey.asc
+inherit verify-sig
+
MY_P=${PN/-dickey}-${PV/_p/-}
DESCRIPTION="Fork of sys-devel/autoconf for Thomas Dickey's packages"
HOMEPAGE="https://invisible-island.net/autoconf/autoconf.html"
SRC_URI="https://invisible-island.net/archives/autoconf/${MY_P}.tgz"
+SRC_URI+=" verify-sig? ( https://invisible-island.net/archives/autoconf/${MY_P}.tgz.asc )"
S="${WORKDIR}"/${MY_P}
LICENSE="GPL-2"
-SLOT="${PV}"
+SLOT="$(ver_cut 1-2)"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-BDEPEND="
+RDEPEND="
>=sys-devel/m4-1.4.16
>=dev-lang/perl-5.6
"
-RDEPEND="${BDEPEND}"
+BDEPEND="
+ ${RDEPEND}
+ verify-sig? ( sec-keys/openpgp-keys-thomasdickey )
+"
src_prepare() {
# usr/bin/libtool is provided by binutils-apple, need gnu libtool
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-dickey/
@ 2022-12-06 16:55 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2022-12-06 16:55 UTC (permalink / raw
To: gentoo-commits
commit: d453d5e5fcacd0e69e390151f38c7583d3e95b1f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 6 16:54:14 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 6 16:54:55 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d453d5e5
sys-devel/autoconf-dickey: fix slot
Signed-off-by: Sam James <sam <AT> gentoo.org>
...key-2.52_p20210509.ebuild => autoconf-dickey-2.52_p20210509-r1.ebuild} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
diff --git a/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild b/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509-r1.ebuild
similarity index 100%
rename from sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild
rename to sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509-r1.ebuild
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-dickey/
@ 2022-12-06 20:32 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2022-12-06 20:32 UTC (permalink / raw
To: gentoo-commits
commit: fd64b3dbd2dd3034facdc1a008f5943755cdcdba
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 6 20:31:46 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 6 20:31:46 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd64b3db
sys-devel/autoconf-dickey: add changelog
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-dickey/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys-devel/autoconf-dickey/metadata.xml b/sys-devel/autoconf-dickey/metadata.xml
index d4fcaf15067d..af5286fc415a 100644
--- a/sys-devel/autoconf-dickey/metadata.xml
+++ b/sys-devel/autoconf-dickey/metadata.xml
@@ -6,6 +6,7 @@
<name>Gentoo Base System</name>
</maintainer>
<upstream>
+ <changelog>https://invisible-island.net/autoconf/autoconf-252/ChangeLog</changelog>
<remote-id type="github">ThomasDickey/my-autoconf-snapshots</remote-id>
</upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-dickey/
@ 2023-04-16 3:30 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2023-04-16 3:30 UTC (permalink / raw
To: gentoo-commits
commit: a508d264f948a2c22057b541d46ce1d083726fc3
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 16 03:19:36 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 16 03:19:36 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a508d264
sys-devel/autoconf-dickey: add 2.52_p20230114
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-dickey/Manifest | 2 +
.../autoconf-dickey-2.52_p20230114.ebuild | 53 ++++++++++++++++++++++
2 files changed, 55 insertions(+)
diff --git a/sys-devel/autoconf-dickey/Manifest b/sys-devel/autoconf-dickey/Manifest
index db6ee2c323ab..7d87d6a06ce7 100644
--- a/sys-devel/autoconf-dickey/Manifest
+++ b/sys-devel/autoconf-dickey/Manifest
@@ -1,3 +1,5 @@
DIST autoconf-2.52-20210509.tgz 874991 BLAKE2B bf8ff6496887f23cce167dfcc5177117ab5514996884998b3237c21e355b34301aabb71dacbff1e171ef21530d745345e584d876b3b5571f4faf863135b4269f SHA512 0203bbe096a2ecbee6bf012fec10a8f90e0b391d5988e202d2a1c718aa856d6c4953fb5e2be215ae635cd6b876b0229d6de1ffc7e2b35cd14684ef7c8294e546
DIST autoconf-2.52-20221202.tgz 877960 BLAKE2B 52ef77d98f5d6e64e4c13e09ef92b3141703238953ad27b6e232cb62407cd56b07a1cad79f4405606f400246e85650925a7035b73119cda70d7faf049b61105c SHA512 8becd8791dbdbcf0801bbed8cbdf70666db10e3c6882b3f8e63e1cf04163818345be573018d96a2e0a28770e13cc452126fb9cb23b223df598c50f59e69c2d1a
DIST autoconf-2.52-20221202.tgz.asc 729 BLAKE2B 64a528da36243271d1ae1e95e4182c663c571021e617554076bed78e5c12a3f16a2554e3b41ad6372751090ac05770bc59f090ca1e5226aa2c7c5fda48026bbf SHA512 dadf6805072cc072bbd16a939b285c7ab378e23aa0b9e6c808eb11bf40b679cc97cc748c524ac7255a0b47a4815dcd2796c606f963dbbce52a93956ccc8814fd
+DIST autoconf-2.52-20230114.tgz 878069 BLAKE2B 96e93585088b87acf0c3336e390ef098e9aa5569e2aab2d05e4c963894e076c991b65d93476fc671395d399a7078f8b618166e39052933352f366f8d2ab849d7 SHA512 41427e45b6b9c36dfd65f9b00792e6edc135e3b5fe06b2a0870f9380d96d567036fb3f30e8be28c9443c7557fadf66d1409f59def127a824478db89b5f29f517
+DIST autoconf-2.52-20230114.tgz.asc 729 BLAKE2B 9bcafe59763d2fb169e498ee5542500184974697838497dcd722d43c14e90475e004c0c7ae9fe2bdac523cb9d14ebe82a19d10c3369fe2a035c2f44b60c4d676 SHA512 d60d0155fa20f4808cc49ae06e76a969b82e2b2e5ea4ecd08182b34ca224401eab012659d2519072ca8afdf1ddc2febf8af090cff28990e2b4f2372da13635a8
diff --git a/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20230114.ebuild b/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20230114.ebuild
new file mode 100644
index 000000000000..96b243b974c0
--- /dev/null
+++ b/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20230114.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# TODO: adapt toolchain-autoconf to take econf args?
+# TODO: review our old autoconf-2.52 patches?
+
+VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/thomasdickey.asc
+inherit verify-sig
+
+MY_P=${PN/-dickey}-${PV/_p/-}
+DESCRIPTION="Fork of sys-devel/autoconf for Thomas Dickey's packages"
+HOMEPAGE="https://invisible-island.net/autoconf/autoconf.html"
+SRC_URI="https://invisible-island.net/archives/autoconf/${MY_P}.tgz"
+SRC_URI+=" verify-sig? ( https://invisible-island.net/archives/autoconf/${MY_P}.tgz.asc )"
+S="${WORKDIR}"/${MY_P}
+
+LICENSE="GPL-2"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+RDEPEND="
+ >=sys-devel/m4-1.4.16
+ >=dev-lang/perl-5.6
+"
+BDEPEND="
+ ${RDEPEND}
+ verify-sig? ( sec-keys/openpgp-keys-thomasdickey )
+"
+
+src_prepare() {
+ # usr/bin/libtool is provided by binutils-apple, need gnu libtool
+ #if [[ ${CHOST} == *-darwin* ]] ; then
+ # PATCHES+=( "${FILESDIR}"/${PN}-2.61-darwin.patch )
+ #fi
+
+ default
+}
+
+src_configure() {
+ local myeconfargs=(
+ --datadir="${EPREFIX}"/usr/share/${PN}
+ --program-suffix=-dickey
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_test() {
+ # -j1 for bug #869278
+ emake -j1 check
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-04-16 3:30 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-06 16:55 [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-dickey/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2023-04-16 3:30 Sam James
2022-12-06 20:32 Sam James
2022-12-06 16:55 Sam James
2022-11-18 3:37 Sam James
2022-09-09 14:43 Sam James
2022-09-09 6:14 Fabian Groffen
2022-09-09 5:52 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox