diff options
Diffstat (limited to 'sci-libs/libh2o')
-rw-r--r-- | sci-libs/libh2o/Manifest | 3 | ||||
-rw-r--r-- | sci-libs/libh2o/libh2o-0.2.1-r1.ebuild | 6 | ||||
-rw-r--r-- | sci-libs/libh2o/libh2o-9999.ebuild | 37 |
3 files changed, 4 insertions, 42 deletions
diff --git a/sci-libs/libh2o/Manifest b/sci-libs/libh2o/Manifest index 9e165fac64c1..00bf81b855a9 100644 --- a/sci-libs/libh2o/Manifest +++ b/sci-libs/libh2o/Manifest @@ -1,4 +1,3 @@ DIST libh2o-0.2.1.tar.bz2 290418 BLAKE2B a1de444e13d8ceb65af73eb7fc8f0b35ff59377fa72417b1cf2ee4d919a44d31f356ed14dc0bf9c04ca6f3e5cce71bed7552e98a30f5b134f7a5d322845bf105 SHA512 e2fb14171aa401e85edcef6be36bfd2af31a7da2db03bc77c41fd58962a8e2616bbbd43adb268c262b848d044c9d33016c504ce770f5cfe0d585d05dacc63e2a -EBUILD libh2o-0.2.1-r1.ebuild 597 BLAKE2B 2374db74af4e9cd5c40c9bf8dc438db95b62bd469ecdef2f575aac298c5e730338ed267952ccde02537565d2b11ca330859c4373dab77c36f4008f8d9c99b82a SHA512 2b648c1a16d8059c02fdcf1c3c57d26cb926ea66831473e0497bbe9b4419c53e5fc42eaf4d194d4731bc3c5441210a329fd316aa6bd524b8f1f1945d784bbb30 -EBUILD libh2o-9999.ebuild 638 BLAKE2B 8cc669e90631baa193f0af2600d1fa409f84ac4ac5f0c955e6782b421dcccbe9dc1d99e5eec40112b67ff25d801a6c51f1e5f206cbe4991ea2a71a95d66e6050 SHA512 1dd674261ab0423d1d66f61e48731ae3209e11d30d56d836ad29b589d17e82ad9803d831035b46dc6ff316a22bc101ff4628be85c42aa7f9a56d856805250fac +EBUILD libh2o-0.2.1-r1.ebuild 587 BLAKE2B b58502b2f065eb9314d51969b9ba7bb480df8964da12b7fa932fb4d95088ea7b7ebb41cf8e20ad842e322891f505f0a6d9221829c10b2a33d8ee3805cb921794 SHA512 b8606ee73f004b326f6cef57b3a230c9d194c15e06e1692854e833c9132d1e240ccbb01817cd42b32d090b425de2d2ad7edd79e2c2ff2dfd85bf9acf8e239e5a MISC metadata.xml 501 BLAKE2B 6eb77e4e388dd5c0cabe3d85563c8bd58b8053ed68f33b4b36d78836ff3507a9168ec568aa7aa179acfe9bda97ac755db13c5fa615b89356c5d293191cf2c736 SHA512 87be30fa6955758d194d0f50b1102d337157cfad6ba35ef346afa7e960c9885f2bbdefd5432fb783aa99339702986d7e287db8a3cec1398e8d5fbb57e78806f9 diff --git a/sci-libs/libh2o/libh2o-0.2.1-r1.ebuild b/sci-libs/libh2o/libh2o-0.2.1-r1.ebuild index 2b52c92af381..9ef03933234f 100644 --- a/sci-libs/libh2o/libh2o-0.2.1-r1.ebuild +++ b/sci-libs/libh2o/libh2o-0.2.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,12 +12,12 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="debug static-libs" -DEPEND="virtual/pkgconfig" +RDEPEND="!www-servers/h2o" +BDEPEND="virtual/pkgconfig" src_configure() { local myconf=( $(use_enable debug) - $(use_enable static-libs static) ) econf "${myconf[@]}" diff --git a/sci-libs/libh2o/libh2o-9999.ebuild b/sci-libs/libh2o/libh2o-9999.ebuild deleted file mode 100644 index 731e477a3910..000000000000 --- a/sci-libs/libh2o/libh2o-9999.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools git-r3 - -DESCRIPTION="Library of routines for IF97 water & steam properties" -HOMEPAGE="https://github.com/mgorny/libh2o/" -SRC_URI="" -EGIT_REPO_URI="https://github.com/mgorny/libh2o.git" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="" -IUSE="debug static-libs" - -DEPEND="virtual/pkgconfig" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - local myconf=( - $(use_enable debug) - $(use_enable static-libs static) - ) - - econf "${myconf[@]}" -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -} |