diff options
author | Alexis Ballier <aballier@gentoo.org> | 2010-06-11 20:21:57 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2010-06-11 20:21:57 +0000 |
commit | 4f8ba8e69ae39357ff5691906846a8ccdb0ece63 (patch) | |
tree | aa6a0869394e2f739778793a21aadbea0ef93594 /media-gfx/sam2p | |
parent | Added hack to avoid installation of files in cp949 encoding, bug 322041, than... (diff) | |
download | gentoo-2-4f8ba8e69ae39357ff5691906846a8ccdb0ece63.tar.gz gentoo-2-4f8ba8e69ae39357ff5691906846a8ccdb0ece63.tar.bz2 gentoo-2-4f8ba8e69ae39357ff5691906846a8ccdb0ece63.zip |
version bump, bug #317271
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/sam2p')
-rw-r--r-- | media-gfx/sam2p/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/sam2p/sam2p-0.47.ebuild | 42 |
2 files changed, 48 insertions, 1 deletions
diff --git a/media-gfx/sam2p/ChangeLog b/media-gfx/sam2p/ChangeLog index f91f0d5decf4..6d269dc970f7 100644 --- a/media-gfx/sam2p/ChangeLog +++ b/media-gfx/sam2p/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/sam2p # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/sam2p/ChangeLog,v 1.38 2010/06/11 20:13:04 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/sam2p/ChangeLog,v 1.39 2010/06/11 20:21:57 aballier Exp $ + +*sam2p-0.47 (11 Jun 2010) + + 11 Jun 2010; Alexis Ballier <aballier@gentoo.org> +sam2p-0.47.ebuild: + version bump, bug #317271 11 Jun 2010; Alexis Ballier <aballier@gentoo.org> sam2p-0.45-r1.ebuild, sam2p-0.46.ebuild: diff --git a/media-gfx/sam2p/sam2p-0.47.ebuild b/media-gfx/sam2p/sam2p-0.47.ebuild new file mode 100644 index 000000000000..7bbfc8a60722 --- /dev/null +++ b/media-gfx/sam2p/sam2p-0.47.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/sam2p/sam2p-0.47.ebuild,v 1.1 2010/06/11 20:21:57 aballier Exp $ + +inherit toolchain-funcs eutils autotools + +DESCRIPTION="Utility to convert raster images to EPS, PDF and many others" +HOMEPAGE="http://code.google.com/p/sam2p/" +SRC_URI="http://sam2p.googlecode.com/files/${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="" + +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 +} |