diff options
Diffstat (limited to 'media-gfx/sam2p/sam2p-0.46.ebuild')
-rw-r--r-- | media-gfx/sam2p/sam2p-0.46.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/media-gfx/sam2p/sam2p-0.46.ebuild b/media-gfx/sam2p/sam2p-0.46.ebuild new file mode 100644 index 000000000000..633a660efd6d --- /dev/null +++ b/media-gfx/sam2p/sam2p-0.46.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/sam2p/sam2p-0.46.ebuild,v 1.1 2009/06/24 18:48:05 aballier Exp $ + +inherit toolchain-funcs eutils autotools + +DESCRIPTION="Utility to convert raster images to EPS, PDF and many others" +HOMEPAGE="http://www.inf.bme.hu/~pts/sam2p/" +SRC_URI="http://www.inf.bme.hu/~pts/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="examples gif" +DEPEND="dev-lang/perl" +RDEPEND="virtual/libc" + +RESTRICT="test" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PN}-0.45-fbsd.patch" + epatch "${FILESDIR}/${PN}-0.45-nostrip.patch" + epatch "${FILESDIR}/${PN}-0.45-cflags.patch" + eautoreconf +} + +src_compile() { + tc-export CXX + econf --enable-lzw $(use_enable gif) || die "econf failed" + emake || die "make failed" +} + +src_install() { + dobin sam2p || die "Failed to install sam2p" + dodoc README + if use examples; then + insinto /usr/share/doc/${PF}/examples + doins examples/* + fi +} |