diff options
author | Frank van de Pol <fvdpol@gentoo.org> | 2004-06-20 14:38:19 +0000 |
---|---|---|
committer | Frank van de Pol <fvdpol@gentoo.org> | 2004-06-20 14:38:19 +0000 |
commit | d5eaa5f66ed84394b377ae72324e14221645ed26 (patch) | |
tree | 9d1a8fa99ae8158901b6f6e29c8c91ac669d0174 /media-sound/qsynth/qsynth-0.1.0.ebuild | |
parent | Stable on x86. (Manifest recommit) (diff) | |
download | gentoo-2-d5eaa5f66ed84394b377ae72324e14221645ed26.tar.gz gentoo-2-d5eaa5f66ed84394b377ae72324e14221645ed26.tar.bz2 gentoo-2-d5eaa5f66ed84394b377ae72324e14221645ed26.zip |
Fixed sandbox violations, closing bug #45289.
Diffstat (limited to 'media-sound/qsynth/qsynth-0.1.0.ebuild')
-rw-r--r-- | media-sound/qsynth/qsynth-0.1.0.ebuild | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/media-sound/qsynth/qsynth-0.1.0.ebuild b/media-sound/qsynth/qsynth-0.1.0.ebuild index 9e38c8a8ddb9..3a1ae7d047be 100644 --- a/media-sound/qsynth/qsynth-0.1.0.ebuild +++ b/media-sound/qsynth/qsynth-0.1.0.ebuild @@ -1,22 +1,27 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qsynth/qsynth-0.1.0.ebuild,v 1.1 2004/01/15 01:57:17 wmertens Exp $ - -IUSE="" +# $Header: /var/cvsroot/gentoo-x86/media-sound/qsynth/qsynth-0.1.0.ebuild,v 1.2 2004/06/20 14:38:19 fvdpol Exp $ DESCRIPTION="A Qt application to control FluidSynth" HOMEPAGE="http://qsynth.sf.net/" SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz" -RESTRICT="nomirror" - LICENSE="GPL-2" + SLOT="0" -KEYWORDS="x86" +IUSE="" +KEYWORDS="x86 ~amd64" DEPEND="virtual/glibc >=x11-libs/qt-3.1.1 media-sound/fluidsynth" +src_compile() { + addwrite ${QTDIR}/etc/settings + econf || die + einstall || die +} + src_install () { einstall || die "make install failed" + dodoc AUTHORS COPYING ChangeLog README TODO } |