summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-sound/zyn-fusion')
-rw-r--r--media-sound/zyn-fusion/Manifest2
-rw-r--r--media-sound/zyn-fusion/metadata.xml8
-rw-r--r--media-sound/zyn-fusion/zyn-fusion-9999.ebuild50
3 files changed, 0 insertions, 60 deletions
diff --git a/media-sound/zyn-fusion/Manifest b/media-sound/zyn-fusion/Manifest
deleted file mode 100644
index 00280ae43..000000000
--- a/media-sound/zyn-fusion/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-EBUILD zyn-fusion-9999.ebuild 1151 BLAKE2B a826682d5a264c0cfd0c97bfdf5a688c0cb3255a5ddc860a146d916701de2111bd41ee6c576898bbcf5853cec6fef9ac5551e14d84436dfb659d51901c0bc392 SHA512 2b6572756719c10d76fc6ac3980582d0c7bea1c3e9d73851392bad4e13d2f8fb7753318bc29d3f2b3fef46235e8350e42a653ee6ef527fb2adb59b3c6662435e
-MISC metadata.xml 249 BLAKE2B 54d645d97d1d7247d704241142448ad8492c53d9aa7d69a7fcc51df476d08b6226fef93ec880696d52d90af056a1b296006eeb1798b58799d5b66b8edc336d81 SHA512 8ff95dedc1dff6414020296e10ae064acd622ded48000f43fa5e43bc834699f8cab267d48b382f087942a42fbefc343ced091b1c6db0feab95551ebe2cf18d25
diff --git a/media-sound/zyn-fusion/metadata.xml b/media-sound/zyn-fusion/metadata.xml
deleted file mode 100644
index 11287d129..000000000
--- a/media-sound/zyn-fusion/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>fordfrog@gentoo.org</email>
- <name>Miroslav Šulc</name>
- </maintainer>
-</pkgmetadata>
diff --git a/media-sound/zyn-fusion/zyn-fusion-9999.ebuild b/media-sound/zyn-fusion/zyn-fusion-9999.ebuild
deleted file mode 100644
index a7250a7ab..000000000
--- a/media-sound/zyn-fusion/zyn-fusion-9999.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit git-r3
-
-DESCRIPTION="Zyn-Fusion User Interface"
-HOMEPAGE="https://github.com/mruby-zest/mruby-zest-build"
-EGIT_REPO_URI="https://github.com/mruby-zest/mruby-zest-build"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-
-DEPEND="dev-libs/libuv
- x11-libs/libX11
- x11-libs/libxcb"
-RDEPEND="${DEPEND}"
-BDEPEND=""
-
-# TODO Use gentoo custom "FLAGS" (makefile and rake file)
-# TODO allow binary, library and data installation in standard path
-
-src_prepare() {
- # Unbundle libuv: makefile and rake file
- sed -i -e "s%./deps/\$(UV_DIR)/.libs/libuv.a%`pkg-config --libs libuv`%" \
- -e 's%-I ../../deps/\$(UV_DIR)/include%-I /usr/include/uv/%' Makefile
- sed -i -e "/deps\/libuv.a/s/<< .*/<< \"`pkg-config --libs libuv`\"/" \
- -e 's%../deps/libuv-v1.9.1/include/%usr/include/uv/%' build_config.rb
- eapply_user
-}
-
-src_compile() {
- default_src_compile
- emake pack
-}
-
-src_install() {
- cd package
-
- exeinto /opt/${PN}
- doexe zest
- dodir /usr/bin/
- dosym ../../opt/${PN}/zest /usr/bin/${PN}
-
- insinto /opt/${PN}
- doins -r font qml schema libzest.so
-}