diff options
author | Sam James <sam@gentoo.org> | 2023-05-14 09:04:45 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-05-14 09:06:10 +0100 |
commit | b297ef3e92e4e810409341e2f9e77b475ddb3cce (patch) | |
tree | b856595deef41bb643822b169c54c74c360b79b8 /dev-vcs | |
parent | sci-libs/pytorch: add 2.0.1 (diff) | |
download | gentoo-b297ef3e92e4e810409341e2f9e77b475ddb3cce.tar.gz gentoo-b297ef3e92e4e810409341e2f9e77b475ddb3cce.tar.bz2 gentoo-b297ef3e92e4e810409341e2f9e77b475ddb3cce.zip |
dev-vcs/cssc: fix disable-valgrind flag
Closes: https://bugs.gentoo.org/906318
Fixes: 6952d230a11be325d68ec744cc7f8cffadbcde60
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/cssc/cssc-1.4.1.ebuild | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/dev-vcs/cssc/cssc-1.4.1.ebuild b/dev-vcs/cssc/cssc-1.4.1.ebuild index 3705d88715ba..e8d51771989e 100644 --- a/dev-vcs/cssc/cssc-1.4.1.ebuild +++ b/dev-vcs/cssc/cssc-1.4.1.ebuild @@ -2,16 +2,18 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit autotools CSSC_PN="${PN^^}" CSSC_P="${CSSC_PN}-${PV}" DESCRIPTION="The GNU Project's replacement for SCCS" -SRC_URI="mirror://gnu/${PN}/${CSSC_P}.tar.gz" HOMEPAGE="https://www.gnu.org/software/cssc/" -SLOT="0" +SRC_URI="mirror://gnu/${PN}/${CSSC_P}.tar.gz" + LICENSE="GPL-3" +SLOT="0" KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="test" RESTRICT="!test? ( test )" @@ -32,7 +34,7 @@ src_prepare() { src_configure() { # Valgrind is only used for tests econf \ - --disable-valgrind \ + --without-valgrind \ --enable-binary } |