Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 91664
Collapse All | Expand All

(-)/usr/portage/media-libs/tse3/tse3-0.2.7.ebuild (-9 / +11 lines)
Lines 8-14 Link Here
8
8
9
DESCRIPTION="TSE3 Sequencer library"
9
DESCRIPTION="TSE3 Sequencer library"
10
HOMEPAGE="http://TSE3.sourceforge.net/"
10
HOMEPAGE="http://TSE3.sourceforge.net/"
11
SRC_URI="mirror://sourceforge/tse3/${P}.tar.gz"
11
SRC_URI="mirror://sourceforge/tse3/${P}.tar.gz
12
		http://download.berlios.de/noteedit/tse3-patches-1.tar.gz"
12
13
13
LICENSE="GPL-2"
14
LICENSE="GPL-2"
14
SLOT="0"
15
SLOT="0"
Lines 28-45 Link Here
28
		;;
29
		;;
29
	esac
30
	esac
30
31
31
	# gcc-3.4 patch
32
	# gcc-3.4 patch + alsa 1.0 patch
32
	epatch ${FILESDIR}/${P}-gcc34.patch
33
	epatch ${DISTDIR}/tse3-patches-1.tar.gz
34
	autoconf || die
35
	libtoolize --copy --force
33
}
36
}
34
37
35
src_compile() {
38
src_compile() {
36
	local myconf=""
39
	econf \
40
	`use_with oss ` \
41
	`use_with arts` \
42
	`use_with alsa` \
43
	|| die "./configure failed"
37
44
38
	use arts || myconf="${myconf} --without-arts"
39
	use alsa || myconf="${myconf} --without-alsa"
40
	use oss || myconf="${myconf} --without-oss"
41
42
	econf ${myconf} || die "./configure failed"
43
	emake -j1 || die
45
	emake -j1 || die
44
}
46
}
45
47

Return to bug 91664