-
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.
discord version bump + repo metadata
- Loading branch information
Showing
7 changed files
with
122 additions
and
1 deletion.
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,3 @@ | ||
# evie_overlay | ||
# evie_overlay | ||
|
||
Evie gentoo portage overlay for experimental apps |
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,2 @@ | ||
masters = gentoo | ||
auto-sync = false |
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,3 @@ | ||
DIST discord-0.0.2.deb 46975796 SHA256 2500c1f0e3bf51dd45983fb693b3f5efdd31b0edffc947fec7160fad098dc815 SHA512 ca31952e4eba88c0a40a31eb5671ae71641f8575b298557ff0f1bc1d99d12b1cf282f4178650af594562831a31961aa8cd27ae70e301831190ff6647c3561bd2 WHIRLPOOL 13a5967a9b86aca0ec6be991905968d17da16edb119356a7ccd95eb311c0b5d53cd26e27dfe9978a67fd9260008104c0b08ccf115b62934bfdf79be6495af39f | ||
EBUILD discord-bin-0.0.2.ebuild 1724 SHA256 e43c8c1c1d9758f9a64b213f6446ddc90f3f455082569487d440f726972e8a08 SHA512 ce85ed6ca62fea67b24571805d9fc0bfc1408cb22b77b99303fe5398ecd9a42a0b72f4ce25d34a19f502979ff5dd410b08f606317d9d8a28a0cecf03b8481612 WHIRLPOOL d6dd66458e7523d9756d1b38348f073820f7f0f0acca417f260c4c46335c017714c58e999489647725b613ee5cc757fb1f0363953cf4b5ca9612d24dafa2d848 | ||
MISC metadata.xml 245 SHA256 c8fd18cdca0ab20111109880330a2b5c38b0a9121907a91c9d58742eec7aa5ae SHA512 ecb8a4621081ccdd43f08e4f560b0bc820c27d6a282c87e1a8f77137ec8b215188fe31f11fc6379533afee2ebe7e14d5395a45c1aab9abfe423fd832dba692a4 WHIRLPOOL ed161f9c8693ad391d2db9e8cb45156e676b7736e3a0a67c643ba2b6699f313a18e0d028921b519bbc4a8adc1436b60556d5acebfc0f5fcce01904dcfc881864 |
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,92 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
MY_PN=${PN/-bin/} | ||
inherit eutils gnome2-utils unpacker | ||
|
||
DESCRIPTION="All-in-one voice and text chat for gamers" | ||
HOMEPAGE="https://discordapp.com" | ||
SRC_URI="https://dl.discordapp.net/apps/linux/${PV}/${MY_PN}-${PV}.deb" | ||
|
||
LICENSE="all-rights-reserved" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
IUSE="" | ||
|
||
RDEPEND=" | ||
dev-libs/atk | ||
dev-libs/expat | ||
dev-libs/glib:2 | ||
dev-libs/nspr | ||
dev-libs/nss | ||
gnome-base/gconf:2 | ||
media-libs/alsa-lib | ||
media-libs/fontconfig:1.0 | ||
media-libs/freetype:2 | ||
net-print/cups | ||
sys-apps/dbus | ||
sys-libs/libcxx | ||
x11-libs/cairo | ||
x11-libs/gdk-pixbuf:2 | ||
x11-libs/gtk+:2 | ||
x11-libs/libX11 | ||
x11-libs/libXScrnSaver | ||
x11-libs/libXcomposite | ||
x11-libs/libXcursor | ||
x11-libs/libXdamage | ||
x11-libs/libXext | ||
x11-libs/libXfixes | ||
x11-libs/libXi | ||
x11-libs/libXrandr | ||
x11-libs/libXrender | ||
x11-libs/libXtst | ||
x11-libs/pango | ||
" | ||
|
||
S=${WORKDIR} | ||
|
||
RESTRICT="mirror bindist" | ||
|
||
QA_PREBUILT=" | ||
opt/discord/share/discord/Discord | ||
opt/discord/share/discord/libnode.so | ||
opt/discord/share/discord/libffmpeg.so | ||
" | ||
|
||
src_unpack() { | ||
unpack_deb ${A} | ||
} | ||
|
||
src_prepare() { | ||
default | ||
|
||
sed -i \ | ||
-e "s:/usr/share/discord/Discord:discord:g" \ | ||
usr/share/${MY_PN}/${MY_PN}.desktop || die | ||
} | ||
|
||
src_install() { | ||
insinto /opt/${MY_PN} | ||
doins -r usr/. | ||
|
||
fperms +x /opt/${MY_PN}/bin/${MY_PN} | ||
dosym /opt/${MY_PN}/bin/${MY_PN} /usr/bin/${MY_PN} | ||
dosym /opt/${MY_PN}/share/applications/${MY_PN}.desktop \ | ||
/usr/share/applications/${MY_PN}.desktop | ||
dosym /opt/${MY_PN}/share/pixmaps/${MY_PN}.png \ | ||
/usr/share/pixmaps/${MY_PN}.png | ||
} | ||
|
||
pkg_preinst() { | ||
gnome2_icon_savelist | ||
} | ||
|
||
pkg_postinst() { | ||
gnome2_icon_cache_update | ||
} | ||
|
||
pkg_postrm() { | ||
gnome2_icon_cache_update | ||
} |
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,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Johannes Huber</name> | ||
</maintainer> | ||
</pkgmetadata> |
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 @@ | ||
evie_overlay |
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,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE repositories SYSTEM "/dtd/repositories.dtd"> | ||
<repositories> | ||
<repo quality="experimental" status="unofficial"> | ||
<name>evie</name> | ||
<description>evie portage overlay</description> | ||
<homepage>https://lefthy.de</homepage> | ||
<owner> | ||
<email>[email protected]</email> | ||
</owner> | ||
<source type="git">git://github.com/marcvef/evie_overlay.git</source> | ||
</repo> | ||
</repositories> |