diff --git a/dev-libs/libcfile/Manifest b/dev-libs/libcfile/Manifest index 69b1f8610..223faf723 100644 --- a/dev-libs/libcfile/Manifest +++ b/dev-libs/libcfile/Manifest @@ -1 +1,2 @@ DIST libcfile-alpha-20170105.tar.gz 1774491 BLAKE2B 678f5d53bc05943f41d8b741ea6d7374cef31cfbbe07cf4fd4e4abeb3cbe12ba08727973768f1983a7dbfd7fdf9df0e4e5e94207d4bf68922bdc5ae6e5bda02e SHA512 3ed6b6025b8ab194437234050f31c14c9499289566bbd4c0a4ee0b5b123f465987bf0d02a1455f3f844085c932c962d7b58bec2a927bc4043f9376cac1362c86 +DIST libcfile-alpha-20180102.tar.gz 1773541 BLAKE2B e03db86094a52dcbca393aa0d9e7a039541fa127e7974f863dc108d3cfbd8d6a8d8e7997f655cae0f25d65b1f79a88ff7a51a1d24638d925e75c25a11638618d SHA512 ee4e277d88c269707dc993587400e713d72f44ee9d0b33e03f43ae2ee51a28f648f874811dcfc70cf5efdacc30cdb6b5586c53b624d1ee95da1da755cc4e02d9 diff --git a/dev-libs/libcfile/libcfile-20180102.ebuild b/dev-libs/libcfile/libcfile-20180102.ebuild new file mode 100644 index 000000000..8fa9e269f --- /dev/null +++ b/dev-libs/libcfile/libcfile-20180102.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Library for cross-platform C file functions" +HOMEPAGE="https://github.com/libyal/${PN}" +SRC_URI="https://github.com/libyal/${PN}/releases/download/${PV}/${PN}-alpha-${PV}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="nls unicode debug" + +DEPEND="dev-libs/libcerror + dev-libs/libclocale + dev-libs/libcnotify + dev-libs/libuna + nls? ( virtual/libiconv + virtual/libintl )" +RDEPEND="${DEPEND}" + +src_configure() { + econf $(use_enable nls) \ + $(use_with nls libiconv-prefix) \ + $(use_with nls libintl-prefix) \ + $(use_enable unicode wide-character-type) \ + $(use_enable debug verbose-output ) \ + $(use_enable debug debug-output ) \ + --with-libcerror --with-libclocale \ + --with-libcnotify --with-libuna +} diff --git a/dev-libs/libcpath/Manifest b/dev-libs/libcpath/Manifest index 3bfa7ac4a..4f503bf65 100644 --- a/dev-libs/libcpath/Manifest +++ b/dev-libs/libcpath/Manifest @@ -1 +1,2 @@ -DIST libcpath-alpha-20170108.tar.gz 981517 SHA256 5d217281acbbfcb428fb47db195e0d29ecbf8581565097594d292c7d5c60812a SHA512 f258a03a36cab3a5a35082be43c53f70ee439503633b4e752cd82de3492904e7dde2c533d28d3c52ce2ed74513a8e2ac2d02e6276495ff602a6fb3a24535af9c WHIRLPOOL fa26b18b8cb0f18b62f89e5ae428ac2ada0be42ff953a107e93f9f264597360f615c851c847aeeb59f6e38e69c568a218a39912072b2be5f4215dc6bbcf8e311 +DIST libcpath-alpha-20170108.tar.gz 981517 BLAKE2B 4635d53aa640a443728dc41e6dfb235ce61a3777ed2bf1af9d7f330ac6da697cdba889abdd27ca986e0c97d9171ce5a541c83f2dd55f6c4e9ba4d429c15f060b SHA512 f258a03a36cab3a5a35082be43c53f70ee439503633b4e752cd82de3492904e7dde2c533d28d3c52ce2ed74513a8e2ac2d02e6276495ff602a6fb3a24535af9c +DIST libcpath-alpha-20171210.tar.gz 982107 BLAKE2B 3687df6023e36f99b28bfcc8f0e366f771ada7a5a9881b1b2e7ca6a5868c3b9253115f67735766dc6315dc666fcb4069d08cf928136f6fa2cbb26aa4a6421e73 SHA512 61db5100ee7fcb376ec407a97e13180b2372424c3a21cf937687dc05f2448a3752f7385c3b693df4a7106e0d2bf9949a499f502154211658e57231816b6ebdd6 diff --git a/dev-libs/libcpath/libcpath-20171210.ebuild b/dev-libs/libcpath/libcpath-20171210.ebuild new file mode 100644 index 000000000..4231e0242 --- /dev/null +++ b/dev-libs/libcpath/libcpath-20171210.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils + +#MY_PV="$(get_major_version)" +#MY_PV2="$(get_after_major_version)" + +DESCRIPTION="Library for cross-platform C path functions" +HOMEPAGE="https://github.com/libyal/${PN}" +SRC_URI="https://github.com/libyal/${PN}/releases/download/${PV}/${PN}-alpha-${PV}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~x86" +IUSE="nls unicode" + +DEPEND="dev-libs/libcerror + dev-libs/libclocale + dev-libs/libcsplit + dev-libs/libuna" + +RDEPEND="${DEPEND}" + +src_configure() { + econf $(use_enable nls) \ + $(use_with nls libiconv-prefix) \ + $(use_with nls libintl-prefix) \ + $(use_enable unicode wide-character-type) \ + --with-libcerror --with-libclocale \ + --with-libcsplit --with-libuna +}