diff options
author | Tom William Payne <twp@gentoo.org> | 2006-11-09 21:32:30 +0000 |
---|---|---|
committer | Tom William Payne <twp@gentoo.org> | 2006-11-09 21:32:30 +0000 |
commit | e5fec731addc9d68b217ea3476688280e0e3216f (patch) | |
tree | a6b5c4ee24184a7642c07981697a64febd69b7d1 /media-gfx/sam2p | |
parent | stable x86, security bug #154434 (diff) | |
download | gentoo-2-e5fec731addc9d68b217ea3476688280e0e3216f.tar.gz gentoo-2-e5fec731addc9d68b217ea3476688280e0e3216f.tar.bz2 gentoo-2-e5fec731addc9d68b217ea3476688280e0e3216f.zip |
Version bump. Should fix compile issues with >=sys-devel/gcc-3.4. BUug # 111258. Bug # 154586.
(Portage version: 2.1.2_rc1-r5)
Diffstat (limited to 'media-gfx/sam2p')
-rw-r--r-- | media-gfx/sam2p/ChangeLog | 8 | ||||
-rw-r--r-- | media-gfx/sam2p/files/digest-sam2p-0.44 | 2 | ||||
-rw-r--r-- | media-gfx/sam2p/files/digest-sam2p-0.45 | 3 | ||||
-rw-r--r-- | media-gfx/sam2p/sam2p-0.45.ebuild | 29 |
4 files changed, 41 insertions, 1 deletions
diff --git a/media-gfx/sam2p/ChangeLog b/media-gfx/sam2p/ChangeLog index 2d9aceadb574..be22fd108957 100644 --- a/media-gfx/sam2p/ChangeLog +++ b/media-gfx/sam2p/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-gfx/sam2p # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/sam2p/ChangeLog,v 1.12 2006/06/06 01:33:22 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/sam2p/ChangeLog,v 1.13 2006/11/09 21:32:30 twp Exp $ + +*sam2p-0.45 (09 Nov 2006) + + 09 Nov 2006; <twp@gentoo.org> sam2p-0.44.ebuild, +sam2p-0.45.ebuild: + Version bump. Should fix compile issues with >=sys-devel/gcc-3.4. BUug # + 111258. Bug # 154586. 06 Jun 2006; Jeremy Huddleston <eradicator@gentoo.org> sam2p-0.44.ebuild: Removed gcc-config from DEPEND as it's not neccessary. diff --git a/media-gfx/sam2p/files/digest-sam2p-0.44 b/media-gfx/sam2p/files/digest-sam2p-0.44 index d509717c3814..c3ec541fdd34 100644 --- a/media-gfx/sam2p/files/digest-sam2p-0.44 +++ b/media-gfx/sam2p/files/digest-sam2p-0.44 @@ -1 +1,3 @@ MD5 d3e987621bff9035f7ea044f6a4232ea sam2p-0.44.tar.bz2 463314 +RMD160 8d8b69ec079d4e9d5e340e5ab21d696e4a2848da sam2p-0.44.tar.bz2 463314 +SHA256 0ca55917d9d80684c8d557b0e066707192bbf1dd9c68716652a5720cc032684a sam2p-0.44.tar.bz2 463314 diff --git a/media-gfx/sam2p/files/digest-sam2p-0.45 b/media-gfx/sam2p/files/digest-sam2p-0.45 new file mode 100644 index 000000000000..63704f374db9 --- /dev/null +++ b/media-gfx/sam2p/files/digest-sam2p-0.45 @@ -0,0 +1,3 @@ +MD5 722df45981ce085d8f3ba95b43a85d56 sam2p-0.45.tar.bz2 434746 +RMD160 122e81208f241a7e9d33bddd7df17780b306b305 sam2p-0.45.tar.bz2 434746 +SHA256 ed109acb74445e926f39757d7f133b72903d92017da46f8ccb4f26624eb797ff sam2p-0.45.tar.bz2 434746 diff --git a/media-gfx/sam2p/sam2p-0.45.ebuild b/media-gfx/sam2p/sam2p-0.45.ebuild new file mode 100644 index 000000000000..45796e83ea39 --- /dev/null +++ b/media-gfx/sam2p/sam2p-0.45.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/sam2p/sam2p-0.45.ebuild,v 1.1 2006/11/09 21:32:30 twp Exp $ + +inherit toolchain-funcs + +DESCRIPTION="Utility to convert raster images to EPS, PDF and many others" +HOMEPAGE="http://www.inf.bme.hu/~pts/sam2p/" +# The author refuses to distribute +SRC_URI="mirror://gentoo/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~ppc ~x86" +IUSE="gif" +DEPEND="dev-lang/perl" +RDEPEND="virtual/libc" + +src_compile() { + local myconf="--enable-lzw `use_enable gif`" + # Makedep borks if distcc is used, so disable it for econf by + # overriding the path to g++ + CXX="$(tc-getCXX)" econf ${myconf} || die + make || die +} + +src_install() { + einstall + dodoc README +} |