diff options
author | Michael Weber <xmw@gentoo.org> | 2013-06-23 16:44:31 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2013-06-23 16:44:31 +0000 |
commit | 25e9b9df2a672c98ff9e6ba94346ceab4c6609d3 (patch) | |
tree | 3e21ee0ebf45ee4061d4ac1c4a12f4d597e75dae /net-libs/libdom | |
parent | Migrate to netsurf.eclass (diff) | |
download | gentoo-2-25e9b9df2a672c98ff9e6ba94346ceab4c6609d3.tar.gz gentoo-2-25e9b9df2a672c98ff9e6ba94346ceab4c6609d3.tar.bz2 gentoo-2-25e9b9df2a672c98ff9e6ba94346ceab4c6609d3.zip |
Migrate to netsurf.eclass
(Portage version: 2.2.0_alpha183/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
Diffstat (limited to 'net-libs/libdom')
-rw-r--r-- | net-libs/libdom/ChangeLog | 5 | ||||
-rw-r--r-- | net-libs/libdom/libdom-0.0.1.ebuild | 122 |
2 files changed, 6 insertions, 121 deletions
diff --git a/net-libs/libdom/ChangeLog b/net-libs/libdom/ChangeLog index 555bcb0d388e..a9c6b0b39e61 100644 --- a/net-libs/libdom/ChangeLog +++ b/net-libs/libdom/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-libs/libdom # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libdom/ChangeLog,v 1.3 2013/06/18 05:58:50 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libdom/ChangeLog,v 1.4 2013/06/23 16:44:31 xmw Exp $ + + 23 Jun 2013; Michael Weber <xmw@gentoo.org> libdom-0.0.1.ebuild: + Migrate to netsurf.eclass *libdom-0.0.1 (18 Jun 2013) diff --git a/net-libs/libdom/libdom-0.0.1.ebuild b/net-libs/libdom/libdom-0.0.1.ebuild index 36734160f2b1..9ad5c43bfd46 100644 --- a/net-libs/libdom/libdom-0.0.1.ebuild +++ b/net-libs/libdom/libdom-0.0.1.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libdom/libdom-0.0.1.ebuild,v 1.1 2013/06/18 05:58:50 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libdom/libdom-0.0.1.ebuild,v 1.2 2013/06/23 16:44:31 xmw Exp $ EAPI=5 -inherit base toolchain-funcs multilib-minimal +inherit netsurf DESCRIPTION="implementation of the W3C DOM, written in C" HOMEPAGE="http://www.netsurf-browser.org/projects/libdom/" @@ -31,112 +31,6 @@ DEPEND="${RDEPEND} REQUIRED_USE="test? ( xml )" -### future context of netsurf.eclass - -NETSURF_BUILDSYSTEM="${NETSURF_BUILDSYSTEM:-buildsystem-1.0}" -SRC_URI=${SRC_URI:-http://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz} -SRC_URI+=" - http://download.netsurf-browser.org/libs/releases/${NETSURF_BUILDSYSTEM}.tar.gz -> netsurf-${NETSURF_BUILDSYSTEM}.tar.gz" -IUSE+=" debug static-libs" -if has doc ${IUSE} ; then - DEPEND+=" - doc? ( app-doc/doxygen )" -fi -DEPEND+=" - virtual/pkgconfig" -pkg_setup(){ - netsurf_src_prepare() { - if [ -f docs/doxygen.conf ] ; then - if ! has doc ${IUSE} ; then - if [ -z "${NETSURF_IGNORE_DOXYGEN}" ] ; then - die "Missing IUSE=doc" - fi - fi - fi - - base_src_prepare - - multilib_copy_sources - } - - netsurf_src_configure() { - netsurf_makeconf=( - NSSHARED=${WORKDIR}/${NETSURF_BUILDSYSTEM} - Q= - CCOPT= - CCNOOPT= - CCDBG= - LDDBG= - AR="$(tc-getAR)" - BUILD=$(usex debug debug release) - DESTDIR="${D}" - PREFIX="${EROOT}"usr - ) - - multilib-minimal_src_configure - } - - netsurf_src_compile() { - multilib-minimal_src_compile - - if has doc ${IUSE} ; then - use doc && netsurf_make docs - fi - } - - netsurf_src_test() { - multilib-minimal_src_test - } - - netsurf_src_install() { - multilib-minimal_src_install - } - - multilib_src_configure() { - sed -e "/^INSTALL_ITEMS/s: /lib: /$(get_libdir):g" \ - -i Makefile || die - if [ -f ${PN}.pc.in ] ; then - sed -e "/^libdir/s:/lib:/$(get_libdir):g" \ - -i ${PN}.pc.in || die - fi - } - - netsurf_make() { - emake CC="$(tc-getCC)" LD="$(tc-getLD)" "${netsurf_makeconf[@]}" \ - COMPONENT_TYPE=lib-shared "$@" - if use static-libs ; then - emake CC="$(tc-getCC)" LD="$(tc-getLD)" "${netsurf_makeconf[@]}" \ - COMPONENT_TYPE=lib-static "$@" - fi - } - - multilib_src_compile() { - netsurf_make - } - - multilib_src_test() { - netsurf_make test - } - - multilib_src_test() { - netsurf_make test - } - - multilib_src_install() { - netsurf_make install - } - - multilib_src_install_all() { - if has doc ${IUSE} ; then - use doc && dohtml -r build/docs/html/* - fi - } -} - -src_prepare() { - netsurf_src_prepare -} - src_configure() { netsurf_src_configure @@ -145,15 +39,3 @@ src_configure() { WITH_LIBXML_BINDING=$(usex xml $(usex expat no yes) no) ) } - -src_compile() { - netsurf_src_compile -} - -src_test() { - netsurf_src_test -} - -src_install() { - netsurf_src_install -} |