public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-libs/liboauth: ChangeLog liboauth-0.9.4.ebuild
@ 2011-03-18  0:37 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 2+ messages in thread
From: Diego Petteno (flameeyes) @ 2011-03-18  0:37 UTC (permalink / raw
  To: gentoo-commits

flameeyes    11/03/18 00:37:34

  Modified:             ChangeLog
  Added:                liboauth-0.9.4.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha27/cvs/Linux x86_64)

Revision  Changes    Path
1.8                  net-libs/liboauth/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/liboauth/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/liboauth/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/liboauth/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/liboauth/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	13 Jan 2011 23:13:55 -0000	1.7
+++ ChangeLog	18 Mar 2011 00:37:33 -0000	1.8
@@ -1,6 +1,11 @@
 # ChangeLog for net-libs/liboauth
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/liboauth/ChangeLog,v 1.7 2011/01/13 23:13:55 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/liboauth/ChangeLog,v 1.8 2011/03/18 00:37:33 flameeyes Exp $
+
+*liboauth-0.9.4 (18 Mar 2011)
+
+  18 Mar 2011; Diego E. Pettenò <flameeyes@gentoo.org> +liboauth-0.9.4.ebuild:
+  Version bump.
 
   13 Jan 2011; Diego E. Pettenò <flameeyes@gentoo.org> liboauth-0.9.2.ebuild:
   Also allow sf.net mirrors in SRC_URI since starting this version they are



1.1                  net-libs/liboauth/liboauth-0.9.4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/liboauth/liboauth-0.9.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/liboauth/liboauth-0.9.4.ebuild?rev=1.1&content-type=text/plain

Index: liboauth-0.9.4.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/liboauth/liboauth-0.9.4.ebuild,v 1.1 2011/03/18 00:37:33 flameeyes Exp $

EAPI=2

DESCRIPTION="C library implementing the OAuth secure authentication protocol"
HOMEPAGE="http://liboauth.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
	http://liboauth.sourceforge.net/pool/${P}.tar.gz"

LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="curl doc bindist +nss"

CDEPEND="
	nss? ( dev-libs/nss
		curl? ( || ( net-misc/curl[ssl,nss,-gnutls] net-misc/curl[-ssl] ) )
	)

	bindist? ( dev-libs/nss
		curl? ( || ( net-misc/curl[ssl,nss,-gnutls] net-misc/curl[-ssl] ) )
	)

	!bindist? (
		!nss? ( dev-libs/openssl
			curl? ( || ( net-misc/curl[ssl,-nss,-gnutls] net-misc/curl[-ssl] ) )
		)
	)

	net-misc/curl
"

RDEPEND="${CDEPEND}"

DEPEND="${CDEPEND}
	doc? (
		app-doc/doxygen
		media-gfx/graphviz
		media-fonts/freefont-ttf
	)
	dev-util/pkgconfig"

src_configure() {
	local myconf=

	if use nss || use bindist; then
		myconf="${myconf} --enable-nss"
	else
		myconf="${myconf} --disable-nss"
	fi

	econf \
		--disable-dependency-tracking \
		--enable-fast-install \
		--disable-static \
		$(use_enable !curl curl) \
		$(use_enable curl libcurl) \
		${myconf}
}

src_compile() {
	emake || die "emake failed"

	if use doc ; then
		# make sure fonts are found
		export DOTFONTPATH=/usr/share/fonts/freefont-ttf
		emake dox || die "emake dox failed"
	fi
}

src_test() {
	# explicitly allow parallel test build
	emake check || die "emake check failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "install failed"

	find "${D}" -name '*.la' -delete || die

	dodoc AUTHORS ChangeLog LICENSE.OpenSSL NEWS README || die "dodoc failed"

	if use doc; then
		dohtml -r doc/html/* || die "dohtml failed"
	fi
}






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/liboauth: ChangeLog liboauth-0.9.4.ebuild
@ 2011-09-24 15:10 Fabian Groffen (grobian)
  0 siblings, 0 replies; 2+ messages in thread
From: Fabian Groffen (grobian) @ 2011-09-24 15:10 UTC (permalink / raw
  To: gentoo-commits

grobian     11/09/24 15:10:42

  Modified:             ChangeLog liboauth-0.9.4.ebuild
  Log:
  Fixed for Prefix (EAPI=3) and marked ~x64-macos
  
  (Portage version: 2.2.01.19295-prefix/cvs/Darwin i386)

Revision  Changes    Path
1.9                  net-libs/liboauth/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/liboauth/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/liboauth/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/liboauth/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/liboauth/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	18 Mar 2011 00:37:33 -0000	1.8
+++ ChangeLog	24 Sep 2011 15:10:42 -0000	1.9
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/liboauth
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/liboauth/ChangeLog,v 1.8 2011/03/18 00:37:33 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/liboauth/ChangeLog,v 1.9 2011/09/24 15:10:42 grobian Exp $
+
+  24 Sep 2011; Fabian Groffen <grobian@gentoo.org> liboauth-0.9.4.ebuild:
+  Fixed for Prefix (EAPI=3) and marked ~x64-macos
 
 *liboauth-0.9.4 (18 Mar 2011)
 



1.2                  net-libs/liboauth/liboauth-0.9.4.ebuild

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

Index: liboauth-0.9.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/liboauth/liboauth-0.9.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- liboauth-0.9.4.ebuild	18 Mar 2011 00:37:33 -0000	1.1
+++ liboauth-0.9.4.ebuild	24 Sep 2011 15:10:42 -0000	1.2
@@ -1,8 +1,8 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/liboauth/liboauth-0.9.4.ebuild,v 1.1 2011/03/18 00:37:33 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/liboauth/liboauth-0.9.4.ebuild,v 1.2 2011/09/24 15:10:42 grobian Exp $
 
-EAPI=2
+EAPI=3
 
 DESCRIPTION="C library implementing the OAuth secure authentication protocol"
 HOMEPAGE="http://liboauth.sourceforge.net/"
@@ -11,7 +11,7 @@
 
 LICENSE="|| ( GPL-2 MIT )"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~x86 ~x64-macos"
 IUSE="curl doc bindist +nss"
 
 CDEPEND="
@@ -65,7 +65,7 @@
 
 	if use doc ; then
 		# make sure fonts are found
-		export DOTFONTPATH=/usr/share/fonts/freefont-ttf
+		export DOTFONTPATH="${EPREFIX}"/usr/share/fonts/freefont-ttf
 		emake dox || die "emake dox failed"
 	fi
 }






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-09-24 15:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-18  0:37 [gentoo-commits] gentoo-x86 commit in net-libs/liboauth: ChangeLog liboauth-0.9.4.ebuild Diego Petteno (flameeyes)
  -- strict thread matches above, loose matches on Subject: below --
2011-09-24 15:10 Fabian Groffen (grobian)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox