diff options
author | 2008-03-23 15:43:22 +0000 | |
---|---|---|
committer | 2008-03-23 15:43:22 +0000 | |
commit | 208368e94bea51ec1b58fb3dc75fcaa539816c42 (patch) | |
tree | 0e250b374b7862847142c9dd80f7afd02ae779b7 | |
parent | Add lzma USE flag for gnome-extra/yelp - Enable support for lzma compressed i... (diff) | |
download | gentoo-2-208368e94bea51ec1b58fb3dc75fcaa539816c42.tar.gz gentoo-2-208368e94bea51ec1b58fb3dc75fcaa539816c42.tar.bz2 gentoo-2-208368e94bea51ec1b58fb3dc75fcaa539816c42.zip |
New version for GNOME-2.22. Recognizes lzma packed man and info pages, follows new freedesktop specification for categorization which causes it to not work well with yelp-2.20 - use a matching yelp-2.22
(Portage version: 2.1.4.4)
-rw-r--r-- | app-text/rarian/ChangeLog | 11 | ||||
-rw-r--r-- | app-text/rarian/rarian-0.8.0.ebuild | 34 |
2 files changed, 43 insertions, 2 deletions
diff --git a/app-text/rarian/ChangeLog b/app-text/rarian/ChangeLog index 83e58f5511c4..912b19a1b8f2 100644 --- a/app-text/rarian/ChangeLog +++ b/app-text/rarian/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-text/rarian -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/rarian/ChangeLog,v 1.18 2007/11/29 05:07:42 jer Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/rarian/ChangeLog,v 1.19 2008/03/23 15:43:22 leio Exp $ + +*rarian-0.8.0 (23 Mar 2008) + + 23 Mar 2008; Mart Raudsepp <leio@gentoo.org> +rarian-0.8.0.ebuild: + New version for GNOME-2.22. Recognizes lzma packed man and info pages, + follows new freedesktop specification for categorization which causes it to + not work well with yelp-2.20 - use a matching yelp-2.22 29 Nov 2007; Jeroen Roovers <jer@gentoo.org> rarian-0.6.0-r1.ebuild: Stable for HPPA (bug #199740). diff --git a/app-text/rarian/rarian-0.8.0.ebuild b/app-text/rarian/rarian-0.8.0.ebuild new file mode 100644 index 000000000000..e9405e7d55db --- /dev/null +++ b/app-text/rarian/rarian-0.8.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/rarian/rarian-0.8.0.ebuild,v 1.1 2008/03/23 15:43:22 leio Exp $ + +inherit eutils gnome2 + +DESCRIPTION="A documentation metadata library" +HOMEPAGE="http://www.freedesktop.org" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND="dev-libs/libxslt" +DEPEND="${RDEPEND} + !<app-text/scrollkeeper-9999" + +DOCS="ChangeLog NEWS README" + +GCONF="" + +src_unpack() { + # You cannot run src_unpack from gnome2; it will break the install by + # calling gnome2_omf_fix + unpack ${A} + cd "${S}" + + # Only GNU getopt supports long options + # Scrollkeeper didn't support them, so we'll punt them for now + epatch "${FILESDIR}/${PN}-0.6.0-posix-getopt.patch" + + elibtoolize ${ELTCONF} +} |