diff options
author | 2005-01-27 00:28:45 +0000 | |
---|---|---|
committer | 2005-01-27 00:28:45 +0000 | |
commit | 905db883686ca072f147837439c8112541dfc6c5 (patch) | |
tree | b3a35544287ca43f8178593518f318ddc1e1561d /media-gfx/crwinfo/crwinfo-0.2.ebuild | |
parent | bump. css fix and imagemagick works again (diff) | |
download | gentoo-2-905db883686ca072f147837439c8112541dfc6c5.tar.gz gentoo-2-905db883686ca072f147837439c8112541dfc6c5.tar.bz2 gentoo-2-905db883686ca072f147837439c8112541dfc6c5.zip |
initial commit
(Portage version: 2.0.51-r15)
Diffstat (limited to 'media-gfx/crwinfo/crwinfo-0.2.ebuild')
-rw-r--r-- | media-gfx/crwinfo/crwinfo-0.2.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/media-gfx/crwinfo/crwinfo-0.2.ebuild b/media-gfx/crwinfo/crwinfo-0.2.ebuild new file mode 100644 index 000000000000..f47a9c2a2d66 --- /dev/null +++ b/media-gfx/crwinfo/crwinfo-0.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/crwinfo/crwinfo-0.2.ebuild,v 1.1 2005/01/27 00:28:45 swtaylor Exp $ + +DESCRIPTION="Canon raw image (CRW) information and thumbnail extractor" +HOMEPAGE="http://freshmeat.net/projects/crwinfo/" +SRC_URI="http://neuemuenze.heim1.tu-clausthal.de/~sven/crwinfo/CRWInfo-${PV}.tar.gz" +S="${WORKDIR}/CRWInfo-${PV}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ppc sparc amd64 alpha ia64 hppa ppc64" +IUSE="" + +DEPEND="virtual/libc" + +src_unpack() { + unpack ${A} ; cd ${S} + patch -p0 < ${FILESDIR}/${P}.patch +} + +src_compile() { + emake || die +} + +src_install() { + dobin crwinfo || die + dodoc README spec +} |