mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-22 14:51:14 +02:00
libfvalue: 20190626 bump
This commit is contained in:
parent
acf7ea862e
commit
48090be1ed
2 changed files with 45 additions and 0 deletions
|
|
@ -1 +1,2 @@
|
|||
DIST libfvalue-experimental-20180817.tar.gz 1225290 BLAKE2B 247672505467704883fdaa71ee8694d88513863e44fe61c6c59b3b258c86abb0fa3a9bd8a93be164cbb7742c97e359d955d901ca21b6e879d21becf48f2641a4 SHA512 f651233487d4e636e00ae8ca46cce97f98d0fad173146664caa8ef4d8a6121d46c3d830115048438da5d537fbcac698c46a07eca7e983aaf6f7c60c1b06bc778
|
||||
DIST libfvalue-experimental-20190626.tar.gz 1238845 BLAKE2B 7efca9d46c1237e5d4db29f712ac4540fe1a731a50212afc8fe82dcc592030c4bbc34c058e3da73f064d65851a135207ef86c9fe921621767500e262149bf2ac SHA512 e8c6ba89f4d7a58898a425dcfc17ebf7e59081693da42c5b17423c2cb2b01b65f8c21daca44fb94578e423cd5f2aa643229a9c5738ce9d4eeb36dfea83afdde5
|
||||
|
|
|
|||
44
dev-libs/libfvalue/libfvalue-20190626.ebuild
Normal file
44
dev-libs/libfvalue/libfvalue-20190626.ebuild
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit versionator autotools
|
||||
|
||||
MY_PV="$(get_major_version)"
|
||||
MY_PV2="experimental"
|
||||
#$(get_after_major_version)"
|
||||
|
||||
DESCRIPTION="Library for generic file value functions"
|
||||
HOMEPAGE="https://github.com/libyal/${PN}"
|
||||
SRC_URI="https://github.com/libyal/${PN}/releases/download/${MY_PV}/${PN}-${MY_PV2}-${MY_PV}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~hppa ~ppc ~x86"
|
||||
IUSE="debug nls"
|
||||
|
||||
DEPEND="dev-libs/libcdata
|
||||
dev-libs/libcerror
|
||||
dev-libs/libcnotify
|
||||
dev-libs/libcthreads
|
||||
dev-libs/libfdatetime
|
||||
dev-libs/libfguid
|
||||
dev-libs/libfwnt
|
||||
dev-libs/libuna"
|
||||
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
S="${WORKDIR}/${PN}-${MY_PV}"
|
||||
|
||||
src_configure() {
|
||||
econf $(use_enable nls) \
|
||||
$(use_with nls libiconv-prefix) \
|
||||
$(use_with nls libintl-prefix) \
|
||||
$(use_enable debug debug-output) \
|
||||
$(use_enable debug verbose-output) \
|
||||
--with-libcdata --with-libcerror \
|
||||
--with-libcnotify --with-libcthreads \
|
||||
--with-libfdatetime --with-libfguid \
|
||||
--with-libfwnt --with-libuna
|
||||
}
|
||||
Loading…
Reference in a new issue