diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-06-09 00:08:14 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-06-09 00:08:14 +0100 |
commit | 4fe228ee9aa3b9b825d54ace549a5517e153e8bd (patch) | |
tree | 90a261e3ea59b80722d70d3c42f3e40d16c9f8dd /sci-libs | |
parent | adc09cc4e6ebf7931735c02c0c272b4b885c2b30 (diff) |
gentoo auto-resync : 09:06:2024 - 00:08:13
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/Manifest.gz | bin | 44335 -> 44344 bytes | |||
-rw-r--r-- | sci-libs/libticables2/Manifest | 2 | ||||
-rw-r--r-- | sci-libs/libticables2/libticables2-1.3.5-r1.ebuild (renamed from sci-libs/libticables2/libticables2-1.3.5.ebuild) | 31 |
3 files changed, 18 insertions, 15 deletions
diff --git a/sci-libs/Manifest.gz b/sci-libs/Manifest.gz Binary files differindex 0b6a6e8447ec..1e91fce6ea5a 100644 --- a/sci-libs/Manifest.gz +++ b/sci-libs/Manifest.gz diff --git a/sci-libs/libticables2/Manifest b/sci-libs/libticables2/Manifest index 9966af384a4f..0f7cdbeb9d16 100644 --- a/sci-libs/libticables2/Manifest +++ b/sci-libs/libticables2/Manifest @@ -1,3 +1,3 @@ DIST libticables2-1.3.5.tar.bz2 187416 BLAKE2B aea17b04783ff09a0f36fff60938c6f954f832b33dceec427e11b29b16e442921370b3cb43cb7c8d70dad854e3e9894a1d52378fed3cf232f38d69757725ad41 SHA512 171abdf41f496891c62da17a2b84d929ac32021b0f2abc0c37ed73ec93806d4a14df37a8ffbe2b0c172ff3461aa6c639fc1ba23aafb19e024b99448dd66c63bd -EBUILD libticables2-1.3.5.ebuild 1206 BLAKE2B 4ea63b66eb176c84b95da7d2ea338810c09aa9727d21191e6f4847b5eecd53a9a0f89f3a4756e66d38a7d8e7b0b789fef025f8f10a7e0b75d1a540349cfc5f80 SHA512 c9275f04ceb4cf7ee8bd010ba92a50d88b77d03c1a2d0dc99d735d450a5a5863926aad7ab5fb608b902c986836919ac59562812d11f42340e6f6d53b466fb7fa +EBUILD libticables2-1.3.5-r1.ebuild 1179 BLAKE2B 2d0e11bae9167abf4507311af490a8f74698a9a6770e25d632c66296bd13423bcd07fa19a7bfa127fab252b76286342a509de16e9f98c95565e4f150b2820c12 SHA512 69971fbe5f1207c501ff7c46a9264cd173b0927bd1300b1f69433fc148bb8887c8f429c7d514c42f3d160f84a0e4df35888df0666e52af006c8894b20f426188 MISC metadata.xml 609 BLAKE2B 92806a8b2e59db29df53afbcb5675aeeb47f2646aaff459f74b956e20bc325d62ced385d00342198f2a2f8612e314470005694755bb212f001ca0158ba54132d SHA512 384cf269e2f243a4a9b2d01352d88f8bf044d3edfe70cd8fe2ddd7a37341c7a05adbb1db3650cdc49368b90637fc6c8c46f0d17e8914bcf6bb7477bf89853025 diff --git a/sci-libs/libticables2/libticables2-1.3.5.ebuild b/sci-libs/libticables2/libticables2-1.3.5-r1.ebuild index 7f0e4f959203..f71abc217606 100644 --- a/sci-libs/libticables2/libticables2-1.3.5.ebuild +++ b/sci-libs/libticables2/libticables2-1.3.5-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit autotools @@ -17,11 +17,13 @@ IUSE="debug doc nls static-libs usb" RDEPEND=" dev-libs/glib:2 usb? ( virtual/libusb:1 ) - nls? ( virtual/libintl )" - -DEPEND="${RDEPEND} + nls? ( virtual/libintl ) +" +DEPEND="${RDEPEND}" +BDEPEND=" virtual/pkgconfig - nls? ( sys-devel/gettext )" + nls? ( sys-devel/gettext ) +" DOCS=( AUTHORS LOGO NEWS README ChangeLog docs/api.txt ) @@ -31,23 +33,24 @@ src_prepare() { } src_configure() { - # --disable-libusb $(use_enable usb libusb10) would enable virtual/libusb:1 - econf \ - --disable-rpath \ - $(use_enable static-libs static) \ - $(use_enable debug logging) \ - $(use_enable nls) \ - $(use_enable usb libusb) \ + local myeconfargs=( + --disable-rpath + $(use_enable static-libs static) + $(use_enable debug logging) + $(use_enable nls) + $(use_enable usb libusb) $(use_enable usb libusb10) + ) + econf "${myeconfargs[@]}" } src_install() { use doc && HTML_DOCS+=( docs/html/. ) default - find "${D}" -name '*.la' -delete || die + find "${D}" -type f -name '*.la' -delete || die } pkg_postinst() { - elog "Please read README in ${EROOT%/}/usr/share/doc/${PF}" + elog "Please read README in ${EROOT}/usr/share/doc/${PF}" elog "if you encounter any problem with a link cable" } |