This commit is contained in:
Mario Fetka
2020-01-24 11:37:26 +01:00
parent 39cd0b7cb0
commit 7576f0a9e2
8 changed files with 56 additions and 41 deletions

View File

@@ -0,0 +1,23 @@
# ChangeLog for dev-util/msitools
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
17 Oct 2015; Mario Fetka <mario.fetka@gmail.com> msitools-0.94.ebuild:
add deeps
17 Oct 2015; Mario Fetka <mario.fetka@gmail.com> msitools-0.94.ebuild:
add deeps
17 Oct 2015; Mario Fetka <mario.fetka@gmail.com> msitools-0.94.ebuild:
add deeps
*msitools-0.94 (25 Jun 2015)
25 Jun 2015; Mario Fetka <mario.fetka@gmail.com> +msitools-0.94.ebuild,
-msitools-0.93.ebuild:
Bump
*msitools-0.93 (11 Dec 2014)
11 Dec 2014; Mario Fetka <mario.fetka@gmail.com> +msitools-0.93.ebuild:
Intial commit

View File

@@ -0,0 +1,5 @@
DIST msitools-0.94.tar.xz 687288 BLAKE2B 7eb271984f31904477f326d974abb756baa0555063c410ad8a5749a611d636527fa725ad645487b024092d9ac8a5450a13e0bb916580908c32944727a9b39c32 SHA512 acee8bb4ecde7fd4e8478bc770ad54aa87ea258c0f5e4e716044dc44a0c212871f5f5db3d77a3309ae7a13f1f25ba6f51d7ba381853896949c429c59373b22dd
DIST msitools-0.99.tar.xz 956292 BLAKE2B 294108ae633a252f2251fa60b14a8b2a9e9de9c59f7fc8c5e82bc389d4d14f7489ff746e0cbb984f25e37a051137c1ba621385dc1a36fc3320924747d0729039 SHA512 29c6006591cdf9f8dec1a19c398fbb719879275de43d880ca4cc9fa8b8985021064523050eab4ca68d1c243603070a5d56102cd792d4dc78e75b1bdca08b2247
EBUILD msitools-0.94.ebuild 468 BLAKE2B 5b9933e6b30a9da9c332d68b25ebf39d51ceb15bc8770b480ee1dc5eec7b027ac656f4f62fafbbd727f161232c7a435a178f8f9862f08964de7aff4e5c1706f1 SHA512 7ce7eeb6dc01b507f81e71860dff14339ddc323afa894d2b4ce3a4a0e4ad90394181df4921c4ea5e3bdce5d49e351a3c2e68fff414117191b76f31d7e8843d00
EBUILD msitools-0.99-r1.ebuild 991 BLAKE2B 083fa8625d7ed7d1200814c8ade591ff23b2845c5c1cbdc80b575964d8920a151c60f0b8be2c21a33d7605bf010a4d27feecf84d51117ec869a492738ed46fea SHA512 ab627aa51f96908b829f2ffda21bb6aa55a305d95af55507562f8db44d989ec32ec34210cc757ad97f951b341c245acc6bce818c333ad6c15392706697a8dd3d
MISC ChangeLog 633 BLAKE2B 3d7d8b5795fa25d823bc68ad958cc7c80107a8ef0b92b85dae91db4980b6622c611eec2fe0c1cf7ca7a0c9b9608403e9ab7d72087d47258e6cd180d95bc09798 SHA512 ff8ce034fe657deff4a9791c608096490de5887b1753ff1fdcf191a59acb8ee3bbbb4863f8dc1bfe27e628e9cf4c043096895156a29b6f99191779499733a336

View File

@@ -0,0 +1,21 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit gnome.org
DESCRIPTION="A set of programs to inspect and build Windows Installer files."
HOMEPAGE="https://live.gnome.org/msitools"
#SRC_URI="http://ftp.gnome.org/pub/GNOME/sources/msitools/${PV}/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="app-arch/gcab
gnome-extra/libgsf"
RDEPEND="${DEPEND}"

View File

@@ -0,0 +1,50 @@
# Copyright 2019 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit vala
inherit autotools
inherit ltprune
DESCRIPTION="Set of programs to inspect and build Windows Installer (.MSI) files"
HOMEPAGE="https://wiki.gnome.org/msitools"
LICENSE="LGPL-2+"
SLOT="0"
#SRC_URI="https://gitlab.gnome.org/GNOME/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz"
SRC_URI="http://ftp.gnome.org/pub/GNOME/sources/${PN}/${PV}/${P}.tar.xz"
KEYWORDS="~amd64 ~arm ~arm64"
IUSE='nls rpath gnu-ld'
RDEPEND=(
"dev-libs/glib:2"
"sys-apps/util-linux[libuuid]"
"dev-libs/libxml2"
"gnome-extra/libgsf[introspection]"
"$(vala_depend)"
"app-arch/gcab[vala]"
"gnome-extra/libgsf"
)
DEPEND_A="$RDEPEND"
src_prepare() {
eapply_user
vala_src_prepare
eautoreconf
}
src_configure() {
local my_econf_args=(
--enable-shared
--disable-static
$(use_enable nls)
$(use_enable rpath)
)
econf "${my_econf_args[@]}"
}
src_install() {
default
prune_libtool_files
}