mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 20:13:01 -04:00
Merge updates from master
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{7,8} )
|
||||
PYTHON_COMPAT=( python3_{7..9} )
|
||||
DISTUTILS_USE_SETUPTOOLS=rdepend
|
||||
|
||||
inherit distutils-r1 optfeature
|
||||
@@ -25,8 +25,8 @@ LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/urwid-2.0.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/psutil-5.6.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/urwid-2.0.1[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
distutils_enable_tests unittest
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{7,8} )
|
||||
PYTHON_COMPAT=( python3_{7..9} )
|
||||
DISTUTILS_USE_SETUPTOOLS=rdepend
|
||||
|
||||
inherit distutils-r1 optfeature
|
||||
|
||||
1
app-arch/libarchive-qt/Manifest
Normal file
1
app-arch/libarchive-qt/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST libarchive-qt-2.0.2.tar.gz 52672 BLAKE2B f3b223c5a5a468c3c7f2dac00b37b13c61d9cd86764af28468543cc899e79a6b9019a460fa8a4d73ef94f6f6233d7409f525cac6a0024c71b8f66f262d9d95ad SHA512 bf82884134265a825b49e3d313279d8826c422a54a5be65f170995c140ed2f4e6eca1cb939bf23bd1c04ef6bd60e47f9ae1cb5acaa505a114d2f1dfbb24c7c5c
|
||||
46
app-arch/libarchive-qt/libarchive-qt-2.0.2.ebuild
Normal file
46
app-arch/libarchive-qt/libarchive-qt-2.0.2.ebuild
Normal file
@@ -0,0 +1,46 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A Qt based archiving solution with libarchive backend"
|
||||
HOMEPAGE="https://gitlab.com/marcusbritanicus/libarchive-qt"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/marcusbritanicus/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/marcusbritanicus/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="LGPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
app-arch/libarchive[lzma,bzip2,zlib]
|
||||
app-arch/lrzip
|
||||
app-arch/lzip
|
||||
app-arch/lzop
|
||||
dev-qt/qtgui:5
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
local lib="$(get_libdir)"
|
||||
# '^^' because we need to upcase the definition
|
||||
eqmake5 DEFINES+="${lib^^}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
46
app-arch/libarchive-qt/libarchive-qt-9999.ebuild
Normal file
46
app-arch/libarchive-qt/libarchive-qt-9999.ebuild
Normal file
@@ -0,0 +1,46 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A Qt based archiving solution with libarchive backend"
|
||||
HOMEPAGE="https://gitlab.com/marcusbritanicus/libarchive-qt"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/marcusbritanicus/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/marcusbritanicus/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="LGPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
app-arch/libarchive[lzma,bzip2,zlib]
|
||||
app-arch/lrzip
|
||||
app-arch/lzip
|
||||
app-arch/lzop
|
||||
dev-qt/qtgui:5
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
local lib="$(get_libdir)"
|
||||
# '^^' because we need to upcase the definition
|
||||
eqmake5 DEFINES+="${lib^^}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
11
app-arch/libarchive-qt/metadata.xml
Normal file
11
app-arch/libarchive-qt/metadata.xml
Normal 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="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">marcusbritanicus/libarchive-qt</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{7,8} )
|
||||
PYTHON_COMPAT=( python3_{7..9} )
|
||||
|
||||
inherit eutils xdg desktop distutils-r1
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{7,8} )
|
||||
PYTHON_COMPAT=( python3_{7..9} )
|
||||
|
||||
inherit eutils xdg desktop distutils-r1
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{7,8} )
|
||||
PYTHON_COMPAT=( python3_{7..9} )
|
||||
|
||||
inherit eutils xdg desktop distutils-r1
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{7,8} )
|
||||
PYTHON_COMPAT=( python3_{7..9} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{7,8} )
|
||||
PYTHON_COMPAT=( python3_{7..9} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{7,8} )
|
||||
PYTHON_COMPAT=( python3_{7..9} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{7,8} )
|
||||
PYTHON_COMPAT=( python3_{7..9} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
DIST legendary-0.0.19.tar.gz 74292 BLAKE2B 96f43e43f09f46f3b843114c661b5857aee28fbc1fd8e5098bd426260c6df3b342e040e47ef8f0f5cfc16cac5e930a5e078ba1abed9183dd82562931523737e1 SHA512 36082e9876e84c83bc3aae2b7dca782a98c47435f3196b2def2e85372a506dd73ae654756d058518d8b4fc9b3f5067ba79d56fd33f381a09bc49dfde0f57a37c
|
||||
DIST legendary-0.20.1.tar.gz 77140 BLAKE2B 1d29e8a1ffb4c635115596f419c20fcfc3f221a1c976fee309ebca1052c660ffb5a59eb613d9e493748ad9d1d5c80f76e09926f7c7bc357010434663f2e3940a SHA512 3f2fed9af3e700fb988276a5358a527e9e3246b37c41e74076e232a0304d0aa41b94d538220e0e47e2e7315c61af71728be436b3c8508211a031eb46d37afa31
|
||||
DIST legendary-0.20.2.tar.gz 78655 BLAKE2B 56709cdc4df608225ec4b442fdc810922c391d49d5dbc0313d65097e5d4ac7002498df3a8eeb6db21818389554cf9bf20eedbe2652122766bc9a162f9e52ad15 SHA512 0d3241478b56fca9d0eef4901b87ab09b9da2d75bc70d7a4971d8581d804e96a7e686992d5e9bd8c6cd29a71b3fd958d8ffea19663b54fd2bd16f8d078dd7b0c
|
||||
|
||||
1
gui-apps/azote/Manifest
Normal file
1
gui-apps/azote/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST azote-1.8.1.tar.gz 615661 BLAKE2B f742fd037eab1a4ef3d87e1c055b254900151c8006127559cd8188665a01fd5277de4a22da6fd9fad270297fa9f1aab075094e59cc5d21e5ddee4f92bb8be5c5 SHA512 b474718242ab767c50edb6a660c4f2c91378289c6c5ae45e3e1dd37603fa0df56939ad56cf330a6e057edfd9b02f88f0a47b803100ad825dca4da8286214313e
|
||||
67
gui-apps/azote/azote-1.8.1.ebuild
Normal file
67
gui-apps/azote/azote-1.8.1.ebuild
Normal file
@@ -0,0 +1,67 @@
|
||||
# Copyright 2019-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6..9} )
|
||||
|
||||
inherit distutils-r1 desktop
|
||||
|
||||
DESCRIPTION="wallpaper manager for wlroots compositors"
|
||||
HOMEPAGE="https://github.com/nwg-piotr/azote"
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/nwg-piotr/azote"
|
||||
else
|
||||
SRC_URI="https://github.com/nwg-piotr/azote/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-3 BSD"
|
||||
SLOT="0"
|
||||
IUSE="simple-colorpicker imagemagick wayland X yaml"
|
||||
|
||||
RDEPEND="
|
||||
dev-cpp/gtkmm:3.0
|
||||
dev-python/pillow
|
||||
dev-python/pygobject:3=
|
||||
dev-python/send2trash
|
||||
simple-colorpicker? (
|
||||
X? (
|
||||
media-gfx/maim
|
||||
x11-misc/slop
|
||||
)
|
||||
wayland? (
|
||||
gui-apps/grim
|
||||
gui-apps/slurp
|
||||
)
|
||||
)
|
||||
imagemagick? (
|
||||
media-gfx/imagemagick[jpeg,png,svg,X?]
|
||||
)
|
||||
wayland? (
|
||||
gui-apps/swaybg
|
||||
gui-apps/wlr-randr
|
||||
)
|
||||
X? (
|
||||
media-gfx/feh
|
||||
x11-apps/xrandr
|
||||
)
|
||||
yaml? ( dev-python/pyyaml )
|
||||
"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
python_install_all() {
|
||||
distutils-r1_python_install_all
|
||||
|
||||
cd "${S}"
|
||||
|
||||
dobin dist/azote
|
||||
domenu dist/azote.desktop
|
||||
|
||||
insinto /usr/share/azote
|
||||
doins dist/azote.svg dist/indicator_{active,attention}.png
|
||||
insinto /usr/share/licenses/azote
|
||||
doins LICENSE-COLORTHIEF
|
||||
}
|
||||
67
gui-apps/azote/azote-9999.ebuild
Normal file
67
gui-apps/azote/azote-9999.ebuild
Normal file
@@ -0,0 +1,67 @@
|
||||
# Copyright 2019-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6..9} )
|
||||
|
||||
inherit distutils-r1 desktop
|
||||
|
||||
DESCRIPTION="wallpaper manager for wlroots compositors"
|
||||
HOMEPAGE="https://github.com/nwg-piotr/azote"
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/nwg-piotr/azote"
|
||||
else
|
||||
SRC_URI="https://github.com/nwg-piotr/azote/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-3 BSD"
|
||||
SLOT="0"
|
||||
IUSE="simple-colorpicker imagemagick wayland X yaml"
|
||||
|
||||
RDEPEND="
|
||||
dev-cpp/gtkmm:3.0
|
||||
dev-python/pillow
|
||||
dev-python/pygobject:3=
|
||||
dev-python/send2trash
|
||||
simple-colorpicker? (
|
||||
X? (
|
||||
media-gfx/maim
|
||||
x11-misc/slop
|
||||
)
|
||||
wayland? (
|
||||
gui-apps/grim
|
||||
gui-apps/slurp
|
||||
)
|
||||
)
|
||||
imagemagick? (
|
||||
media-gfx/imagemagick[jpeg,png,svg,X?]
|
||||
)
|
||||
wayland? (
|
||||
gui-apps/swaybg
|
||||
gui-apps/wlr-randr
|
||||
)
|
||||
X? (
|
||||
media-gfx/feh
|
||||
x11-apps/xrandr
|
||||
)
|
||||
yaml? ( dev-python/pyyaml )
|
||||
"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
python_install_all() {
|
||||
distutils-r1_python_install_all
|
||||
|
||||
cd "${S}"
|
||||
|
||||
dobin dist/azote
|
||||
domenu dist/azote.desktop
|
||||
|
||||
insinto /usr/share/azote
|
||||
doins dist/azote.svg dist/indicator_{active,attention}.png
|
||||
insinto /usr/share/licenses/azote
|
||||
doins LICENSE-COLORTHIEF
|
||||
}
|
||||
13
gui-apps/azote/metadata.xml
Normal file
13
gui-apps/azote/metadata.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>gentoo@aisha.cc</email>
|
||||
<name>Aisha Tammy</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="imagemagick">enable colorpicker using imagemagick</flag>
|
||||
<flag name="simple-colorpicker">enable colorpicker without imagemagick</flag>
|
||||
<flag name="yaml">enable support for reading yaml files</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
1
gui-apps/coreaction/Manifest
Normal file
1
gui-apps/coreaction/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST coreaction-4.0.0.tar.gz 1397910 BLAKE2B f8d25c6c9066def7d1a0915deb62135a0c042bc67382dcfa24ebc8ef59e125a0ac2e15b8d9bbaf5cfbd34e5ffbd604a2edfc1398c12a2f7f160365734988bac2 SHA512 47f4289bb69498f0d6ba0ba6b3cbf4cea3ccadf4adb0b57c77ccc26cb1b132ecb908291b0b0dc8dccdedbc5b5c2dec40d6adbfb65f73127df1fef868bba16c1e
|
||||
52
gui-apps/coreaction/coreaction-4.0.0.ebuild
Normal file
52
gui-apps/coreaction/coreaction-4.0.0.ebuild
Normal file
@@ -0,0 +1,52 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A side bar for showing widgets for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreaction"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtsvg
|
||||
gui-libs/libcprime
|
||||
gui-libs/libcsys
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' app/"${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
52
gui-apps/coreaction/coreaction-9999.ebuild
Normal file
52
gui-apps/coreaction/coreaction-9999.ebuild
Normal file
@@ -0,0 +1,52 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A side bar for showing widgets for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreaction"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtsvg
|
||||
gui-libs/libcprime
|
||||
gui-libs/libcsys
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' app/"${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
11
gui-apps/coreaction/metadata.xml
Normal file
11
gui-apps/coreaction/metadata.xml
Normal 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="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">cubocore/coreapps/coreaction</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
41
gui-apps/coreapps-meta/coreapps-meta-4.0.0.ebuild
Normal file
41
gui-apps/coreapps-meta/coreapps-meta-4.0.0.ebuild
Normal file
@@ -0,0 +1,41 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
DESCRIPTION="Meta package for coreapps"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps"
|
||||
SRC_URI=""
|
||||
|
||||
LICENSE="metapackage"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="
|
||||
location
|
||||
pulseaudio
|
||||
udisks
|
||||
"
|
||||
|
||||
RDEPEND="
|
||||
~gui-apps/coreaction-${PV}
|
||||
~gui-apps/coreapps-meta-${PV}
|
||||
~gui-apps/corearchiver-${PV}
|
||||
~gui-apps/corefm-${PV}
|
||||
~gui-apps/coregarage-${PV}
|
||||
~gui-apps/corehunt-${PV}
|
||||
~gui-apps/coreimage-${PV}
|
||||
~gui-apps/coreinfo-${PV}
|
||||
~gui-apps/corekeyboard-${PV}
|
||||
~gui-apps/corepad-${PV}
|
||||
~gui-apps/corepaint-${PV}
|
||||
~gui-apps/corepdf-${PV}
|
||||
~gui-apps/corerenamer-${PV}
|
||||
~gui-apps/coreshot-${PV}
|
||||
~gui-apps/corestats-${PV}
|
||||
~gui-apps/corestuff-${PV}
|
||||
~gui-apps/coreterminal-${PV}
|
||||
~gui-apps/coretime-${PV}
|
||||
~gui-apps/coretoppings-${PV}[location?,pulseaudio?]
|
||||
~gui-libs/libcprime-${PV}
|
||||
~gui-libs/libcsys-${PV}[udisks?]
|
||||
"
|
||||
13
gui-apps/coreapps-meta/metadata.xml
Normal file
13
gui-apps/coreapps-meta/metadata.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="location">
|
||||
Enable location discovery
|
||||
</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
1
gui-apps/corearchiver/Manifest
Normal file
1
gui-apps/corearchiver/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST corearchiver-4.0.0.tar.gz 86699 BLAKE2B 8ca065e35f2567ae971fe42db7152352ea079adefd87790430341dcc03360a6b51710f2a6a2fc6bb486bfb4961895a9e29de9a7a23071fd5e7d499136a940759 SHA512 5e9da633a1d059399a761527479ec37dab1a2e2c8625ed66379cd1e553fb262772a3d23bcb2bccb1a6a70d617701b56d84f81dffb721ce6a95758f726d20c02f
|
||||
54
gui-apps/corearchiver/corearchiver-4.0.0.ebuild
Normal file
54
gui-apps/corearchiver/corearchiver-4.0.0.ebuild
Normal file
@@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="Archiver for C Suite, to create and extract archives"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corearchiver"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
app-arch/libarchive-qt
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
54
gui-apps/corearchiver/corearchiver-9999.ebuild
Normal file
54
gui-apps/corearchiver/corearchiver-9999.ebuild
Normal file
@@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="Archiver for C Suite, to create and extract archives"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corearchiver"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
app-arch/libarchive-qt
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
11
gui-apps/corearchiver/metadata.xml
Normal file
11
gui-apps/corearchiver/metadata.xml
Normal 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="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">cubocore/coreapps/corearchiver</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
1
gui-apps/corefm/Manifest
Normal file
1
gui-apps/corefm/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST corefm-4.0.0.tar.gz 102820 BLAKE2B 8ad9c7f8db32c41ce05cd148300a6aaa5e36dd92be5d1f6b1594263f86931c23f57f1b72ec0e58c00f8d359261717ec808f04d5911b7ba7fb39ae4290b1d1803 SHA512 de835961148a4a3c19b6fdd78010624ff4002f7721e53deb3a8053a754303bd1e737b2a437757ff17c845cad998f04405a114c8034ba10b224c916177f2dfc01
|
||||
58
gui-apps/corefm/corefm-4.0.0-r1.ebuild
Normal file
58
gui-apps/corefm/corefm-4.0.0-r1.ebuild
Normal file
@@ -0,0 +1,58 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A lightweight file-manager for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corefm"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtconcurrent:5=
|
||||
dev-qt/qtdbus:5=
|
||||
dev-qt/qtwidgets:5=
|
||||
gui-libs/libcprime
|
||||
gui-libs/libcsys
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${P}-urilist.patch"
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
54
gui-apps/corefm/corefm-9999.ebuild
Normal file
54
gui-apps/corefm/corefm-9999.ebuild
Normal file
@@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A lightweight file-manager for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corefm"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtconcurrent:5=
|
||||
dev-qt/qtdbus:5=
|
||||
dev-qt/qtwidgets:5=
|
||||
gui-libs/libcprime
|
||||
gui-libs/libcsys
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
12
gui-apps/corefm/files/corefm-4.0.0-urilist.patch
Normal file
12
gui-apps/corefm/files/corefm-4.0.0-urilist.patch
Normal file
@@ -0,0 +1,12 @@
|
||||
index ad89f89..c4e7b98 100644
|
||||
--- a/corefm.cpp
|
||||
+++ b/corefm.cpp
|
||||
@@ -506,7 +506,7 @@ void corefm::prepareMove() {
|
||||
foreach( QString item, selectedItems ) {
|
||||
QUrl url = QUrl::fromLocalFile( item );
|
||||
urlList << url;
|
||||
- uriList += url.toString() + "\n";
|
||||
+ uriList += QString(url.toString() + "\n").toLocal8Bit();
|
||||
}
|
||||
|
||||
QMimeData *mData = new QMimeData();
|
||||
11
gui-apps/corefm/metadata.xml
Normal file
11
gui-apps/corefm/metadata.xml
Normal 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="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">cubocore/coreapps/corefm</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
1
gui-apps/coregarage/Manifest
Normal file
1
gui-apps/coregarage/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST coregarage-4.0.0.tar.gz 113603 BLAKE2B 2044cc558f886d47f6622bbe853f0a33a01585b72463e948c5515b6803f3a30c600b2bdc2ed1037701b0c30714b9c743b5ac70b898b1f6b56c59a3e58979b306 SHA512 0f7864027af39b567d54f0430f511245d3dd5b18d900e66734bb27e95ffa6ed6d6217fe80f95e8fe9b322bad47628127fa559ed328051ec1c551e77824cfc9f6
|
||||
55
gui-apps/coregarage/coregarage-4.0.0.ebuild
Normal file
55
gui-apps/coregarage/coregarage-4.0.0.ebuild
Normal file
@@ -0,0 +1,55 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A settings manager for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coregarage"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
app-arch/libarchive-qt
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
gui-libs/libcsys
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
55
gui-apps/coregarage/coregarage-9999.ebuild
Normal file
55
gui-apps/coregarage/coregarage-9999.ebuild
Normal file
@@ -0,0 +1,55 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A settings manager for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coregarage"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
app-arch/libarchive-qt
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
gui-libs/libcsys
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
11
gui-apps/coregarage/metadata.xml
Normal file
11
gui-apps/coregarage/metadata.xml
Normal 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="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">cubocore/coreapps/corefm</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
1
gui-apps/corehunt/Manifest
Normal file
1
gui-apps/corehunt/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST corehunt-4.0.0.tar.gz 49177 BLAKE2B f8904eba6af7854c882f26000e781295fa33d269637a5f66e54e0a152ccdbc51b952d4251eb50d6589edf8422d83fa4627cd4766ea1eeca89234c31f325fbaec SHA512 bbcb846039c3887e0f5b64a2e72c3cb5cabf31385d35870686c31e8a47d1ba7790c71941f5bdec422cfcc2f80b6dba47c1bac521c7365f68a546f5a2c990ebb2
|
||||
54
gui-apps/corehunt/corehunt-4.0.0.ebuild
Normal file
54
gui-apps/corehunt/corehunt-4.0.0.ebuild
Normal file
@@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A file finder utility for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corehunt"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtconcurrent:5
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
54
gui-apps/corehunt/corehunt-9999.ebuild
Normal file
54
gui-apps/corehunt/corehunt-9999.ebuild
Normal file
@@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A file finder utility for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corehunt"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtconcurrent:5
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
11
gui-apps/corehunt/metadata.xml
Normal file
11
gui-apps/corehunt/metadata.xml
Normal 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="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">cubocore/coreapps/corehunt</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
1
gui-apps/coreimage/Manifest
Normal file
1
gui-apps/coreimage/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST coreimage-4.0.0.tar.gz 403995 BLAKE2B d8208c774987e3585563f92435663bc29121e50581263a1e4aac0f6fe78c9d037430c843ad442743b83b07f5b05a64987a81a0cb5e768c19825bd3c106c507f9 SHA512 11c3e021178324b91f27d5b541f716158a405bd9b8c700d467ee39647ada5fd4bc300e7b538e9afb07a10eda1b2800efec2d9500ab24f2273a2c95e9a5f3d987
|
||||
55
gui-apps/coreimage/coreimage-4.0.0.ebuild
Normal file
55
gui-apps/coreimage/coreimage-4.0.0.ebuild
Normal file
@@ -0,0 +1,55 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="An image viewer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreimage"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtconcurrent:5=
|
||||
dev-qt/qtcore:5=
|
||||
dev-qt/qtgui:5=
|
||||
dev-qt/qtwidgets:5=
|
||||
gui-libs/libcprime
|
||||
gui-libs/libcsys
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
55
gui-apps/coreimage/coreimage-9999.ebuild
Normal file
55
gui-apps/coreimage/coreimage-9999.ebuild
Normal file
@@ -0,0 +1,55 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="An image viewer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreimage"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtconcurrent:5=
|
||||
dev-qt/qtcore:5=
|
||||
dev-qt/qtgui:5=
|
||||
dev-qt/qtwidgets:5=
|
||||
gui-libs/libcprime
|
||||
gui-libs/libcsys
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
11
gui-apps/coreimage/metadata.xml
Normal file
11
gui-apps/coreimage/metadata.xml
Normal 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="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">cubocore/coreapps/corehunt</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
1
gui-apps/coreinfo/Manifest
Normal file
1
gui-apps/coreinfo/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST coreinfo-4.0.0.tar.gz 52156 BLAKE2B 72225ded45603aa5b05682e195d033dc93e462ef6f28f7cce65c2dd4a29efd0e4b62598fbe6646a0d58c8e249cc6b0fded54ad7bfe50081c65b831089b63933b SHA512 d0a0a900ddb201504dd5d331a14317b30173ea35de53306363e1c904629e29d82c0720ff931a88cf780c455d1b3202611090c762594c4758b65a249989249db9
|
||||
56
gui-apps/coreinfo/coreinfo-4.0.0.ebuild
Normal file
56
gui-apps/coreinfo/coreinfo-4.0.0.ebuild
Normal file
@@ -0,0 +1,56 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A file information tool for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreinfo"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
media-libs/libmediainfo
|
||||
media-libs/libzen
|
||||
sys-libs/zlib
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
56
gui-apps/coreinfo/coreinfo-9999.ebuild
Normal file
56
gui-apps/coreinfo/coreinfo-9999.ebuild
Normal file
@@ -0,0 +1,56 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A file information tool for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreinfo"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
media-libs/libmediainfo
|
||||
media-libs/libzen
|
||||
sys-libs/zlib
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
11
gui-apps/coreinfo/metadata.xml
Normal file
11
gui-apps/coreinfo/metadata.xml
Normal 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="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">cubocore/coreapps/coreinfo</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
1
gui-apps/corekeyboard/Manifest
Normal file
1
gui-apps/corekeyboard/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST corekeyboard-4.0.0.tar.gz 912573 BLAKE2B aee15c6435635cb035a7c11ec17f5cf10c1eac8102b660d8691bbe6710987e825ee52a13e58cdfb298596ebf311deb6fd1a3bfa543d6dc9a590aa9487250a870 SHA512 61b68ff7f2a68e67c8c5ae64a6afb3bc7b108b1d6a5e918592f30dd89fc4b966c7dc450624bf23c30497f92057efc902ef2ce739ae720091fa2b1761c64c8556
|
||||
54
gui-apps/corekeyboard/corekeyboard-4.0.0.ebuild
Normal file
54
gui-apps/corekeyboard/corekeyboard-4.0.0.ebuild
Normal file
@@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A x11 based virtual keyboard for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corekeyboard"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5=
|
||||
dev-qt/qtgui:5=
|
||||
dev-qt/qtwidgets:5=
|
||||
dev-qt/qtx11extras:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
54
gui-apps/corekeyboard/corekeyboard-9999.ebuild
Normal file
54
gui-apps/corekeyboard/corekeyboard-9999.ebuild
Normal file
@@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A x11 based virtual keyboard for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corekeyboard"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5=
|
||||
dev-qt/qtgui:5=
|
||||
dev-qt/qtwidgets:5=
|
||||
dev-qt/qtx11extras:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
11
gui-apps/corekeyboard/metadata.xml
Normal file
11
gui-apps/corekeyboard/metadata.xml
Normal 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="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">cubocore/coreapps/corekeyboard</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
1
gui-apps/corepad/Manifest
Normal file
1
gui-apps/corepad/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST corepad-4.0.0.tar.gz 333491 BLAKE2B 702d8f94b1fccb17cbdc8ecd2510ea32ac12d515b888e1b89d654dab61e60050685aed329ddd34dba51a9e0a81fa2488aa948831324191a5f22cc71b140e3f86 SHA512 24073edcf6de1bc94e510b88f8c017a12bf9bed2099876b76cd9254426e891043f3cdb9162156dd3af8d502e52494cabfe931442350cc9e8eaa9e694ced2e760
|
||||
54
gui-apps/corepad/corepad-4.0.0.ebuild
Normal file
54
gui-apps/corepad/corepad-4.0.0.ebuild
Normal file
@@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A document editor for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepad"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
dev-qt/qtxml:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
54
gui-apps/corepad/corepad-9999.ebuild
Normal file
54
gui-apps/corepad/corepad-9999.ebuild
Normal file
@@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A document editor for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepad"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
dev-qt/qtxml:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
11
gui-apps/corepad/metadata.xml
Normal file
11
gui-apps/corepad/metadata.xml
Normal 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="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">cubocore/coreapps/corepad</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
1
gui-apps/corepaint/Manifest
Normal file
1
gui-apps/corepaint/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST corepaint-4.0.0.tar.gz 95037 BLAKE2B ac7ba3bcd28057206801211b87a7d420f94a9a46147008644d9b7d59169f48e3fc2a78f3ea2db5c034fa97b922b25b4d94025a2001293acc62aab74ab8d105d0 SHA512 dbb0a37100d9bd01b3512080e98162c6a25d3ab5ff19be3fefedf35c3398bdb160ad1ba2c9cb5d6950582c6bfc99d75c3768edf45fa6cfe1b898fb11a7ac4a9a
|
||||
53
gui-apps/corepaint/corepaint-4.0.0.ebuild
Normal file
53
gui-apps/corepaint/corepaint-4.0.0.ebuild
Normal file
@@ -0,0 +1,53 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A paint app for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepaint"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
53
gui-apps/corepaint/corepaint-9999.ebuild
Normal file
53
gui-apps/corepaint/corepaint-9999.ebuild
Normal file
@@ -0,0 +1,53 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A paint app for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepaint"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
11
gui-apps/corepaint/metadata.xml
Normal file
11
gui-apps/corepaint/metadata.xml
Normal 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="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">cubocore/coreapps/corepaint</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
1
gui-apps/corepdf/Manifest
Normal file
1
gui-apps/corepdf/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST corepdf-4.0.0.tar.gz 115775 BLAKE2B f8b43c69d30d30d89bcc1f01719dacd48be1b453a6ba1fe932ab9d71137d92ffa87e12ccd0e3ab0c47a867ab6e431b9150307a05d90ad8836d395ba9d68f6acf SHA512 c28de6f79f78cba1fd1fa34f9cff552133e396523e9f50ac8eeff94511d4179d0d405eb4af415f61d34df28809f521c7e6f9f196a007e6995f79d4c237d23310
|
||||
54
gui-apps/corepdf/corepdf-4.0.0.ebuild
Normal file
54
gui-apps/corepdf/corepdf-4.0.0.ebuild
Normal file
@@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A PDF viewer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepdf"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
app-text/poppler[qt5]
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
54
gui-apps/corepdf/corepdf-9999.ebuild
Normal file
54
gui-apps/corepdf/corepdf-9999.ebuild
Normal file
@@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A PDF viewer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepdf"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
app-text/poppler[qt5]
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
11
gui-apps/corepdf/metadata.xml
Normal file
11
gui-apps/corepdf/metadata.xml
Normal 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="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">cubocore/coreapps/corepdf</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
1
gui-apps/corerenamer/Manifest
Normal file
1
gui-apps/corerenamer/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST corerenamer-4.0.0.tar.gz 218290 BLAKE2B 5916a46e397e9a5562ea30a6ac601d0b653f90d9ab89452e98dc81e70194fbb87711e167f5701565bc7ccbde6c32325d87891544ab10d18bd46c9bf47e48a75a SHA512 4ef1896b3f0d960c03f870dd80a296b7c779569c96f0816b4484383bbcf82839cd95d25cd24282843dbe672186ef8edcf4f986c5b682b0bc081939c3509cd130
|
||||
53
gui-apps/corerenamer/corerenamer-4.0.0.ebuild
Normal file
53
gui-apps/corerenamer/corerenamer-4.0.0.ebuild
Normal file
@@ -0,0 +1,53 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A batch file renamer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corerenamer"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
53
gui-apps/corerenamer/corerenamer-9999.ebuild
Normal file
53
gui-apps/corerenamer/corerenamer-9999.ebuild
Normal file
@@ -0,0 +1,53 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A batch file renamer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corerenamer"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
11
gui-apps/corerenamer/metadata.xml
Normal file
11
gui-apps/corerenamer/metadata.xml
Normal 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="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">cubocore/coreapps/corepdf</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
1
gui-apps/coreshot/Manifest
Normal file
1
gui-apps/coreshot/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST coreshot-4.0.0.tar.gz 1300298 BLAKE2B 9742b4dcfbd3257309bcaa517792129b933ee8ce2279184fbb8e69ba4d43e5b3116c1815586e4aa81dc015d7c18eae841a8ffadd467276d01e3f4eb88ab865ba SHA512 c8af3134ec35ef7355f67991fa8bbc96d8752296c199cca21b8193a21844ea4b445a5dcca6a37cb01ccc5054eb742534d2c9d59f7aebc2e95f17faff78c8653e
|
||||
54
gui-apps/coreshot/coreshot-4.0.0.ebuild
Normal file
54
gui-apps/coreshot/coreshot-4.0.0.ebuild
Normal file
@@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A screen capture utility for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreshot"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
dev-qt/qtx11extras:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
54
gui-apps/coreshot/coreshot-9999.ebuild
Normal file
54
gui-apps/coreshot/coreshot-9999.ebuild
Normal file
@@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A screen capture utility for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreshot"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
dev-qt/qtx11extras:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
11
gui-apps/coreshot/metadata.xml
Normal file
11
gui-apps/coreshot/metadata.xml
Normal 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="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">cubocore/coreapps/coreshot</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
1
gui-apps/corestats/Manifest
Normal file
1
gui-apps/corestats/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST corestats-4.0.0.tar.gz 99029 BLAKE2B 88ca6d3d1f8b45e7817e1ebac8ba8994d18aed8469600e3f63b18029b66ab33d32cf0379f6c169a432f95ba6cad92fd434229cd29a4927d9798b70018ff67568 SHA512 7a31102a0a22f464f9bc03aebad9112df8eb3f48c428b4099512b7dcc044c368706be7cdf0059d8a1d1554946d5cbd6cb64ab58639e125c054f4d746459bcf5a
|
||||
56
gui-apps/corestats/corestats-4.0.0.ebuild
Normal file
56
gui-apps/corestats/corestats-4.0.0.ebuild
Normal file
@@ -0,0 +1,56 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A system resource viewer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corestats"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtdbus:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
gui-libs/libcsys
|
||||
sys-apps/lm-sensors
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
56
gui-apps/corestats/corestats-9999.ebuild
Normal file
56
gui-apps/corestats/corestats-9999.ebuild
Normal file
@@ -0,0 +1,56 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A system resource viewer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corestats"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtdbus:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
gui-libs/libcsys
|
||||
sys-apps/lm-sensors
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
11
gui-apps/corestats/metadata.xml
Normal file
11
gui-apps/corestats/metadata.xml
Normal 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="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">cubocore/coreapps/corestats</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
1
gui-apps/corestuff/Manifest
Normal file
1
gui-apps/corestuff/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST corestuff-4.0.0.tar.gz 1244235 BLAKE2B f03d71d1994a749b37b21e1ef1dd3e5213b2287e4e43adf87bcde37590610d23499dbb2b9305620eb9ae2b81d5c45c635fb08eb2fc5f795e5a4efadb8532645b SHA512 b56fbc52b7c1fdabc67a697af570ee5d437a623e19aafb178f28a7d7cca2d52590537148723a41be6169948abcaa039e03ae9819e767c12601557f65ae1cd6d2
|
||||
54
gui-apps/corestuff/corestuff-4.0.0.ebuild
Normal file
54
gui-apps/corestuff/corestuff-4.0.0.ebuild
Normal file
@@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="An activity viewer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corestuff"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtx11extras:5
|
||||
gui-libs/libcprime
|
||||
gui-libs/libcsys
|
||||
kde-frameworks/kglobalaccel:5
|
||||
x11-libs/libXcomposite
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
54
gui-apps/corestuff/corestuff-9999.ebuild
Normal file
54
gui-apps/corestuff/corestuff-9999.ebuild
Normal file
@@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="An activity viewer for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corestuff"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtx11extras:5
|
||||
gui-libs/libcprime
|
||||
gui-libs/libcsys
|
||||
kde-frameworks/kglobalaccel:5
|
||||
x11-libs/libXcomposite
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
11
gui-apps/corestuff/metadata.xml
Normal file
11
gui-apps/corestuff/metadata.xml
Normal 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="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">cubocore/coreapps/corestuff</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
1
gui-apps/coreterminal/Manifest
Normal file
1
gui-apps/coreterminal/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST coreterminal-4.0.0.tar.gz 58172 BLAKE2B 2b8a437a4dcbf53ad015e1c3b9e1811f309a2494a7dd3a5c494bf07cc3dc0f950f9927044bac1f546c5aa861572c8ee0da5461fb821e3e1a407525cb9c81e4e9 SHA512 a3fef29036e95a3efbfa499c8f88168e1044d4143b699397e76e6981c959e5528a6d33f0df6ee295d2577767fe2aefb5b5a6a77c1da0d3ffc4ab376bfcdcaefe
|
||||
55
gui-apps/coreterminal/coreterminal-4.0.0.ebuild
Normal file
55
gui-apps/coreterminal/coreterminal-4.0.0.ebuild
Normal file
@@ -0,0 +1,55 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A terminal emulator for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreterminal"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5=
|
||||
dev-qt/qtgui:5=
|
||||
dev-qt/qtserialport:5
|
||||
dev-qt/qtwidgets:5=
|
||||
gui-libs/libcprime
|
||||
x11-libs/qtermwidget
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
55
gui-apps/coreterminal/coreterminal-9999.ebuild
Normal file
55
gui-apps/coreterminal/coreterminal-9999.ebuild
Normal file
@@ -0,0 +1,55 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A terminal emulator for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreterminal"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5=
|
||||
dev-qt/qtgui:5=
|
||||
dev-qt/qtserialport:5
|
||||
dev-qt/qtwidgets:5=
|
||||
gui-libs/libcprime
|
||||
x11-libs/qtermwidget
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
11
gui-apps/coreterminal/metadata.xml
Normal file
11
gui-apps/coreterminal/metadata.xml
Normal 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="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">cubocore/coreapps/coreterminal</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
1
gui-apps/coretime/Manifest
Normal file
1
gui-apps/coretime/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST coretime-4.0.0.tar.gz 446489 BLAKE2B 738739f568e1185d2d48500ad94ef79b0bc815c1194783187cc09ebc2d3eb127ad124730f51bcab50f90c8fd5780a192e71057fb572cc1881448613f3a49cad4 SHA512 aa3415b9a2117f3918895f55d849d781e7349d9d995f58cbc327d2ed3755ea12314166f0387dccf97aed12673d39db878925b5f97e9d1e9b5d2d5f96431cf4b6
|
||||
55
gui-apps/coretime/coretime-4.0.0.ebuild
Normal file
55
gui-apps/coretime/coretime-4.0.0.ebuild
Normal file
@@ -0,0 +1,55 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A time related task manager for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coretime"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtmultimedia:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
gui-libs/libcsys
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
54
gui-apps/coretime/coretime-9999.ebuild
Normal file
54
gui-apps/coretime/coretime-9999.ebuild
Normal file
@@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="A time related task manager for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coretime"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtmultimedia:5
|
||||
dev-qt/qtwidgets:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
11
gui-apps/coretime/metadata.xml
Normal file
11
gui-apps/coretime/metadata.xml
Normal 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="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">cubocore/coreapps/coretime</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
1
gui-apps/coretoppings/Manifest
Normal file
1
gui-apps/coretoppings/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST coretoppings-4.0.0.tar.gz 170719 BLAKE2B 039f2c38bd28f277a321d50686b1ba9adc373c1a37cf3b47aa4cd2d3d70154bc8a0c7f52c16e39711c27d5efc9e26ff3018a3097591cc43244bb94a44c38bf6d SHA512 469eacf5fa33388d57f7f3b0b84886fee97942b2d77418e454334f62dcaad891f499ec9b5bf4930b46757a2ec67b3cc2f1656530804811ac6eff74c25d110536
|
||||
55
gui-apps/coretoppings/coretoppings-4.0.0.ebuild
Normal file
55
gui-apps/coretoppings/coretoppings-4.0.0.ebuild
Normal file
@@ -0,0 +1,55 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit eutils qmake-utils xdg
|
||||
|
||||
DESCRIPTION="Additional features, plugins, widgets etc for C Suite"
|
||||
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coretoppings"
|
||||
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
RESTRICT="mirror"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE="location pulseaudio"
|
||||
|
||||
DEPEND="
|
||||
dev-qt/qtbluetooth:5
|
||||
dev-qt/qtwidgets:5
|
||||
dev-qt/qtx11extras:5
|
||||
gui-libs/libcprime
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
location? ( dev-qt/qtlocation:5 )
|
||||
pulseaudio? ( media-sound/pulseaudio )
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
sed -i 's/C Suite/X-CSuite/' shareit/shareit.desktop || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake5
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
einstalldocs
|
||||
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
16
gui-apps/coretoppings/metadata.xml
Normal file
16
gui-apps/coretoppings/metadata.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>xgqt@protonmail.com</email>
|
||||
<name>Maciej Barć</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="location">
|
||||
Enable location discovery
|
||||
</flag>
|
||||
</use>
|
||||
<upstream>
|
||||
<remote-id type="gitlab">cubocore/coreapps/coretoppings</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
60
gui-apps/nwg-launchers/files/icons/system-lock-screen.svg
Normal file
60
gui-apps/nwg-launchers/files/icons/system-lock-screen.svg
Normal file
@@ -0,0 +1,60 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
version="1"
|
||||
id="svg6"
|
||||
sodipodi:docname="system-lock-screen.svg"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1910"
|
||||
inkscape:window-height="1045"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="38.074548"
|
||||
inkscape:cx="8.338983"
|
||||
inkscape:cy="6.9152542"
|
||||
inkscape:window-x="1925"
|
||||
inkscape:window-y="30"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg6" />
|
||||
<circle
|
||||
fill="#ea882b"
|
||||
cx="8"
|
||||
cy="8"
|
||||
r="8"
|
||||
id="circle2"
|
||||
style="fill:#ffc0cb;fill-opacity:1" />
|
||||
<path
|
||||
style="fill:#000"
|
||||
d="M 8 2.9746094 C 6.3883 2.9746094 5 4.2491312 5 5.8320312 L 5 6.9746094 L 4.5097656 6.9746094 C 4.2278656 6.9746094 4 7.2253531 4 7.5019531 L 4 11.474609 C 4 11.751609 4.2278656 11.974609 4.5097656 11.974609 L 11.490234 11.974609 C 11.772234 11.974609 12 11.751609 12 11.474609 L 12 7.5019531 C 12 7.2253531 11.771234 6.9568094 11.490234 6.9746094 L 11 6.9746094 L 11 5.8320312 C 11 4.2491313 9.6114 2.9746094 8 2.9746094 z M 8 3.8632812 C 9.1751 3.8632812 10 4.68154 10 5.75 L 10 6.8632812 L 6 6.8632812 L 6 5.75 C 6 4.6814 6.8247 3.8632812 8 3.8632812 z M 7.9980469 8.4628906 A 1.0374384 1.0374384 0 0 1 9.0351562 9.5 A 1.0374384 1.0374384 0 0 1 7.9980469 10.537109 A 1.0374384 1.0374384 0 0 1 6.9609375 9.5 A 1.0374384 1.0374384 0 0 1 7.9980469 8.4628906 z "
|
||||
id="path4" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
61
gui-apps/nwg-launchers/files/icons/system-log-out.svg
Normal file
61
gui-apps/nwg-launchers/files/icons/system-log-out.svg
Normal file
@@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
version="1"
|
||||
id="svg6"
|
||||
sodipodi:docname="system-log-out.svg"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1910"
|
||||
inkscape:window-height="1045"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="14.75"
|
||||
inkscape:cx="-10.135593"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="1925"
|
||||
inkscape:window-y="30"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg6" />
|
||||
<circle
|
||||
fill="#7bbb36"
|
||||
cx="8"
|
||||
cy="8"
|
||||
r="8"
|
||||
id="circle2"
|
||||
style="fill:#ffc0cb;fill-opacity:1" />
|
||||
<path
|
||||
d="M 8,3 A 5,5 0 0 1 13,8 5,5 0 0 1 8,13 5,5 0 0 1 3,8 5,5 0 0 1 8,3 Z M 8,4 A 4,4 0 0 0 4,8 4,4 0 0 0 8,12 4,4 0 0 0 12,8 4,4 0 0 0 8,4 Z M 8,6 9.4863,7.0254 11,8 9.4863,8.9746 8,10 8.0117,9 H 6.5 C 6.223,9 6,8.554 6,8 6,7.446 6.223,7 6.5,7 h 1.5117 z"
|
||||
id="path4"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
1
gui-apps/nwg-launchers/files/icons/system-reboot.svg
Normal file
1
gui-apps/nwg-launchers/files/icons/system-reboot.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="3 3 16 16"><circle cx="11" cy="-1041.36" r="8" transform="matrix(1 0 0-1 0-1030.36)" opacity=".98" fill="#ffc0cb"/><path d="m120.6 38.723c-3.312-7.713-7.766-14.367-13.36-19.961-5.595-5.594-12.248-10.05-19.962-13.361-7.713-3.314-15.805-4.97-24.278-4.97-7.984 0-15.71 1.506-23.18 4.521-7.468 3.01-14.11 7.265-19.92 12.751l-10.593-10.511c-1.63-1.684-3.503-2.064-5.622-1.141-2.173.924-3.259 2.527-3.259 4.808v36.5c0 1.412.516 2.634 1.548 3.666 1.033 1.032 2.255 1.548 3.667 1.548h36.5c2.282 0 3.884-1.086 4.807-3.259.923-2.118.543-3.992-1.141-5.622l-11.162-11.243c3.803-3.585 8.148-6.341 13.04-8.27 4.889-1.928 9.994-2.893 15.317-2.893 5.649 0 11.04 1.101 16.17 3.3 5.133 2.2 9.572 5.174 13.32 8.922 3.748 3.747 6.722 8.187 8.922 13.32 2.199 5.133 3.299 10.523 3.299 16.17 0 5.65-1.1 11.04-3.299 16.17-2.2 5.133-5.174 9.573-8.922 13.321-3.748 3.748-8.188 6.722-13.32 8.921-5.133 2.2-10.525 3.3-16.17 3.3-6.464 0-12.574-1.412-18.332-4.236-5.757-2.824-10.618-6.816-14.583-11.977-.38-.543-1-.87-1.874-.979-.815 0-1.494.244-2.037.733l-11.162 11.244c-.434.436-.665.991-.692 1.67-.027.68.15 1.29.53 1.833 5.921 7.17 13.09 12.724 21.509 16.661 8.419 3.937 17.3 5.907 26.642 5.907 8.473 0 16.566-1.657 24.279-4.97 7.713-3.313 14.365-7.768 19.961-13.361 5.594-5.596 10.05-12.248 13.361-19.961 3.313-7.713 4.969-15.807 4.969-24.279 0-8.474-1.657-16.564-4.97-24.277" fill="#000" transform="matrix(.07192 0 0 .07192 6.674 6.768)"/></svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
64
gui-apps/nwg-launchers/files/icons/system-shutdown.svg
Normal file
64
gui-apps/nwg-launchers/files/icons/system-shutdown.svg
Normal file
@@ -0,0 +1,64 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
version="1"
|
||||
id="svg8"
|
||||
sodipodi:docname="system-shutdown.svg"
|
||||
inkscape:version="0.92.4 5da689c313, 2019-01-14">
|
||||
<metadata
|
||||
id="metadata14">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs12" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1910"
|
||||
inkscape:window-height="1045"
|
||||
id="namedview10"
|
||||
showgrid="false"
|
||||
inkscape:zoom="14.75"
|
||||
inkscape:cx="-10.135593"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="1925"
|
||||
inkscape:window-y="30"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg8" />
|
||||
<circle
|
||||
fill="#c2352a"
|
||||
cx="8"
|
||||
cy="8"
|
||||
r="8"
|
||||
id="circle2"
|
||||
style="fill:#ffc0cb;fill-opacity:1" />
|
||||
<path
|
||||
fill="#000"
|
||||
d="m8 3a5 5 0 0 0 -5 5 5 5 0 0 0 5 5 5 5 0 0 0 5 -5 5 5 0 0 0 -5 -5zm0 1a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4z"
|
||||
id="path4" />
|
||||
<path
|
||||
fill="#000"
|
||||
d="m8 6c-0.554 0-1 0.223-1 0.5v3c0 0.277 0.446 0.5 1 0.5s1-0.223 1-0.5v-3c0-0.277-0.446-0.5-1-0.5z"
|
||||
id="path6" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
12
gui-apps/nwg-launchers/files/index.theme
Normal file
12
gui-apps/nwg-launchers/files/index.theme
Normal file
@@ -0,0 +1,12 @@
|
||||
[Icon Theme]
|
||||
Name=nwg-launchers
|
||||
Comment=nwg-launchers default icons
|
||||
|
||||
Directories=icons
|
||||
|
||||
[icons]
|
||||
Context=Applications
|
||||
Size=96
|
||||
MinSize=8
|
||||
MaxSize=192
|
||||
Type=Scalable
|
||||
39
gui-apps/nwg-launchers/nwg-launchers-0.4.2-r1.ebuild
Normal file
39
gui-apps/nwg-launchers/nwg-launchers-0.4.2-r1.ebuild
Normal file
@@ -0,0 +1,39 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
if [[ "${PV}" == 9999 ]]
|
||||
then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/nwg-piotr/nwg-launchers.git"
|
||||
else
|
||||
SRC_URI="https://github.com/nwg-piotr/nwg-launchers/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
inherit meson
|
||||
|
||||
DESCRIPTION="GTK+ launchers for sway, i3 and some other WMs"
|
||||
HOMEPAGE="https://github.com/nwg-piotr/nwg-launchers"
|
||||
LICENSE="GPL-3 CC-BY-SA-3.0"
|
||||
|
||||
SLOT="0"
|
||||
|
||||
RDEPEND="
|
||||
x11-libs/gtk+:3
|
||||
dev-cpp/gtkmm:3.0
|
||||
dev-cpp/nlohmann_json"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
IUSE="+bar +dmenu +grid"
|
||||
|
||||
src_configure() {
|
||||
meson_src_configure $(meson_use bar) $(meson_use dmenu) $(meson_use grid)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
meson_src_install
|
||||
|
||||
insinto /usr/share/icons/nwg-launchers
|
||||
doins -r "${FILESDIR}"/.
|
||||
}
|
||||
@@ -15,7 +15,7 @@ inherit meson
|
||||
|
||||
DESCRIPTION="GTK+ launchers for sway, i3 and some other WMs"
|
||||
HOMEPAGE="https://github.com/nwg-piotr/nwg-launchers"
|
||||
LICENSE="GPL-3"
|
||||
LICENSE="GPL-3 CC-BY-SA-3.0"
|
||||
|
||||
SLOT="0"
|
||||
|
||||
@@ -27,8 +27,13 @@ DEPEND="${RDEPEND}"
|
||||
|
||||
IUSE="+bar +dmenu +grid"
|
||||
|
||||
RESTRICT="mirror test"
|
||||
|
||||
src_configure() {
|
||||
meson_src_configure $(meson_use bar) $(meson_use dmenu) $(meson_use grid)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
meson_src_install
|
||||
|
||||
insinto /usr/share/icons/nwg-launchers
|
||||
doins -r "${FILESDIR}"/.
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user