public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michael Weber (xmw)" <xmw@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libnsbmp: libnsbmp-0.1.0.ebuild ChangeLog
Date: Sun, 23 Jun 2013 16:48:12 +0000 (UTC)	[thread overview]
Message-ID: <20130623164812.9E1682171C@flycatcher.gentoo.org> (raw)

xmw         13/06/23 16:48:12

  Modified:             libnsbmp-0.1.0.ebuild ChangeLog
  Log:
  Migrate to netsurf.eclass
  
  (Portage version: 2.2.0_alpha183/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)

Revision  Changes    Path
1.2                  media-libs/libnsbmp/libnsbmp-0.1.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libnsbmp/libnsbmp-0.1.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libnsbmp/libnsbmp-0.1.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libnsbmp/libnsbmp-0.1.0.ebuild?r1=1.1&r2=1.2

Index: libnsbmp-0.1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libnsbmp/libnsbmp-0.1.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libnsbmp-0.1.0.ebuild	17 Jun 2013 17:29:07 -0000	1.1
+++ libnsbmp-0.1.0.ebuild	23 Jun 2013 16:48:12 -0000	1.2
@@ -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/media-libs/libnsbmp/libnsbmp-0.1.0.ebuild,v 1.1 2013/06/17 17:29:07 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libnsbmp/libnsbmp-0.1.0.ebuild,v 1.2 2013/06/23 16:48:12 xmw Exp $
 
 EAPI=5
 
-inherit base toolchain-funcs multilib-minimal
+inherit netsurf
 
 DESCRIPTION="decoding library for BMP and ICO image file formats, written in C"
 HOMEPAGE="http://www.netsurf-browser.org/projects/libnsbmp/"
@@ -13,128 +13,3 @@
 SLOT="0"
 KEYWORDS="~amd64 ~arm"
 IUSE=""
-
-RDEPEND=""
-DEPEND=""
-
-### 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
-}
-
-src_compile() {
-	netsurf_src_compile
-}
-
-src_test() {
-	netsurf_src_test
-}
-
-src_install() {
-	netsurf_src_install
-}



1.5                  media-libs/libnsbmp/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libnsbmp/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libnsbmp/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libnsbmp/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libnsbmp/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	17 Jun 2013 17:29:07 -0000	1.4
+++ ChangeLog	23 Jun 2013 16:48:12 -0000	1.5
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libnsbmp
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libnsbmp/ChangeLog,v 1.4 2013/06/17 17:29:07 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libnsbmp/ChangeLog,v 1.5 2013/06/23 16:48:12 xmw Exp $
+
+  23 Jun 2013; Michael Weber <xmw@gentoo.org> libnsbmp-0.1.0.ebuild:
+  Migrate to netsurf.eclass
 
 *libnsbmp-0.1.0 (17 Jun 2013)
 





             reply	other threads:[~2013-06-23 16:48 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-23 16:48 Michael Weber (xmw) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2014-01-05 19:09 [gentoo-commits] gentoo-x86 commit in media-libs/libnsbmp: libnsbmp-0.1.0.ebuild ChangeLog Fabian Groffen (grobian)
2013-06-17 17:29 Michael Weber (xmw)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130623164812.9E1682171C@flycatcher.gentoo.org \
    --to=xmw@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox