Skip to content

Commit

Permalink
sys-block/gparted: Version bump 1.0.0
Browse files Browse the repository at this point in the history
Closes: https://bugs.gentoo.org/687256
Closes: #13829
Signed-off-by: Antoine Gicquel <antoine.gicquel@mailoo.org>
Signed-off-by: Matt Turner <mattst88@gentoo.org>
  • Loading branch information
agicquel authored and mattst88 committed Dec 4, 2019
1 parent e2eae70 commit b63a899
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 0 deletions.
1 change: 1 addition & 0 deletions sys-block/gparted/Manifest
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
DIST gparted-0.33.0.tar.gz 3917056 BLAKE2B 7d5eed87701f8c1f8125103a1b25fd58378aadee7faf3bba05f19ea94a6670687b190eb070cee792a205245dc7e5828caca7358cc59792adc8372c9907341772 SHA512 07b3f8ef355ce6c3302ed4747b9f542f1e231555c5ef39e758ee9a658bb14c9db2742af7f472a866bd122eb1ad9b2d45fd921484abb4ee319df1f15a74829f32
DIST gparted-1.0.0.tar.gz 3980258 BLAKE2B 4c0e7c36e2cd4dde68ee27b67e11a529c27fd22f0d93f6a8d1c6932b3728eead9c8aa282ff7e26c7e9922f0f7991ab3c5d72a7bd968708aac2c6b1e7f59bb5a5 SHA512 88eef4e4fbd51d9a9a3bdfb0a9738f6957ec5cbc21c2f93febf0d4cfe927e0ae3cb8cb1a9b2ca956a55dc62b9228ec76107e3e4701623be6474c99678c9197be
85 changes: 85 additions & 0 deletions sys-block/gparted/gparted-1.0.0.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=6
inherit gnome2

DESCRIPTION="Gnome Partition Editor"
HOMEPAGE="https://gparted.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="GPL-2+ FDL-1.2+"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
IUSE="btrfs cryptsetup dmraid f2fs fat hfs jfs kde mdadm ntfs policykit reiserfs reiser4 udf wayland xfs"

COMMON_DEPEND="
!policykit? (
kde? ( >=kde-plasma/kde-cli-tools-5.8.6-r1[kdesu] ) )
policykit? ( >=sys-auth/polkit-0.102 )
>=dev-cpp/glibmm-2.56.1:2
>=dev-cpp/gtkmm-3.24:3.0
>=dev-libs/glib-2.58.3-r1:2
>=sys-block/parted-3.2:=
>=dev-libs/libsigc++-2.10.1:2
"
RDEPEND="${COMMON_DEPEND}
>=sys-apps/util-linux-2.33.2
>=sys-fs/e2fsprogs-1.44.5
btrfs? ( sys-fs/btrfs-progs )
cryptsetup? ( sys-fs/cryptsetup )
dmraid? (
>=sys-fs/lvm2-2.02.116
sys-fs/dmraid
sys-fs/multipath-tools )
f2fs? ( sys-fs/f2fs-tools )
fat? (
sys-fs/dosfstools
sys-fs/mtools )
hfs? (
sys-fs/diskdev_cmds
virtual/udev
sys-fs/hfsutils )
jfs? ( sys-fs/jfsutils )
mdadm? ( sys-fs/mdadm )
ntfs? ( >=sys-fs/ntfs3g-2016.2.22-r2[ntfsprogs] )
reiserfs? ( sys-fs/reiserfsprogs )
reiser4? ( sys-fs/reiser4progs )
udf? ( sys-fs/udftools )
wayland? ( x11-apps/xhost )
xfs? ( sys-fs/xfsprogs sys-fs/xfsdump )
"
DEPEND="${COMMON_DEPEND}
app-text/docbook-xml-dtd:4.1.2
>=dev-util/intltool-0.51.0-r2
sys-devel/gettext
virtual/pkgconfig
app-text/yelp-tools
"

src_configure() {
gnome2_src_configure \
--enable-doc \
--enable-online-resize \
$(use_enable wayland xhost-root) \
GKSUPROG=kdesu \
ac_cv_prog_have_scrollkeeper_update=no
}

src_install() {
gnome2_src_install

local _ddir="${D}"/usr/share/applications
local _bdir="${D}"/usr/bin

if ! use policykit; then
if use kde; then
cp "${_ddir}"/gparted{,-kde}.desktop || die
cp "${_bdir}"/gparted{,-kde} || die
sed -i -e '/Exec/ s:gparted:gparted-kde:' "${_ddir}"/gparted-kde.desktop || die
echo 'OnlyShowIn=KDE;' >> "${_ddir}"/gparted-kde.desktop || die
fi
else
sed -i -e 's:kdesu::' "${_bdir}"/gparted || die
fi
}

0 comments on commit b63a899

Please sign in to comment.