diff options
author | 2013-03-03 14:38:03 +0000 | |
---|---|---|
committer | 2013-03-03 14:38:03 +0000 | |
commit | 3c06ef7ae1d1e38d7c56f1cd32ed31641a14de39 (patch) | |
tree | b24daffd45d2ed0b499c1a483df845cb6a392950 /media-libs/urt/urt-3.1b-r1.ebuild | |
parent | eapi5 and define subslot (diff) | |
download | gentoo-2-3c06ef7ae1d1e38d7c56f1cd32ed31641a14de39.tar.gz gentoo-2-3c06ef7ae1d1e38d7c56f1cd32ed31641a14de39.tar.bz2 gentoo-2-3c06ef7ae1d1e38d7c56f1cd32ed31641a14de39.zip |
Don't install non-free files for rletoabA62, don't install unused man pages, fix LICENSE, bug 455970.
(Portage version: 2.1.11.53/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
Diffstat (limited to 'media-libs/urt/urt-3.1b-r1.ebuild')
-rw-r--r-- | media-libs/urt/urt-3.1b-r1.ebuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/media-libs/urt/urt-3.1b-r1.ebuild b/media-libs/urt/urt-3.1b-r1.ebuild index 0a5b26ebbbd9..e0272aa06760 100644 --- a/media-libs/urt/urt-3.1b-r1.ebuild +++ b/media-libs/urt/urt-3.1b-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/urt/urt-3.1b-r1.ebuild,v 1.31 2012/06/16 16:32:52 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/urt/urt-3.1b-r1.ebuild,v 1.32 2013/03/03 14:38:03 ulm Exp $ inherit eutils toolchain-funcs @@ -8,7 +8,7 @@ DESCRIPTION="the Utah Raster Toolkit is a library for dealing with raster images HOMEPAGE="http://www.cs.utah.edu/gdc/projects/urt/" SRC_URI="ftp://ftp.iastate.edu/pub/utah-raster/${P}.tar.Z" -LICENSE="as-is" +LICENSE="URT gif? ( free-noncomm )" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd" IUSE="gif postscript tiff X" @@ -62,12 +62,13 @@ src_compile() { } src_install() { + mkdir -p man-dest/man{1,3,5} # this just installs it into some local dirs make install || die dobin bin/* || die "dobin" dolib.a lib/librle.a || die "dolib.a" insinto /usr/include doins include/rle*.h || die "doins include" - doman man/man?/*.[135] + doman man-dest/man?/*.[135] dodoc *-changes CHANGES* README blurb } |