diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-07-20 06:55:55 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-07-20 06:55:55 +0000 |
commit | a470b7e6335513e24865357dea569e3cca352662 (patch) | |
tree | cd22d3576801e3b79cf20e760f7ded190dc4d90d /app-text/nfoview | |
parent | old (diff) | |
download | gentoo-2-a470b7e6335513e24865357dea569e3cca352662.tar.gz gentoo-2-a470b7e6335513e24865357dea569e3cca352662.tar.bz2 gentoo-2-a470b7e6335513e24865357dea569e3cca352662.zip |
Version bump #277542 by Jim Faulkner, unify the 9999 version, and convert to git.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'app-text/nfoview')
-rw-r--r-- | app-text/nfoview/ChangeLog | 11 | ||||
-rw-r--r-- | app-text/nfoview/nfoview-1.5.ebuild | 23 | ||||
-rw-r--r-- | app-text/nfoview/nfoview-9999.ebuild | 17 |
3 files changed, 43 insertions, 8 deletions
diff --git a/app-text/nfoview/ChangeLog b/app-text/nfoview/ChangeLog index afcb28f584d5..0bd71f815d1b 100644 --- a/app-text/nfoview/ChangeLog +++ b/app-text/nfoview/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-text/nfoview -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/nfoview/ChangeLog,v 1.4 2008/06/11 00:20:43 vapier Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/nfoview/ChangeLog,v 1.5 2009/07/20 06:55:55 vapier Exp $ + +*nfoview-1.5 (20 Jul 2009) + + 20 Jul 2009; Mike Frysinger <vapier@gentoo.org> +nfoview-1.5.ebuild, + nfoview-9999.ebuild: + Version bump #277542 by Jim Faulkner, unify the 9999 version, and convert + to git. *nfoview-1.2 (11 Jun 2008) diff --git a/app-text/nfoview/nfoview-1.5.ebuild b/app-text/nfoview/nfoview-1.5.ebuild new file mode 100644 index 000000000000..3047cc481551 --- /dev/null +++ b/app-text/nfoview/nfoview-1.5.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/nfoview/nfoview-1.5.ebuild,v 1.1 2009/07/20 06:55:55 vapier Exp $ + +inherit distutils +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="git://gitorious.org/nfoview/mainline.git" + inherit git + SRC_URI="" + KEYWORDS="" +else + SRC_URI="http://download.gna.org/nfoview/${PV}/${P}.tar.bz2" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="simple viewer for NFO files, which are ASCII art in the CP437 codepage" +HOMEPAGE="http://home.gna.org/nfoview/" + +LICENSE="GPL-3" +SLOT="0" +IUSE="" + +DEPEND="dev-python/pygtk" diff --git a/app-text/nfoview/nfoview-9999.ebuild b/app-text/nfoview/nfoview-9999.ebuild index 7527cdc33f63..d81d8cc59b89 100644 --- a/app-text/nfoview/nfoview-9999.ebuild +++ b/app-text/nfoview/nfoview-9999.ebuild @@ -1,18 +1,23 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/nfoview/nfoview-9999.ebuild,v 1.3 2008/03/30 17:36:06 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/nfoview/nfoview-9999.ebuild,v 1.4 2009/07/20 06:55:55 vapier Exp $ -ESVN_REPO_URI="svn://svn.gna.org/svn/nfoview/trunk" inherit distutils -[[ ${PV} == "9999" ]] && inherit subversion +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="git://gitorious.org/nfoview/mainline.git" + inherit git + SRC_URI="" + KEYWORDS="" +else + SRC_URI="http://download.gna.org/nfoview/${PV}/${P}.tar.bz2" + KEYWORDS="~amd64 ~x86" +fi DESCRIPTION="simple viewer for NFO files, which are ASCII art in the CP437 codepage" HOMEPAGE="http://home.gna.org/nfoview/" -[[ ${PV} != "9999" ]] && SRC_URI="http://download.gna.org/nfoview/${PV}/${P}.tar.bz2" LICENSE="GPL-3" SLOT="0" -KEYWORDS="" IUSE="" DEPEND="dev-python/pygtk" |