diff options
author | 2024-03-21 07:33:21 -0700 | |
---|---|---|
committer | 2024-03-22 08:17:44 +0200 | |
commit | b0d73c0bbef45ccb55e1c1e0ca5daa7c5ed0d6c8 (patch) | |
tree | ead19a261b9c5a4545a5574a2da4519d9f4654cc /dev-util | |
parent | dev-qt/qtwebsockets: Stabilize 6.6.2 arm64, #927197 (diff) | |
download | gentoo-b0d73c0bbef45ccb55e1c1e0ca5daa7c5ed0d6c8.tar.gz gentoo-b0d73c0bbef45ccb55e1c1e0ca5daa7c5ed0d6c8.tar.bz2 gentoo-b0d73c0bbef45ccb55e1c1e0ca5daa7c5ed0d6c8.zip |
dev-util/rgbds: fix bison dependency
The build uses bison directly and does not use yacc.
Signed-off-by: orbea <orbea@riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/35856
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/rgbds/rgbds-0.6.1.ebuild | 5 | ||||
-rw-r--r-- | dev-util/rgbds/rgbds-0.7.0.ebuild | 6 | ||||
-rw-r--r-- | dev-util/rgbds/rgbds-9999.ebuild | 6 |
3 files changed, 12 insertions, 5 deletions
diff --git a/dev-util/rgbds/rgbds-0.6.1.ebuild b/dev-util/rgbds/rgbds-0.6.1.ebuild index 87cf24b0e1a2..91276f0bb814 100644 --- a/dev-util/rgbds/rgbds-0.6.1.ebuild +++ b/dev-util/rgbds/rgbds-0.6.1.ebuild @@ -20,7 +20,10 @@ SLOT="0" DEPEND="media-libs/libpng" RDEPEND="${DEPEND}" -BDEPEND="virtual/pkgconfig" +BDEPEND=" + sys-devel/bison + virtual/pkgconfig +" src_compile() { append-flags -DNDEBUG diff --git a/dev-util/rgbds/rgbds-0.7.0.ebuild b/dev-util/rgbds/rgbds-0.7.0.ebuild index dad5871d9c6d..96b85fe6003d 100644 --- a/dev-util/rgbds/rgbds-0.7.0.ebuild +++ b/dev-util/rgbds/rgbds-0.7.0.ebuild @@ -20,8 +20,10 @@ SLOT="0" DEPEND="media-libs/libpng" RDEPEND="${DEPEND}" -BDEPEND="app-alternatives/yacc[bison] - virtual/pkgconfig" +BDEPEND=" + sys-devel/bison + virtual/pkgconfig +" src_compile() { append-flags -DNDEBUG diff --git a/dev-util/rgbds/rgbds-9999.ebuild b/dev-util/rgbds/rgbds-9999.ebuild index 1c56a141d6b9..0a79e0043a34 100644 --- a/dev-util/rgbds/rgbds-9999.ebuild +++ b/dev-util/rgbds/rgbds-9999.ebuild @@ -20,8 +20,10 @@ SLOT="0" DEPEND="media-libs/libpng" RDEPEND="${DEPEND}" -BDEPEND="app-alternatives/yacc[bison] - virtual/pkgconfig" +BDEPEND=" + sys-devel/bison + virtual/pkgconfig +" src_compile() { append-flags -DNDEBUG |