ChangeLog

# ChangeLog for app-doc/psmark
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/psmark/ChangeLog,v 1.1 2006/07/18 04:40:02 nerdboy Exp $

*psmark-2.1 (18 Jul 2006)

18 Jul 2006; Steve Arnold
+files/psmark-2.1-string.patch, +metadata.xml, +psmark-2.1.ebuild:
Initial version of psmark utility for adding a postscript watermark
to an existing document. Not yet 64bit clean (patches welcome),
used with Hylafax.

Manifest

AUX psmark-2.1-string.patch 741 RMD160 31bef17fb6730235683895ba971786ad4a2b5f37 SHA1 436f423c1cb54efb3fac63ee7e5a9fa8f3030c09 SHA256 d52b195ee4a565cbe04cdd730b3b6d8ec2838f42e6c5b913852ae1d053118446
DIST psmark-v2.1.tar.gz 16296 RMD160 0e7365af60c47c2cadecff5b5f25bf073169a048 SHA1 827ab631e27b57658cbe4f8c6b5aa6ee0dff0651 SHA256 de7df2cb5fbad408406c96a3eccd14f219424a2d42394e64b4c73027f26dd8b4
EBUILD psmark-2.1.ebuild 819 RMD160 8862a249dfdb404241c1c40b7b4271b783bdcfc6 SHA1 17e891cf08c79ca28ded812f0b850fecdf8122ee SHA256 eff537e3033ef68c8941f97afeaad64b6527d473a0a6fbebb6d4ec8f51cebfc0
MISC ChangeLog 506 RMD160 2d4a3e470764c7cf08b15ef19eba10c58348ae3a SHA1 50eb12b899a9426df224d86844855b03f3884432 SHA256 855b09718277a5d3bd62717ad515cea3abdf6749b06a763f74a9d1bb4881d003
MISC metadata.xml 519 RMD160 b720e95a7929502509b36eafb77adcd8491421c2 SHA1 ec879f55eb80c0d7a9d30d0477e44f64977b4a73 SHA256 6e8479c5f0f10243d34fb465a40355142186ed5e4549550b040684f71ab5cd3e

files

metadata.xml




no-herd

nerdboy@gentoo.org
Steve Arnold
Primary Maintainer

Command-line Postscript watermark tool; simple, but useful
for things like adding a watermark to outgoing or incoming faxes (eg, use
with the sendfax command from net-misc/hylafax).

psmark-2.1.ebuild

# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/psmark/psmark-2.1.ebuild,v 1.1 2006/07/18 04:40:02 nerdboy Exp $

inherit eutils toolchain-funcs

MY_PN=${PN}-v
MY_P=${MY_PN}${PV}
S=${WORKDIR}/${PN}

IUSE=""
DESCRIPTION="Prints watermark-like text on any PostScript document."
HOMEPAGE="http://www.antitachyon.com/Content/10_Produkte/50_Utilities/psmark/"
SRC_URI="http://www.antitachyon.com/download/${MY_P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"

DEPEND="virtual/libc"
RDEPEND="${DEPEND}"

src_compile() {
cd ${S}
epatch ${FILESDIR}/${P}-string.patch || die "epatch failed"
make CFLAGS="${CFLAGS}" || die "make failed"
}

src_install() {
dobin psmark
doman psmark.1
dodoc README CHANGELOG COPYING
}