blob: b7c5bd118b921b6c456e8a2d24f5f30e0a2ead05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
inherit eutils
DESCRIPTION="a simple non-validating css1 and html parser for C++"
HOMEPAGE="http://sf.net/projects/htmlcxx"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${P}-ptrdiff_t.patch
default_src_prepare
}
|