forgot to add some things in the last commit

This commit is contained in:
2018-05-20 22:08:24 +02:00
parent 84ad97d931
commit 079bccfe8e
13 changed files with 214 additions and 47 deletions

View File

@@ -0,0 +1,3 @@
DIST pcmanfm-qt-0.10.0.tar.xz 228540 BLAKE2B 08691b9a4851bea0490242bf76919bc3ea064b7ed85dcd3ddd3a0672acd28801ade245a85bc39361da62aaad2fb8c26df27d5e985165ebca9ee30c390f6e0ee3 SHA512 1b4ec2a746767e28a851f702a6a0897327cefe08b06cb25d63a1c9dddaed4aeefdbe25ee7d6431c94266e0071d5d25e3591c588c484ad097b10ce601e9a18201
DIST pcmanfm-qt-0.11.1.tar.xz 92916 BLAKE2B 8f71b5c1845ac4761fe8ba48734905e63011b98a4856b1d7759259b387d897483315dbadc6d68aa588f1ad223c4a3cefd83b00979a04723cc706d75cb26611c4 SHA512 860a0853b6c42e04ba6cdbe617d4c5f61e0033c9ae5483c5b8a457368fe23084af813feab5fa50accecc8d21055a5ef073731b94ea3eb4b3ca6eacb0dbe41450
DIST pcmanfm-qt-0.12.0.tar.xz 100636 BLAKE2B 5c444164a0f5ed4abc7847a588fcfb956678bc580712c25f3c4bc26a97eef6a80098c5f0d9d8088f57b1ea73f27d51e288408a7cd3a95d1be51b0cf8e29fb675 SHA512 78a75ba6211407c55dbf1f0fc2f307d7444a512b65a732fb4c9c51634f465968443340b999dee8d2aa1d6344bcc1affd80e1b867980d269df69580c102037d95

View File

@@ -0,0 +1,11 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>lxqt@gentoo.org</email>
<name>LXQt</name>
</maintainer>
<upstream>
<remote-id type="github">lxqt/pcmanfm-qt</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,46 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils eapi7-ver
if [[ "${PV}" == "9999" ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
else
SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
fi
DESCRIPTION="Fast lightweight tabbed filemanager (Qt port)"
HOMEPAGE="https://wiki.lxde.org/en/PCManFM"
LICENSE="GPL-2+"
SLOT="0"
RDEPEND="
dev-libs/glib:2
dev-qt/qtcore:5
dev-qt/qtdbus:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
>=x11-libs/libfm-1.2.0:=
=x11-libs/libfm-qt-$(ver_cut 1-2)*
x11-libs/libxcb:=
x11-misc/xdg-utils
virtual/eject
virtual/freedesktop-icon-theme
!lxqt-base/lxqt-common
"
DEPEND="${RDEPEND}
dev-qt/linguist-tools:5
>=dev-util/lxqt-build-tools-0.4.0
"
src_configure() {
local mycmakeargs=(
-DPULL_TRANSLATIONS=OFF
)
cmake-utils_src_configure
}