mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-08 20:43:38 +02:00
libvshadow: drop old
This commit is contained in:
parent
dbc6b742f6
commit
da4638195f
4 changed files with 0 additions and 226 deletions
|
|
@ -1,4 +1 @@
|
|||
DIST libvshadow-alpha-20181216.tar.gz 1415238 BLAKE2B 9b89a278443bbf203ad4a458a9b330d92400a1c8c711075c612c054e0506180af29a7f3b62960440edd92301e2f17e9f620705ac3396a0e10d634568a176dde2 SHA512 3deaa92d1c9e7ddfb6f2dac441c1e4d16bed376a163b2f4283056fb7d4f4bb91b4f378edf1908caf55fa32e5e09b3a9eb580d2fd8209fafd24257eaec2f1584f
|
||||
DIST libvshadow-alpha-20190127.tar.gz 1431067 BLAKE2B 60ce02306dbfc17ccadb4383cc6f7c9be625a14c48aba1b6f9249543226ee9ecd3621ad2f027df44a5e4532e784e5e363d55a795c60ed7717574f4d5f9fc66dc SHA512 db09898316f3e390b76a278b8a4f3c3e6e8054b5921975d8adf11241fcc03ff81d8595318f852153155e5931dd7bd448c38565e81d6880b95dba952d83930921
|
||||
DIST libvshadow-alpha-20190323.tar.gz 1431122 BLAKE2B f39bfa2f6dca339ac15cb3809f6b86cd12efd9dfa9efcaf1d0c6ac78dcd354f3fb168ec84d973ecc7dcaabc69cdcf9bffdf070fbdac114d599dcecf300ed74e9 SHA512 0563e8742c7dae5420ba1f425f1fc96f62d8930a347a00d244d382d4d76194c3bfee4f3def7d03efaf18f78f1af4fa822d43ff8df7b449e7fb61ad657e59fc84
|
||||
DIST libvshadow-alpha-20191221.tar.gz 1445958 BLAKE2B a5dec2e41edb893d5cc7510a021db34f267b725c90993b7f867e58a0a630dbf61566e2bd248b463ccd68a1c402b20a69e6ea1d2441d95f2534578e22f6b32ffb SHA512 745d8916bb5d935207f2dd77a5fbd73ea4527ab16f75a44a17d8a2014a0d942fdf6f9937d7de752d78c598a419d5a05580afba1701ef836691e565510d32b62e
|
||||
|
|
|
|||
|
|
@ -1,79 +0,0 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
#FIXME: add python3 support
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
inherit python-single-r1 eutils autotools
|
||||
|
||||
#COMMIT_HASH="3e58d2808093f255df13abcce70ead809b29c62a"
|
||||
|
||||
DESCRIPTION="Library and tools to support the Volume Shadow Snapshot (VSS) format."
|
||||
HOMEPAGE="https://github.com/libyal/libvshadow"
|
||||
#SRC_URI="https://github.com/libyal/${PN}/archive/${COMMIT_HASH}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI="https://github.com/libyal/${PN}/releases/download/${PV}/${PN}-alpha-${PV}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-3+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
#unicode: https://github.com/libyal/libvshadow/issues/17
|
||||
IUSE="debug python nls"
|
||||
|
||||
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
|
||||
|
||||
DEPEND="nls? ( virtual/libintl
|
||||
virtual/libiconv
|
||||
)
|
||||
python? ( dev-lang/python:* )
|
||||
sys-fs/fuse:*
|
||||
app-forensics/libbfio
|
||||
|
||||
dev-libs/libcdata
|
||||
dev-libs/libcerror
|
||||
dev-libs/libcfile
|
||||
dev-libs/libclocale
|
||||
dev-libs/libcnotify
|
||||
dev-libs/libcpath
|
||||
dev-libs/libcsplit
|
||||
dev-libs/libcthreads
|
||||
dev-libs/libfdatetime
|
||||
dev-libs/libfguid
|
||||
dev-libs/libuna
|
||||
"
|
||||
|
||||
RDEPEND="${DEPEND}
|
||||
python? ( ${PYTHON_DEPS} )
|
||||
sys-fs/fuse"
|
||||
|
||||
#S="${WORKDIR}/${PN}-${COMMIT_HASH}"
|
||||
|
||||
src_prepare() {
|
||||
#https://github.com/libyal/libcthreads/issues/6
|
||||
#sed -i -e '/libcerror\/Makefile/d' configure.ac
|
||||
#sed -i -e '/libcerror/d' Makefile.am
|
||||
epatch "${FILESDIR}/${PN}"_autoconfig.patch
|
||||
|
||||
#workaround, see https://github.com/libyal/libvshadow/issues/10
|
||||
echo "#define HAVE_ERRNO_H 1" >> common/config.h.in
|
||||
|
||||
#the makefile was created with 1.16, let's re-generate them
|
||||
eautoreconf
|
||||
eapply_user
|
||||
}
|
||||
|
||||
# $(use_enable unicode wide-character-type) \
|
||||
src_configure() {
|
||||
econf $(use_enable python) \
|
||||
$(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-libcfile \
|
||||
# --with-libclocale --with-libcnotify --with-libcpath \
|
||||
# --with-libcsplit --with-libcthreads --with-libfdatetime \
|
||||
# --with-libfguid --with-libuna
|
||||
}
|
||||
|
|
@ -1,72 +0,0 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
#FIXME: add python3 support
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
inherit python-single-r1 eutils autotools
|
||||
|
||||
DESCRIPTION="Library and tools to support the Volume Shadow Snapshot (VSS) format."
|
||||
HOMEPAGE="https://github.com/libyal/libvshadow"
|
||||
SRC_URI="https://github.com/libyal/${PN}/releases/download/${PV}/${PN}-alpha-${PV}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-3+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
#unicode: https://github.com/libyal/libvshadow/issues/17
|
||||
IUSE="debug python nls unicode"
|
||||
|
||||
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
|
||||
|
||||
DEPEND="nls? ( virtual/libintl
|
||||
virtual/libiconv
|
||||
)
|
||||
python? ( dev-lang/python:* )
|
||||
sys-fs/fuse:*
|
||||
app-forensics/libbfio
|
||||
|
||||
>=dev-libs/libcdata-20190112
|
||||
dev-libs/libcerror
|
||||
dev-libs/libcfile
|
||||
dev-libs/libclocale
|
||||
dev-libs/libcnotify
|
||||
dev-libs/libcpath
|
||||
dev-libs/libcsplit
|
||||
dev-libs/libcthreads
|
||||
dev-libs/libfdatetime
|
||||
dev-libs/libfguid
|
||||
dev-libs/libuna
|
||||
"
|
||||
|
||||
RDEPEND="${DEPEND}
|
||||
python? ( ${PYTHON_DEPS} )
|
||||
sys-fs/fuse"
|
||||
|
||||
src_prepare() {
|
||||
#upstream does not support its own shared libraries, let's fix that
|
||||
eapply "${FILESDIR}/${PN}"_2019_autoconfig.patch
|
||||
|
||||
#workaround, see https://github.com/libyal/libvshadow/issues/10
|
||||
# echo "#define HAVE_ERRNO_H 1" >> common/config.h.in
|
||||
|
||||
#makefile was created with 1.16, let's regenerate it
|
||||
eautoreconf
|
||||
eapply_user
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf $(use_enable python) \
|
||||
$(use_enable unicode wide-character-type) \
|
||||
$(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-libcfile \
|
||||
# --with-libclocale --with-libcnotify --with-libcpath \
|
||||
# --with-libcsplit --with-libcthreads --with-libfdatetime \
|
||||
# --with-libfguid --with-libuna
|
||||
}
|
||||
|
|
@ -1,72 +0,0 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
#FIXME: add python3 support
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
inherit python-single-r1 eutils autotools
|
||||
|
||||
DESCRIPTION="Library and tools to support the Volume Shadow Snapshot (VSS) format."
|
||||
HOMEPAGE="https://github.com/libyal/libvshadow"
|
||||
SRC_URI="https://github.com/libyal/${PN}/releases/download/${PV}/${PN}-alpha-${PV}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-3+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
#unicode: https://github.com/libyal/libvshadow/issues/17
|
||||
IUSE="debug python nls unicode"
|
||||
|
||||
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
|
||||
|
||||
DEPEND="nls? ( virtual/libintl
|
||||
virtual/libiconv
|
||||
)
|
||||
python? ( dev-lang/python:* )
|
||||
sys-fs/fuse:*
|
||||
app-forensics/libbfio
|
||||
|
||||
>=dev-libs/libcdata-20190112
|
||||
dev-libs/libcerror
|
||||
dev-libs/libcfile
|
||||
dev-libs/libclocale
|
||||
dev-libs/libcnotify
|
||||
dev-libs/libcpath
|
||||
dev-libs/libcsplit
|
||||
dev-libs/libcthreads
|
||||
dev-libs/libfdatetime
|
||||
dev-libs/libfguid
|
||||
dev-libs/libuna
|
||||
"
|
||||
|
||||
RDEPEND="${DEPEND}
|
||||
python? ( ${PYTHON_DEPS} )
|
||||
sys-fs/fuse"
|
||||
|
||||
src_prepare() {
|
||||
#upstream does not support its own shared libraries, let's fix that
|
||||
eapply "${FILESDIR}/${PN}"_2019_autoconfig.patch
|
||||
|
||||
#workaround, see https://github.com/libyal/libvshadow/issues/10
|
||||
# echo "#define HAVE_ERRNO_H 1" >> common/config.h.in
|
||||
|
||||
#makefile was created with 1.16, let's regenerate it
|
||||
eautoreconf
|
||||
eapply_user
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf $(use_enable python) \
|
||||
$(use_enable unicode wide-character-type) \
|
||||
$(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-libcfile \
|
||||
# --with-libclocale --with-libcnotify --with-libcpath \
|
||||
# --with-libcsplit --with-libcthreads --with-libfdatetime \
|
||||
# --with-libfguid --with-libuna
|
||||
}
|
||||
Loading…
Reference in a new issue