blob: 4787d29af74fd64bb21ddfaf5b7d56e0b811b18e (
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
27
28
29
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
inherit base
DESCRIPTION="Programming environment mimicking Borland C and Pascal"
HOMEPAGE="http://www.identicalsoftware.com/xwpe/"
SRC_URI="http://www.identicalsoftware.com/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="X"
DEPEND="sys-libs/ncurses
sys-libs/gpm
sys-libs/zlib
X? ( x11-libs/libX11 )"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${P}-destdir.patch" )
src_configure() {
econf $(use_with X x)
}
|