Are there any gentoo overlays that contain kxstudio?

What other apps and distros do you use to round out your studio?

Moderators: MattKingUSA, khz

Post Reply
Gooberpatrol66
Established Member
Posts: 22
Joined: Tue Oct 21, 2014 3:35 am

Are there any gentoo overlays that contain kxstudio?

Post by Gooberpatrol66 »

I can't seem to find it in the proaudio overlay and I can't seem to find much on the topic. Are there plans to add it?

I can't live without my kxstudio ;_;
User avatar
sysrqer
Established Member
Posts: 2523
Joined: Thu Nov 14, 2013 11:47 pm
Has thanked: 320 times
Been thanked: 152 times
Contact:

Re: Are there any gentoo overlays that contain kxstudio?

Post by sysrqer »

Proaudio overlay is pretty much dead. There are a few people working on getting important stuff in to the main tree and they said kxstudio programs (carla, cadence etc) would be added at some point. I doubt that everything in kxstudio will be available though. There are a few ebuilds for carla and cadence floating around, they are both pretty easy to build and to make an ebuild for.

Was there something in particular you were looking for?
Gooberpatrol66
Established Member
Posts: 22
Joined: Tue Oct 21, 2014 3:35 am

Re: Are there any gentoo overlays that contain kxstudio?

Post by Gooberpatrol66 »

Was there something in particular you were looking for?
As in, what I need kxstudio for? I usually use cadence to configure jack, carla as a vst host, and claudia to work with ladish.

Where are these ebuilds you speak of?
User avatar
sysrqer
Established Member
Posts: 2523
Joined: Thu Nov 14, 2013 11:47 pm
Has thanked: 320 times
Been thanked: 152 times
Contact:

Re: Are there any gentoo overlays that contain kxstudio?

Post by sysrqer »

Gooberpatrol66 wrote: Where are these ebuilds you speak of?
These are basic ones, the dependencies are not listed so you might need to check on falkTX's build instructions to make sure you have everything if you have a problem (there's not many though and you probably have them all already).

http://data.gpo.zugaina.org/netcrave/me ... 999.ebuild

https://bpaste.net/show/0825f5f0728e
User avatar
khz
Established Member
Posts: 1648
Joined: Thu Apr 17, 2008 6:29 am
Location: German
Has thanked: 42 times
Been thanked: 92 times

Re: Are there any gentoo overlays that contain kxstudio?

Post by khz »

. . . FZ - Does humor belongs in Music?
. . GNU/LINUX@AUDIO ~ /Wiki $ Howto.Info && GNU/Linux Debian installing >> Linux Audio Workstation LAW
  • I don't care about the freedom of speech because I have nothing to say.
Gooberpatrol66
Established Member
Posts: 22
Joined: Tue Oct 21, 2014 3:35 am

Re: Are there any gentoo overlays that contain kxstudio?

Post by Gooberpatrol66 »

Alright, I suped up that ebuild. Everything seems to work. Here it is:

Code: Select all

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# requires proaudio overlay
EAPI=5
inherit git-r3

DESCRIPTION="Collection of tools useful for audio production"
HOMEPAGE="http://kxstudio.linuxaudio.org/"
SRC_URI=""
EGIT_BRANCH="master"
EGIT_REPO_URI="https://github.com/falkTX/Cadence.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+a2jmidid +capture pulseaudio +ladish"
#requires jack2, python3 for pyqt4 and dbus-python
#ladish pulls from git to workaround 404 at ladish.org
DEPEND="=media-sound/jack-audio-connection-kit-1*
	dev-python/PyQt4[examples]
	dev-python/dbus-python
	a2jmidid? ( media-sound/a2jmidid )
	capture? ( media-sound/jack_capture )
	pulseaudio? ( media-sound/pulseaudio[jack] )
	ladish? ( =media-sound/ladish-9999-r1 )"
RDEPEND=${DEPEND}
src_compile() {
	emake

}
src_install() {
	emake DESTDIR="${D}" install
}

brb until i make one for carla

Edit: cleaned it up a bit
Gooberpatrol66
Established Member
Posts: 22
Joined: Tue Oct 21, 2014 3:35 am

Re: Are there any gentoo overlays that contain kxstudio?

Post by Gooberpatrol66 »

And here's the carla one:

Code: Select all

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# requires proaudio overlay
EAPI=5
inherit git-r3

DESCRIPTION="Fully-featured audio plugin host, with support for many audio drivers and plugin formats."
HOMEPAGE="http://kxstudio.linuxaudio.org/"
SRC_URI=""
EGIT_BRANCH="master"
EGIT_REPO_URI="https://github.com/falkTX/Carla.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
#media-sound/linuxsampler and x11-libs/ntk both have compile errors
IUSE="+magic +osc jack alsa pulseaudio X +lv2ui -samplers -plugins +rdf"
#pyqt and rdflib require python3
DEPEND="|| ( dev-python/PyQt4 dev-python/PyQt5 )
	magic? ( sys-libs/libmagic )
	osc? ( media-libs/liblo )
	jack? ( media-sound/jack-audio-connection-kit )
	alsa? ( media-libs/alsa-lib )
	pulseaudio? ( media-sound/pulseaudio )
	X? ( x11-base/xorg-server )
	lv2ui? ( x11-libs/gtk+:2 x11-libs/gtk+:3 dev-python/PyQt4 dev-python/PyQt5 )
	samplers? ( media-sound/fluidsynth media-sound/linuxsampler )
	plugins? ( sci-libs/fftw:3.0 dev-libs/mini-xml sys-libs/zlib x11-libs/ntk virtual/opengl media-libs/libprojectm-qt )
	rdf? ( dev-python/rdflib )"
RDEPEND=${DEPEND}
src_compile() {
	emake

}
src_install() {
	emake DESTDIR="${D}" install
}
User avatar
sysrqer
Established Member
Posts: 2523
Joined: Thu Nov 14, 2013 11:47 pm
Has thanked: 320 times
Been thanked: 152 times
Contact:

Re: Are there any gentoo overlays that contain kxstudio?

Post by sysrqer »

That's great, you should post them in that thread listed above, you might be able to get these two in to the main tree a bit quicker.
Post Reply