summaryrefslogtreecommitdiff
blob: d1ec661d9f1f2baa3cd04f7f224ab6d1f598a3de (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
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

DESCRIPTION="Simple programming environment mimicking ancient 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)
}