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

(-)xmule-1.6.1.ebuild (-4 / +11 lines)
Lines 1-6 Link Here
1
# Copyright 1999-2003 Gentoo Technologies, Inc.
1
# Copyright 1999-2003 Gentoo Technologies, Inc.
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: /home/cvsroot/gentoo-x86/net-p2p/xmule/xmule-1.6.1.ebuild,v 1.4 2003/10/18 23:19:16 scandium Exp $
3
# $Header: $
4
4
5
MY_P=${P//a}
5
MY_P=${P//a}
6
S=${WORKDIR}/${MY_P}
6
S=${WORKDIR}/${MY_P}
Lines 29-44 Link Here
29
	fi
29
	fi
30
}
30
}
31
31
32
src_unpack() {
33
	unpack ${A}
34
	cd ${S}
35
	
36
	sed -i 's/@datadir@/${DESTDIR}@datadir@/' Makefile.in
37
}
38
32
src_compile () {
39
src_compile () {
33
	aclocal
40
	aclocal
34
	autoconf
41
	autoconf
35
	autoheader
42
	autoheader
36
	automake
43
	automake
37
44
38
	econf || die
45
	econf || die "econf failed"
39
	MAKEOPTS="${MAKEOPTS} -j1" emake || die
46
	MAKEOPTS="${MAKEOPTS} -j1" emake || die "emake failed"
40
}
47
}
41
48
42
src_install () {
49
src_install () {
43
	einstall || die
50
	einstall mkinstalldirs=${S}/mkinstalldirs DESTDIR=${D} || die "einstall failed"
44
}
51
}

Return to bug 33607