diff options
Diffstat (limited to 'media-gfx/jhead/jhead-1.9.ebuild')
-rw-r--r-- | media-gfx/jhead/jhead-1.9.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/media-gfx/jhead/jhead-1.9.ebuild b/media-gfx/jhead/jhead-1.9.ebuild new file mode 100644 index 000000000000..bf1b806ceb05 --- /dev/null +++ b/media-gfx/jhead/jhead-1.9.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/jhead/jhead-1.9.ebuild,v 1.1 2003/02/19 20:29:56 liquidx Exp $ + +IUSE="" +S=${WORKDIR}/${P} +DESCRIPTION="a program for making thumbnails for websites." +SRC_URI="http://www.sentex.net/~mwandel/jhead/${P}.tar.gz" +HOMEPAGE="http://www.sentex.net/~mwandel/jhead/" + +SLOT="0" +LICENSE="public-domain" +KEYWORDS="~x86" + +DEPEND="virtual/glibc" + +src_compile() { + + cd ${S} + emake || die +} + +src_install () { + + dobin jhead + dodoc readme.txt changes.txt + dohtml usage.html +} |