diff options
author | Nick Hadaway <raker@gentoo.org> | 2003-02-18 02:50:23 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2003-02-18 02:50:23 +0000 |
commit | c676d54a7a39b25625a7fa9f2683de692bcc0c50 (patch) | |
tree | edc3bea614ad92a22b5be7a6d5146024fe63ce5a /media-sound/audacity | |
parent | Added a patch for copyright dates. marked stable. (diff) | |
download | historical-c676d54a7a39b25625a7fa9f2683de692bcc0c50.tar.gz historical-c676d54a7a39b25625a7fa9f2683de692bcc0c50.tar.bz2 historical-c676d54a7a39b25625a7fa9f2683de692bcc0c50.zip |
Added a hook so USE="gtk2" causes the build to fail.
Diffstat (limited to 'media-sound/audacity')
-rw-r--r-- | media-sound/audacity/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/audacity/audacity-1.1.1-r1.ebuild | 10 |
2 files changed, 14 insertions, 2 deletions
diff --git a/media-sound/audacity/ChangeLog b/media-sound/audacity/ChangeLog index c8c402135207..2ad43d2a526d 100644 --- a/media-sound/audacity/ChangeLog +++ b/media-sound/audacity/ChangeLog @@ -1,9 +1,13 @@ # ChangeLog for media-sound/audacity # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.10 2003/02/13 05:21:54 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.11 2003/02/18 02:50:23 raker Exp $ *audacity-1.1.1-r1 (30 Jan 2003) + 17 Feb 2003; Nick Hadaway <raker@gentoo.org> audacity-1.1.1-r1.ebuild : + Added a hook so gtk2 in USE causes the compile to stop and warn + the user of the incompatibility. + 12 Feb 2003; Nick Hadaway <raker@gentoo.org> audacity-1.1.1-r1.ebuild, files/basecfg-1.1.1 : Added a very basic configuration so when building against wxGTK, diff --git a/media-sound/audacity/audacity-1.1.1-r1.ebuild b/media-sound/audacity/audacity-1.1.1-r1.ebuild index 493be4000ac3..0b8b05804696 100644 --- a/media-sound/audacity/audacity-1.1.1-r1.ebuild +++ b/media-sound/audacity/audacity-1.1.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.1.1-r1.ebuild,v 1.6 2003/02/14 08:50:02 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.1.1-r1.ebuild,v 1.7 2003/02/18 02:50:23 raker Exp $ inherit eutils @@ -23,6 +23,14 @@ DEPEND=">=x11-libs/wxGTK-2.2.9 S="${WORKDIR}/${PN}-src-${PV}-3" src_unpack() { + if [ `use gtk2` ]; then + eerror "" + eerror "Audacity will not build with wxGTK compiled" + eerror "against gtk2. Make sure you have set" + eerror "-gtk2 in use for this program to compile" + eerror "" + die "Make sure -gtk2 is in USE" + fi unpack ${PN}-src-${PV}-3.tgz cd ${S} epatch ${FILESDIR}/mono_mp3_export.patch || die |