diff options
author | Tom William Payne <twp@gentoo.org> | 2003-04-10 15:27:53 +0000 |
---|---|---|
committer | Tom William Payne <twp@gentoo.org> | 2003-04-10 15:27:53 +0000 |
commit | 3543423f49a69b9ca8955120b5894b94269d7177 (patch) | |
tree | f9e7341fea1696f1520a4f8a603d5bb59ea1b952 /media-gfx/sam2p | |
parent | fixed patch to apply only once, bug #19079 (diff) | |
download | gentoo-2-3543423f49a69b9ca8955120b5894b94269d7177.tar.gz gentoo-2-3543423f49a69b9ca8955120b5894b94269d7177.tar.bz2 gentoo-2-3543423f49a69b9ca8955120b5894b94269d7177.zip |
Initial commit.
Diffstat (limited to 'media-gfx/sam2p')
-rw-r--r-- | media-gfx/sam2p/ChangeLog | 9 | ||||
-rw-r--r-- | media-gfx/sam2p/files/digest-sam2p-0.41 | 2 | ||||
-rw-r--r-- | media-gfx/sam2p/sam2p-0.41.ebuild | 24 |
3 files changed, 35 insertions, 0 deletions
diff --git a/media-gfx/sam2p/ChangeLog b/media-gfx/sam2p/ChangeLog new file mode 100644 index 000000000000..f73083747346 --- /dev/null +++ b/media-gfx/sam2p/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for media-gfx/sam2p +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/sam2p/ChangeLog,v 1.1 2003/04/10 15:27:36 twp Exp $ + +*sam2p-0.41 (10 Apr 2003) + + 10 Apr 2003; Tom Payne <twp@gentoo.org> sam2p-0.41.ebuild : + + Initial release (bug # 15939). diff --git a/media-gfx/sam2p/files/digest-sam2p-0.41 b/media-gfx/sam2p/files/digest-sam2p-0.41 new file mode 100644 index 000000000000..c29735b65c40 --- /dev/null +++ b/media-gfx/sam2p/files/digest-sam2p-0.41 @@ -0,0 +1,2 @@ +MD5 40e12788f8cf692e225632c87921c86c /sam2p-0.41.ebuild 631 +MD5 ff3eefaca026d747280bbc0b6eebc915 sam2p-latest.tar.gz 487991 diff --git a/media-gfx/sam2p/sam2p-0.41.ebuild b/media-gfx/sam2p/sam2p-0.41.ebuild new file mode 100644 index 000000000000..3a0380476c43 --- /dev/null +++ b/media-gfx/sam2p/sam2p-0.41.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/sam2p/sam2p-0.41.ebuild,v 1.1 2003/04/10 15:27:36 twp Exp $ + +DESCRIPTION="A utility to convert raster images to PDF and 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="~x86" +IUSE="gif" +DEPEND="virtual/glibc" + +src_compile() { + local myconf="--enable-lzw" + use gif && myconf="${myconf} --enable-gif" + econf ${myconf} || die + emake || die +} + +src_install() { + einstall + dodoc README +} |