blob: fc33921bdd552cb99b75c0b712d576f245e79202 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xtermcontrol/xtermcontrol-2.4.ebuild,v 1.3 2004/07/08 22:54:09 pfeifer Exp $
IUSE=""
DESCRIPTION="xtermcontrol enables dynamic control of XFree86 xterm properties."
SRC_URI="http://www.thrysoee.dk/xtermcontrol/${P}.tar.gz"
HOMEPAGE="http://www.thrysoee.dk/xtermcontrol/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 -*"
DEPEND="virtual/x11"
src_compile() {
econf || die "econf failed"
emake || die
}
src_install () {
einstall || die
}
|