commit: 414fd23ec259628fba08d97ae2b11902076dbd13
parent 37c526c1133f5c1115eee0f6a937373715379459
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Fri, 26 Jul 2024 05:32:28 +0200
dev-util/oyacc: fix mandir
Diffstat:
2 files changed, 26 insertions(+), 26 deletions(-)
diff --git a/dev-util/oyacc/oyacc-6.6-r1.ebuild b/dev-util/oyacc/oyacc-6.6-r1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2024 Haelwenn (lanodan) Monnier <contact@hacktivis.me>
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Portable OpenBSD Yacc"
+HOMEPAGE="https://github.com/ibara/yacc"
+SRC_URI="https://github.com/ibara/yacc/archive/refs/tags/oyacc-${PV}.tar.gz"
+S="${WORKDIR}/yacc-oyacc-${PV}/"
+LICENSE="BSD ISC public-domain"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="static"
+
+src_configure() {
+ # Somehow BINDIR isn't set in the generated Makefile
+ export BINDIR="${EPREFIX}/usr/bin"
+
+ # --disable-yacc: Installs as oyacc+oyyfix rather than yacc+yyfix
+ ./configure \
+ --prefix="${EPREFIX}/usr" \
+ --mandir="${EPREFIX}/usr/share/man/man1" \
+ --disable-yacc \
+ $(use_enable static) \
+ || die
+}
diff --git a/dev-util/oyacc/oyacc-6.6.ebuild b/dev-util/oyacc/oyacc-6.6.ebuild
@@ -1,26 +0,0 @@
-# Copyright 2024 Haelwenn (lanodan) Monnier <contact@hacktivis.me>
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Portable OpenBSD Yacc"
-HOMEPAGE="https://github.com/ibara/yacc"
-SRC_URI="https://github.com/ibara/yacc/archive/refs/tags/oyacc-${PV}.tar.gz"
-S="${WORKDIR}/yacc-oyacc-${PV}/"
-LICENSE="BSD ISC public-domain"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="static"
-
-src_configure() {
- # Somehow BINDIR isn't set in the generated Makefile
- export BINDIR="${EPREFIX}/usr/bin"
-
- # --disable-yacc: Installs as oyacc+oyyfix rather than yacc+yyfix
- ./configure \
- --prefix="${EPREFIX}/usr" \
- --mandir="${EPREFIX}/usr/share/man" \
- --disable-yacc \
- $(use_enable static) \
- || die
-}