diff options
author | Rick Farina <zerochaos@gentoo.org> | 2013-01-11 01:55:11 +0000 |
---|---|---|
committer | Rick Farina <zerochaos@gentoo.org> | 2013-01-11 01:55:11 +0000 |
commit | 319e2d8c92bc7224e78b20d97c69da0159434e41 (patch) | |
tree | 117fdf12c7589b5f184ef7f420620a1285353500 /app-arch/pixz | |
parent | Version bump. (diff) | |
download | gentoo-2-319e2d8c92bc7224e78b20d97c69da0159434e41.tar.gz gentoo-2-319e2d8c92bc7224e78b20d97c69da0159434e41.tar.bz2 gentoo-2-319e2d8c92bc7224e78b20d97c69da0159434e41.zip |
fix man page installation, thanks to radhermit for reporting
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key DD11F94A)
Diffstat (limited to 'app-arch/pixz')
-rw-r--r-- | app-arch/pixz/ChangeLog | 6 | ||||
-rw-r--r-- | app-arch/pixz/pixz-1.0.2.ebuild | 5 | ||||
-rw-r--r-- | app-arch/pixz/pixz-9999.ebuild | 29 |
3 files changed, 25 insertions, 15 deletions
diff --git a/app-arch/pixz/ChangeLog b/app-arch/pixz/ChangeLog index e84fa4c7f8d5..71e79acb1f37 100644 --- a/app-arch/pixz/ChangeLog +++ b/app-arch/pixz/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-arch/pixz # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/pixz/ChangeLog,v 1.4 2013/01/09 21:30:13 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/pixz/ChangeLog,v 1.5 2013/01/11 01:55:11 zerochaos Exp $ + + 11 Jan 2013; Rick Farina <zerochaos@gentoo.org> pixz-1.0.2.ebuild, + pixz-9999.ebuild: + fix man page installation, thanks to radhermit for reporting *pixz-1.0.2 (09 Jan 2013) diff --git a/app-arch/pixz/pixz-1.0.2.ebuild b/app-arch/pixz/pixz-1.0.2.ebuild index 167aed8ec889..24735bec5356 100644 --- a/app-arch/pixz/pixz-1.0.2.ebuild +++ b/app-arch/pixz/pixz-1.0.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/pixz/pixz-1.0.2.ebuild,v 1.1 2013/01/09 21:30:13 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/pixz/pixz-1.0.2.ebuild,v 1.2 2013/01/11 01:55:11 zerochaos Exp $ EAPI=4 @@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]] ; then inherit git-2 KEYWORDS="" else - SRC_URI="https://github.com/vasi/${PN}/archive/v${PV}.zip -> ${P}.zip" + SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" KEYWORDS="~amd64 ~arm ~x86" fi @@ -38,5 +38,6 @@ src_compile() { src_install() { dobin pixz + doman pixz.1 dodoc README TODO } diff --git a/app-arch/pixz/pixz-9999.ebuild b/app-arch/pixz/pixz-9999.ebuild index 86968953948b..0d13dd474bf5 100644 --- a/app-arch/pixz/pixz-9999.ebuild +++ b/app-arch/pixz/pixz-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/pixz/pixz-9999.ebuild,v 1.4 2013/01/09 21:30:13 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/pixz/pixz-9999.ebuild,v 1.5 2013/01/11 01:55:11 zerochaos Exp $ EAPI=4 @@ -8,16 +8,6 @@ inherit toolchain-funcs flag-o-matic DESCRIPTION="Parallel Indexed XZ compressor" HOMEPAGE="https://github.com/vasi/pixz" - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="https://github.com/vasi/pixz.git" - inherit git-2 - KEYWORDS="" -else - SRC_URI="https://github.com/vasi/${PN}/archive/v${PV}.zip -> ${P}.zip" - KEYWORDS="~amd64 ~arm ~x86" -fi - LICENSE="BSD-2" SLOT="0" IUSE="static" @@ -28,15 +18,30 @@ RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )" DEPEND="${RDEPEND} static? ( ${LIB_DEPEND} )" +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://github.com/vasi/pixz.git" + inherit git-2 + KEYWORDS="" +else + SRC_URI="https://github.com/vasi/${PN}/archive/v${PV}.zip -> ${P}.zip" + KEYWORDS="~amd64 ~arm ~x86" + DEPEND="${DEPEND} app-text/asciidoc" +fi + src_configure() { use static && append-ldflags -static } src_compile() { - emake CC="$(tc-getCC)" OPT="" + if [[ ${PV} == "9999" ]] ; then + emake CC="$(tc-getCC)" OPT="" all pixz.1 + else + emake CC="$(tc-getCC)" OPT="" all + fi } src_install() { dobin pixz + doman pixz.1 dodoc README TODO } |