diff options
author | Thomas Kahle <tomka@gentoo.org> | 2012-05-16 12:47:23 +0000 |
---|---|---|
committer | Thomas Kahle <tomka@gentoo.org> | 2012-05-16 12:47:23 +0000 |
commit | d4b17333220c178ff2bd213234902dc33632cb42 (patch) | |
tree | 63a4b7c0af777069abcd4cb407f9f2b554fc0359 /sci-mathematics/nauty | |
parent | Add changelog. why it was not generated... (diff) | |
download | gentoo-2-d4b17333220c178ff2bd213234902dc33632cb42.tar.gz gentoo-2-d4b17333220c178ff2bd213234902dc33632cb42.tar.bz2 gentoo-2-d4b17333220c178ff2bd213234902dc33632cb42.zip |
Install pdf manual with USE='doc'. (Bug 415939)
(Portage version: 2.1.10.60/cvs/Linux x86_64)
Diffstat (limited to 'sci-mathematics/nauty')
-rw-r--r-- | sci-mathematics/nauty/ChangeLog | 7 | ||||
-rw-r--r-- | sci-mathematics/nauty/nauty-2.4.2.ebuild | 10 |
2 files changed, 12 insertions, 5 deletions
diff --git a/sci-mathematics/nauty/ChangeLog b/sci-mathematics/nauty/ChangeLog index 14065e118521..770009b7fb2e 100644 --- a/sci-mathematics/nauty/ChangeLog +++ b/sci-mathematics/nauty/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-mathematics/nauty -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/nauty/ChangeLog,v 1.3 2010/12/18 12:10:38 hwoarang Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/nauty/ChangeLog,v 1.4 2012/05/16 12:47:23 tomka Exp $ + + 16 May 2012; Thomas Kahle <tomka@gentoo.org> nauty-2.4.2.ebuild: + Install pdf manual with USE='doc'. (Bug 415939) 18 Dec 2010; Markos Chandras <hwoarang@gentoo.org> nauty-2.4.2.ebuild: Stable on amd64 wrt bug #348636 diff --git a/sci-mathematics/nauty/nauty-2.4.2.ebuild b/sci-mathematics/nauty/nauty-2.4.2.ebuild index 812f9f38e94a..a878b51963e2 100644 --- a/sci-mathematics/nauty/nauty-2.4.2.ebuild +++ b/sci-mathematics/nauty/nauty-2.4.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/nauty/nauty-2.4.2.ebuild,v 1.3 2010/12/18 12:10:38 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/nauty/nauty-2.4.2.ebuild,v 1.4 2012/05/16 12:47:23 tomka Exp $ EAPI="2" @@ -16,7 +16,7 @@ SRC_URI="http://cs.anu.edu.au/~bdm/${PN}/${PN}${MY_PV}.tar.gz" LICENSE="nauty" SLOT="0" KEYWORDS="amd64 x86" -IUSE="" +IUSE="doc" S="${WORKDIR}/${PN}${MY_PV}" @@ -34,4 +34,8 @@ src_install () { gentourng labelg listg multig newedgeg NRswitchg pickg \ planarg shortg showg || die "install failed" dodoc README formats.txt + if use doc; then + einfo "The pdf manual is to be found in /usr/share/doc/${PF}." + dodoc nug.pdf + fi } |