forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.3.2
- Loading branch information
Michael Palimaka
committed
Oct 29, 2016
1 parent
2400d87
commit 460dbf5
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST pcmanfm-qt-0.10.0.tar.xz 228540 SHA256 254c1da0d3fce2ab0a03b21861191b0875ce43382c74d3abbfa8f3dc88a080a4 SHA512 1b4ec2a746767e28a851f702a6a0897327cefe08b06cb25d63a1c9dddaed4aeefdbe25ee7d6431c94266e0071d5d25e3591c588c484ad097b10ce601e9a18201 WHIRLPOOL b7bc8bac83ed033869b4167638550f404b03604fa6d39b7b8ed01831a889b1ced64b8a78f360e3170f3fd00ede61d398f1cf73b26c09fc6d5ab3da8992c575e6 | ||
DIST pcmanfm-qt-0.11.1.tar.xz 92916 SHA256 fd035da1f74506f2897fc94b874def521a88a2f4f82c7eea1eb406375a2571fa SHA512 860a0853b6c42e04ba6cdbe617d4c5f61e0033c9ae5483c5b8a457368fe23084af813feab5fa50accecc8d21055a5ef073731b94ea3eb4b3ca6eacb0dbe41450 WHIRLPOOL 08d1d30574e1b5a59550ef6da17bca73df203463322462dcf3cbd2cc63b0143fecfc29916dad313be081eb0a79095a20df7bd2e902dbb47af55d618a108f5dc4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
inherit cmake-utils | ||
|
||
if [[ "${PV}" == "9999" ]]; then | ||
inherit git-r3 | ||
EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}" | ||
else | ||
SRC_URI="https://github.com/lxde/${PN}/releases/download/${PV}/${P}.tar.xz" | ||
KEYWORDS="~amd64 ~arm64 ~x86" | ||
fi | ||
|
||
DESCRIPTION="Fast lightweight tabbed filemanager (Qt port)" | ||
HOMEPAGE="https://wiki.lxde.org/en/PCManFM" | ||
|
||
LICENSE="GPL-2+" | ||
SLOT="0" | ||
|
||
CDEPEND=">=dev-libs/glib-2.18: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:= | ||
x11-libs/libxcb:= | ||
" | ||
RDEPEND="${CDEPEND} | ||
x11-misc/xdg-utils | ||
virtual/eject | ||
virtual/freedesktop-icon-theme" | ||
DEPEND="${CDEPEND} | ||
dev-qt/linguist-tools:5 | ||
>=dev-util/intltool-0.40 | ||
sys-devel/gettext | ||
virtual/pkgconfig" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-DPULL_TRANSLATIONS=NO | ||
) | ||
|
||
cmake-utils_src_configure | ||
} |