summaryrefslogtreecommitdiff
blob: e615c50034d55376d2cdc063b3c177be610efe6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit toolchain-funcs

DESCRIPTION="Another Modeline Calculator. Generates quality X11 display configs easily."
HOMEPAGE="http://amlc.berlios.de/"
SRC_URI="http://amlc.berlios.de/src/${P}.cpp"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
S=${WORKDIR}

src_unpack() {
	cp ${DISTDIR}/${P}.cpp ${S}
}

src_compile() {
	$(tc-getCXX) ${CXXFLAGS} ${LDFLAGS} ${S}/${P}.cpp -o amlc
}

src_install() {
	dobin amlc
}