Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 88676 | Differences between
and this patch

Collapse All | Expand All

(-)/usr/portage/x11-libs/gtkglarea/gtkglarea-1.2.3-r1.ebuild (-4 / +11 lines)
Lines 4-9 Link Here
4
4
5
# GTKGLArea has been abandoned by the author. We'll continue to mirror the
5
# GTKGLArea has been abandoned by the author. We'll continue to mirror the
6
# source on Gentoo mirrors.
6
# source on Gentoo mirrors.
7
8
inherit multilib
9
7
DESCRIPTION="GL Extentions for gtk+"
10
DESCRIPTION="GL Extentions for gtk+"
8
HOMEPAGE="http://www.student.oulu.fi/~jlof/gtkglarea/"
11
HOMEPAGE="http://www.student.oulu.fi/~jlof/gtkglarea/"
9
SRC_URI="mirror://gentoo/${P}.tar.gz"
12
SRC_URI="mirror://gentoo/${P}.tar.gz"
Lines 19-31 Link Here
19
	virtual/opengl"
22
	virtual/opengl"
20
23
21
src_compile() {
24
src_compile() {
22
	./configure --prefix=/usr \
25
	./configure \
23
		--host=${CHOST} || die
26
	--prefix=/usr \
24
	make || die
27
	--libdir=/usr/$(get_libdir) \
28
	--host=${CHOST} || die "configure failed"
29
	emake || die "emake failed"
25
}
30
}
26
31
27
src_install() {
32
src_install() {
28
	make DESTDIR=${D} install || die
33
	make DESTDIR=${D} \
34
	libdir=${D}/usr/$(get_libdir) \
35
	install || die "make install failed"
29
	dodoc AUTHORS ChangeLog NEWS README
36
	dodoc AUTHORS ChangeLog NEWS README
30
	docinto txt
37
	docinto txt
31
	dodoc docs/*.txt
38
	dodoc docs/*.txt
(-)/usr/portage/x11-libs/gtkglarea/gtkglarea-1.99.0.ebuild (-4 / +9 lines)
Lines 2-8 Link Here
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkglarea/gtkglarea-1.99.0.ebuild,v 1.24 2005/02/01 16:34:29 foser Exp $
3
# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkglarea/gtkglarea-1.99.0.ebuild,v 1.24 2005/02/01 16:34:29 foser Exp $
4
4
5
inherit gnome2 gnuconfig
5
inherit gnome2 gnuconfig multilib
6
6
7
DESCRIPTION="GL extensions for gtk+"
7
DESCRIPTION="GL extensions for gtk+"
8
HOMEPAGE="http://www.gnome.org/"
8
HOMEPAGE="http://www.gnome.org/"
Lines 22-30 Link Here
22
22
23
src_compile() {
23
src_compile() {
24
	gnuconfig_update
24
	gnuconfig_update
25
	econf || die
25
	econf || die "econf failed"
26
	emake || die
26
	emake || die "emake failed"
27
27
28
}
28
}
29
29
30
DOCS="AUTHORS ChangeLog INSTALL NEWS README* docs/*.txt"
30
src_install() {
31
	make DESTDIR=${D} \
32
	libdir=/usr/$(get_libdir) \
33
	install || die "make install failed"
34
	dodoc AUTHORS ChangeLog INSTALL NEWS README* docs/*.txt
35
}

Return to bug 88676