diff options
author | Jonathan Callen <abcd@gentoo.org> | 2010-02-22 20:55:32 +0000 |
---|---|---|
committer | Jonathan Callen <abcd@gentoo.org> | 2010-02-22 20:55:32 +0000 |
commit | cc8ed9cadd764df0e85a8fca4353278239cc3a26 (patch) | |
tree | 276223efb2e2d9cb19dd204033e57d75e660914c /app-text/xmlformat | |
parent | Update emul contents homepage (diff) | |
download | gentoo-2-cc8ed9cadd764df0e85a8fca4353278239cc3a26.tar.gz gentoo-2-cc8ed9cadd764df0e85a8fca4353278239cc3a26.tar.bz2 gentoo-2-cc8ed9cadd764df0e85a8fca4353278239cc3a26.zip |
Transfer prefix keywords, use `doins -r` to install documentation, use relative symlinks in /usr/bin
(Portage version: -svn/cvs/Linux i686)
Diffstat (limited to 'app-text/xmlformat')
-rw-r--r-- | app-text/xmlformat/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/xmlformat/xmlformat-1.04.ebuild | 13 |
2 files changed, 13 insertions, 8 deletions
diff --git a/app-text/xmlformat/ChangeLog b/app-text/xmlformat/ChangeLog index 336713f2bb18..9c096421f6d1 100644 --- a/app-text/xmlformat/ChangeLog +++ b/app-text/xmlformat/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-text/xmlformat -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/xmlformat/ChangeLog,v 1.9 2009/02/15 18:13:30 patrick Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/xmlformat/ChangeLog,v 1.10 2010/02/22 20:55:32 abcd Exp $ + + 22 Feb 2010; Jonathan Callen <abcd@gentoo.org> xmlformat-1.04.ebuild: + Transfer prefix keywords, use `doins -r` to install documentation, use + relative symlinks in /usr/bin *xmlformat-1.04 (15 Feb 2009) diff --git a/app-text/xmlformat/xmlformat-1.04.ebuild b/app-text/xmlformat/xmlformat-1.04.ebuild index a65e53bb77a0..46fba65532e7 100644 --- a/app-text/xmlformat/xmlformat-1.04.ebuild +++ b/app-text/xmlformat/xmlformat-1.04.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/xmlformat/xmlformat-1.04.ebuild,v 1.1 2009/02/15 18:13:30 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/xmlformat/xmlformat-1.04.ebuild,v 1.2 2010/02/22 20:55:32 abcd Exp $ DESCRIPTION="Reformat XML documents to your custom style" SRC_URI="http://www.kitebird.com/software/${PN}/${P}.tar.gz" @@ -8,7 +8,7 @@ HOMEPAGE="http://www.kitebird.com/software/xmlformat/" SLOT="0" LICENSE="xmlformat" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" DEPEND="ruby? ( virtual/ruby ) !ruby? ( dev-lang/perl )" @@ -20,9 +20,9 @@ src_install() { if use ruby then dobin xmlformat.rb - dosym /usr/bin/xmlformat.rb /usr/bin/xmlformat + dosym xmlformat.rb /usr/bin/xmlformat else - dosym /usr/bin/xmlformat.pl /usr/bin/xmlformat + dosym xmlformat.pl /usr/bin/xmlformat fi dodoc BUGS ChangeLog LICENSE README TODO @@ -30,7 +30,8 @@ src_install() { if use doc then # APIs - cp -R docs/* ${D}/usr/share/doc/${PF} + insinto /usr/share/doc/${PF} + doins -r docs/* fi } |