Starting the overlay with a qutecsound ebuild
This commit is contained in:
commit
b8dd35a405
2
media-sound/qutecsound/Manifest
Normal file
2
media-sound/qutecsound/Manifest
Normal file
|
@ -0,0 +1,2 @@
|
|||
DIST qutecsound-0.6.1-src.tar.gz 9398082 SHA256 88c65122421a65b00f1ca3da2922c7b7c9b18d6cc4dd62ac121787696ac95955 SHA512 9a30e83c554d2e5e6eb7ea1fedd01284859719df4d308e2c6684b13e2286eec04a8a7ec76a7dd1f922329247f85b9b32d4a7c9c74eaccd0d1e827c454aa15c36 WHIRLPOOL b950bfd139daeb104af9503d25b86788f8f5719f0a588c4ffaf60ad0f07f0459049418f0eec64d9a921bf785c67e5a60c50063de6cd34fc924d8e0dc13ce4f2d
|
||||
EBUILD qutecsound-0.6.1.ebuild 700 SHA256 faaee56dc28248cc4afc429dfd0e0248162ef74cde511d1bf5c5758e26ab7a63 SHA512 8c14546a8ffb44914c7e1a05f4576bd92089db99307fa9fa9ee54bd31607dd3bb8e8fd94c04d4d23d5a7dd0c417f21b0f9efa3cff167f4027dcf00e573673fa5 WHIRLPOOL c3c8efeeb984ef667075823c86f6febac194a62be642616c9569eeacd75d2700e5858e51fad9e882b1c684f1c04be5f48df2f8e440f26d51b1703b6068f12b44
|
33
media-sound/qutecsound/qutecsound-0.6.1.ebuild
Normal file
33
media-sound/qutecsound/qutecsound-0.6.1.ebuild
Normal file
|
@ -0,0 +1,33 @@
|
|||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=4
|
||||
|
||||
inherit qt4-r2
|
||||
|
||||
DESCRIPTION="A cross-platform editor and graphical frontend for Csound."
|
||||
HOMEPAGE="http://qutecsound.sourceforge.net/"
|
||||
SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}-src.tar.gz"
|
||||
|
||||
LICENSE="GPLv2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~i386 ~arm"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="media-sound/csound x11-libs/qt-gui:4"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
qt4-r2_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake4 qcs.pro
|
||||
}
|
||||
|
||||
src_install() {
|
||||
# make install doesn't work, so install the app manually
|
||||
mkdir -p "${ED}/usr/bin"
|
||||
install -m 755 "${S}/bin/qutecsound-f" "${ED}/usr/bin/qutecsound"
|
||||
}
|
Loading…
Reference in a new issue