mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-08 20:43:38 +02:00
Merge pull request #1281 from vwegert/add-libpst
added ebuild for libpst
This commit is contained in:
commit
4a5721d1c0
3 changed files with 43 additions and 0 deletions
1
app-misc/libpst/Manifest
Normal file
1
app-misc/libpst/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST libpst-0.6.76.tar.gz 12886768 BLAKE2B 7dccaa4e6962789921de574e522435d8ee7e0f25bcefa1bd43b6480d8290fe58e653d3b0cf61711e73e75854079d0e1f9a0aece33ad6a5e8d487b7ee2bccf463 SHA512 43b621ec089ff81714d4bd768178bd56efb15da27c4fe3dc18372337e5898072b17a58feb6b3dd88a805a38c757f6a97e2da89432da101df5345e3d0daf166b4
|
||||
30
app-misc/libpst/libpst-0.6.76.ebuild
Normal file
30
app-misc/libpst/libpst-0.6.76.ebuild
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
# Copyright 2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DESCRIPTION="Utilities to read and convert MS Outlook personal folders (.pst) files."
|
||||
HOMEPAGE="https://www.five-ten-sg.com/libpst/"
|
||||
SRC_URI="https://www.five-ten-sg.com/libpst/packages/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="debug static shared python profiling"
|
||||
|
||||
DEPEND="
|
||||
gnome-extra/libgsf
|
||||
sys-libs/zlib
|
||||
python? ( dev-libs/boost[python] )
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND=""
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
$(use_enable debug pst-debug) \
|
||||
$(use_enable static static-tools) \
|
||||
$(use_enable shared libpst-shared) \
|
||||
$(use_enable python) \
|
||||
$(use_enable profiling)
|
||||
}
|
||||
12
app-misc/libpst/metadata.xml
Normal file
12
app-misc/libpst/metadata.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>unknown@pentoo.ch</email>
|
||||
<name>Pento Maintainers</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name='profiling'>Enable gprof profiling</flag>
|
||||
<flag name='shared'>Enable libpst shared object</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
Loading…
Reference in a new issue