diff options
author | 2007-01-08 18:53:28 +0000 | |
---|---|---|
committer | 2007-01-08 18:53:28 +0000 | |
commit | fecde943e2fb2821fb4cab9b8c73c7bb63ffd63f (patch) | |
tree | 7bbc9533f42d23a65cd64fb7bc062883e0e264de /media-libs | |
parent | Flac 1.1.3 patch from Josh Coalson, small fixes (diff) | |
download | gentoo-2-fecde943e2fb2821fb4cab9b8c73c7bb63ffd63f.tar.gz gentoo-2-fecde943e2fb2821fb4cab9b8c73c7bb63ffd63f.tar.bz2 gentoo-2-fecde943e2fb2821fb4cab9b8c73c7bb63ffd63f.zip |
Nicer ebuild, with hints from Bug #58213
(Portage version: 2.1.1-r2)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/atlas-c++/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/atlas-c++/atlas-c++-0.6.0.ebuild | 11 |
2 files changed, 10 insertions, 6 deletions
diff --git a/media-libs/atlas-c++/ChangeLog b/media-libs/atlas-c++/ChangeLog index a9b51b2add42..7cbeae3f9e2c 100644 --- a/media-libs/atlas-c++/ChangeLog +++ b/media-libs/atlas-c++/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/atlas-c++ # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/atlas-c++/ChangeLog,v 1.15 2007/01/08 18:38:31 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/atlas-c++/ChangeLog,v 1.16 2007/01/08 18:53:28 tupone Exp $ + + 08 Jan 2007; <tupone@gentoo.org> atlas-c++-0.6.0.ebuild: + Nicer ebuild, with hints from Bug #58213 by Boris Smus *atlas-c++-0.6.0 (08 Jan 2007) diff --git a/media-libs/atlas-c++/atlas-c++-0.6.0.ebuild b/media-libs/atlas-c++/atlas-c++-0.6.0.ebuild index 80f6d673f3d6..a81eb261a58c 100644 --- a/media-libs/atlas-c++/atlas-c++-0.6.0.ebuild +++ b/media-libs/atlas-c++/atlas-c++-0.6.0.ebuild @@ -1,14 +1,14 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/atlas-c++/atlas-c++-0.6.0.ebuild,v 1.1 2007/01/08 18:38:31 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/atlas-c++/atlas-c++-0.6.0.ebuild,v 1.2 2007/01/08 18:53:28 tupone Exp $ inherit eutils MY_PN="Atlas-C++" MY_P=${MY_PN}-${PV} S=${WORKDIR}/${MY_P} -DESCRIPTION="Atlas protocol standard implementation in C++. Atlas protocol is used in role playing games at worldforge." -HOMEPAGE="http://www.worldforge.net" +DESCRIPTION="Atlas protocol, used in role playing games at worldforge." +HOMEPAGE="http://www.worldforge.net/dev/eng/libraries/atlas_cpp" SRC_URI="mirror://sourceforge/worldforge/${MY_P}.tar.bz2" SLOT="0" @@ -32,7 +32,8 @@ src_compile() { } src_install() { - make DESTDIR=${D} install || die - dohtml -r doc/html/* + make DESTDIR=${D} install || die "install failed" + use doc && dohtml -r doc/html/* + use doc && doman doc/man/* dodoc AUTHORS ChangeLog HACKING NEWS README ROADMAP THANKS TODO } |