dev-scheme/guile-gi: drop useless static-libs USE flag

as QA requested
https://projects.gentoo.org/qa/policy-guide/installed-files.html#pg0302

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2022-05-17 22:41:32 +02:00
parent 1c3fc0ab4e
commit 2b5ccfe9e3
3 changed files with 6 additions and 18 deletions

View File

@@ -18,7 +18,6 @@ fi
LICENSE="GPL-3"
SLOT="0"
IUSE="static-libs"
RESTRICT="strip test" # Tests fail
DEPEND="
@@ -43,15 +42,12 @@ src_prepare() {
}
src_configure() {
econf --enable-introspection=yes $(use_enable static-libs static)
econf --disable-static --enable-introspection=yes
}
src_install() {
default
mv "${D}"/usr/share/doc/${PN} "${D}"/usr/share/doc/${PF} || die
if ! use static-libs ; then
find "${ED}" -type f -name '*.la' -delete || die
fi
find "${ED}" -type f -name '*.la' -delete || die
}

View File

@@ -18,7 +18,6 @@ fi
LICENSE="GPL-3"
SLOT="0"
IUSE="static-libs"
RESTRICT="strip"
DEPEND="
@@ -43,7 +42,7 @@ src_prepare() {
}
src_configure() {
econf --enable-introspection=yes $(use_enable static-libs static)
econf --disable-static --enable-introspection=yes
}
src_test() {
@@ -54,8 +53,5 @@ src_install() {
default
mv "${D}"/usr/share/doc/${PN} "${D}"/usr/share/doc/${PF} || die
if ! use static-libs ; then
find "${ED}" -type f -name '*.la' -delete || die
fi
find "${ED}" -type f -name '*.la' -delete || die
}

View File

@@ -18,7 +18,6 @@ fi
LICENSE="GPL-3"
SLOT="0"
IUSE="static-libs"
RESTRICT="strip"
DEPEND="
@@ -43,7 +42,7 @@ src_prepare() {
}
src_configure() {
econf --enable-introspection=yes $(use_enable static-libs static)
econf --disable-static --enable-introspection=yes
}
src_test() {
@@ -54,8 +53,5 @@ src_install() {
default
mv "${D}"/usr/share/doc/${PN} "${D}"/usr/share/doc/${PF} || die
if ! use static-libs ; then
find "${ED}" -type f -name '*.la' -delete || die
fi
find "${ED}" -type f -name '*.la' -delete || die
}