diff options
author | Akinori Hattori <hattya@gentoo.org> | 2005-01-06 16:15:38 +0000 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2005-01-06 16:15:38 +0000 |
commit | dd3b0426ea6d8ccee9e9892c18a25cc9e94ec75a (patch) | |
tree | 401052325150cf24fbf126d260754a1441cb8af9 /media-libs/compface | |
parent | version 0.03 (Manifest recommit) (diff) | |
download | gentoo-2-dd3b0426ea6d8ccee9e9892c18a25cc9e94ec75a.tar.gz gentoo-2-dd3b0426ea6d8ccee9e9892c18a25cc9e94ec75a.tar.bz2 gentoo-2-dd3b0426ea6d8ccee9e9892c18a25cc9e94ec75a.zip |
new upstream release. fixes bug #76063.
Diffstat (limited to 'media-libs/compface')
-rw-r--r-- | media-libs/compface/compface-1.5.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/media-libs/compface/compface-1.5.ebuild b/media-libs/compface/compface-1.5.ebuild new file mode 100644 index 000000000000..2565c3a2e6af --- /dev/null +++ b/media-libs/compface/compface-1.5.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/compface/compface-1.5.ebuild,v 1.1 2005/01/06 16:15:38 hattya Exp $ + +IUSE="" + +inherit eutils + +DESCRIPTION="Utilities and library to convert to/from X-Face format" +HOMEPAGE="http://www.xemacs.org/Download/optLibs.html" +SRC_URI="http://ftp.xemacs.org/pub/xemacs/aux/${P}.tar.gz" + +RESTRICT="nomirror" +LICENSE="MIT" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~ia64 ~ppc64 ~ppc-macos" +SLOT="0" + +DEPEND="virtual/libc" + +src_unpack() { + + unpack ${A} + cd ${S} + + epatch ${FILESDIR}/${P}-destdir.diff + WANT_AUTOCONF=2.5 autoconf + +} + +src_install() { + + dodir /usr/share/man/man{1,3} /usr/{bin,include,$(get_libdir)} + make DESTDIR="${D}" install || die + + newbin xbm2xface{.pl,} + dodoc README ChangeLog + +} + +# $Id: compface-1.5.ebuild,v 1.1 2005/01/06 16:15:38 hattya Exp $ |