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

(-)gprolog-1.4.1.ebuild.orig (-6 / +6 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/dev-lang/gprolog/gprolog-1.4.1.ebuild,v 1.1 2012/07/02 11:52:49 keri Exp $
3
# $Header: /var/cvsroot/gentoo-x86/dev-lang/gprolog/gprolog-1.4.1.ebuild,v 1.1 2012/07/02 11:52:49 keri Exp $
4
4
5
EAPI=2
5
EAPI=4
6
6
7
inherit eutils flag-o-matic multilib
7
inherit eutils flag-o-matic multilib
8
8
Lines 13-19 Link Here
13
13
14
LICENSE="GPL-2 LGPL-3"
14
LICENSE="GPL-2 LGPL-3"
15
SLOT="0"
15
SLOT="0"
16
KEYWORDS="~amd64 ~ppc ~x86"
16
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
17
IUSE="debug doc examples"
17
IUSE="debug doc examples"
18
18
19
DEPEND=""
19
DEPEND=""
Lines 50-67 Link Here
50
50
51
src_compile() {
51
src_compile() {
52
	cd "${S}"/src
52
	cd "${S}"/src
53
	emake || die "emake failed"
53
	emake
54
}
54
}
55
55
56
src_test() {
56
src_test() {
57
	cd "${S}"/src
57
	cd "${S}"/src
58
	emake check || die "make check failed. See above for details."
58
	emake check
59
}
59
}
60
60
61
src_install() {
61
src_install() {
62
	cd "${S}"/src
62
	cd "${S}"/src
63
	emake DESTDIR="${D}" install || die "emake install failed"
63
	emake DESTDIR="${D}" install
64
64
65
	cd "${S}"
65
	cd "${S}"
66
	dodoc ChangeLog NEWS PROBLEMS README VERSION || die "dodoc failed"
66
	dodoc ChangeLog NEWS PROBLEMS README VERSION
67
}
67
}

Return to bug 433830