diff options
Diffstat (limited to 'sys-devel/ucpp')
-rw-r--r-- | sys-devel/ucpp/Manifest | 4 | ||||
-rw-r--r-- | sys-devel/ucpp/ucpp-1.3.4.ebuild | 2 | ||||
-rw-r--r-- | sys-devel/ucpp/ucpp-1.3.5.ebuild | 26 |
3 files changed, 30 insertions, 2 deletions
diff --git a/sys-devel/ucpp/Manifest b/sys-devel/ucpp/Manifest index 3a42fc7f5d10..6a9351362e0e 100644 --- a/sys-devel/ucpp/Manifest +++ b/sys-devel/ucpp/Manifest @@ -1,3 +1,5 @@ DIST ucpp-1.3.4.tar.xz 274488 BLAKE2B be43b8c88de2cd32514ecf7dc429c0ca5e88150594c9868fd6d8c3d90a0aabfc6e0f0741d75e4f558de426df7d6c54a3bc7e8e362c5066672f5fe9096cbedc18 SHA512 f9ea88e8f53e728a5b0fcb9084d6d6e140737b00fe350a9c6bc53ef2bb5f7b09d3c9d9a4a2147f635d796247e1b920fd3fea0cdce3ec3f4578694162c2f4c2a6 -EBUILD ucpp-1.3.4.ebuild 591 BLAKE2B 6d80b987090a4cb09458887559090de527c22d0087f0d292e4ee0be0d62fb9afe47294c407ce664753611a7c4b4933acebb37312efbae794832d6704189b9351 SHA512 b033cd3319afb32ad086368aeb4770967079172c2952d756362b2f2eed3ef6bc503d284a93ddedd1e53b8492ce01be07ed0d78818650972b3d9b858fbe7cb5a2 +DIST ucpp-1.3.5.tar.xz 289468 BLAKE2B 6a038cc5d02f080747a321a55af66f2072503a5c0a554492ea8aed34ff9c3b7b85e3778114e18c3e09f06f1472a1479f39c96997404e0345153a1f84e3f9daee SHA512 3ded8f7bc2b238adb6e7f4162aee48e039dfe7cee31b700c38e8f147634d47cd1ceaf39c343549b0d4a58358e6b9743f7e84f87b253dc19c05e543d68ade24ce +EBUILD ucpp-1.3.4.ebuild 574 BLAKE2B 2002a1b0705e980708737550da4a722e8519ddf1c832a7decc7e7e898d66026e36bb24d0ed991b21e7f3fa12f968461e46756016372f56889ebccc4dfc837bd4 SHA512 2ba8452a39a918af48768c515f11510a8db1eab4881357625efba8349776e1b4a276e814dd78602b0c0e2f982a4d65d0a478220483600383e2a377a1e09b6fb1 +EBUILD ucpp-1.3.5.ebuild 620 BLAKE2B 68c704439b47439c0d511c67dd7ea75d1e1636190cee68c2d13422faf59fefb82b2a5fd9c7d33f73bd1ccbe8abbe364a86d849bf5574c75ebd543c0a41395ba9 SHA512 0a6d5b14542313bcc3661674f62bec34ce8a8e6321b863ccdfe43dc3189705e9acecc06c8e71d330f44b8797b6d2e9e705e74d6ddb6946d0f29368b40a3c5ae5 MISC metadata.xml 450 BLAKE2B 0fba16b58542fffb8e1e99af14e6d4b1f24cd4d689e1a31e1cd513794f1f4c5c14eb7b4a39eab5e8c2a9d13433d670778171b6ac73be66e577798149a93db818 SHA512 6e19033ae2cbfe1a02e6fee2ed078600593e3cdbcccd4b86ec4ccb5283e3b3ad300d6bc9b9803b0b1f6a7e5cc49c8a0d955170e1fc7ba1f26ce0a26e3c0bdf48 diff --git a/sys-devel/ucpp/ucpp-1.3.4.ebuild b/sys-devel/ucpp/ucpp-1.3.4.ebuild index c7e8b1fec9e8..febb7024590c 100644 --- a/sys-devel/ucpp/ucpp-1.3.4.ebuild +++ b/sys-devel/ucpp/ucpp-1.3.4.ebuild @@ -3,7 +3,7 @@ EAPI=7 -DESCRIPTION="A quick and light preprocessor, but anyway fully compliant to C99" +DESCRIPTION="Library for preprocessing C compliant to ISO-C99" HOMEPAGE="https://gitlab.com/scarabeusiv/ucpp" SRC_URI="http://dev.gentooexperimental.org/~scarabeus/${P}.tar.xz" LICENSE="BSD" diff --git a/sys-devel/ucpp/ucpp-1.3.5.ebuild b/sys-devel/ucpp/ucpp-1.3.5.ebuild new file mode 100644 index 000000000000..dd47d3413428 --- /dev/null +++ b/sys-devel/ucpp/ucpp-1.3.5.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Library for preprocessing C compliant to ISO-C99" +HOMEPAGE="https://gitlab.com/scarabeusiv/ucpp" +SRC_URI="https://gitlab.com/scarabeusiv/${PN}/uploads/79f08e39c676f15ed8a59335f6c9b924/${P}.tar.xz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux" +IUSE="static-libs" + +src_configure() { + econf \ + --disable-werror \ + $(use_enable static-libs static) +} + +src_install() { + default + + # package provides .pc files + find "${D}" -name '*.la' -type f -delete || die +} |