commit: 89cd197377b7271e11c9f56a964e26ceb18fde0f Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org> AuthorDate: Sat May 27 18:40:30 2023 +0000 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org> CommitDate: Sat May 27 22:01:24 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89cd1973
dev-libs/libcss: add 9999 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org> dev-libs/libcss/libcss-9999.ebuild | 47 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/dev-libs/libcss/libcss-9999.ebuild b/dev-libs/libcss/libcss-9999.ebuild new file mode 100644 index 000000000000..54b3baf92934 --- /dev/null +++ b/dev-libs/libcss/libcss-9999.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit git-r3 netsurf + +DESCRIPTION="CSS parser and selection engine, written in C" +HOMEPAGE="https://www.netsurf-browser.org/projects/libcss/" + +EGIT_REPO_URI="https://git.netsurf-browser.org/${PN}.git" +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="" +IUSE="test" + +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/libparserutils + dev-libs/libwapcaplet" +DEPEND="${RDEPEND} + test? ( dev-lang/perl )" +BDEPEND=" + dev-util/netsurf-buildsystem + virtual/pkgconfig" + +src_prepare() { + default +} + +_emake() { + netsurf_define_makeconf + emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared $@ +} + +src_compile() { + _emake +} + +src_test() { + _emake test +} + +src_install() { + _emake DESTDIR="${D}" install +}
