diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-07-21 14:52:44 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-07-21 14:52:44 +0000 |
commit | a909518e31df74d0a31b2dea16f5db8e7d6bd10a (patch) | |
tree | 9d4b128d6f0cbee05f31d2fdfb419c951d9f4965 /x11-misc | |
parent | fix quoting, clean up (diff) | |
download | historical-a909518e31df74d0a31b2dea16f5db8e7d6bd10a.tar.gz historical-a909518e31df74d0a31b2dea16f5db8e7d6bd10a.tar.bz2 historical-a909518e31df74d0a31b2dea16f5db8e7d6bd10a.zip |
clean up, repoman issues etc
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/tkhylafax/Manifest | 2 | ||||
-rw-r--r-- | x11-misc/tkhylafax/tkhylafax-3.2.ebuild | 22 |
2 files changed, 9 insertions, 15 deletions
diff --git a/x11-misc/tkhylafax/Manifest b/x11-misc/tkhylafax/Manifest index cd8aa4998de3..203ebb252f88 100644 --- a/x11-misc/tkhylafax/Manifest +++ b/x11-misc/tkhylafax/Manifest @@ -1,5 +1,5 @@ AUX tkhylafax-3.2-gentoo.patch 1832 RMD160 12d3360d1e941d290e4f983bc1ec371a38e20959 SHA1 f7963986fd6adbd48b03c3a9a82af6adf720d369 SHA256 4d6eb1a498fa78baf733bb3cc0ff822e67385739da5c75c8bb5c11e547b6549d DIST tkhylafax-3.2.tar.gz 28007 RMD160 7280e73a115a42c61e02ed1d8b82450126683ae6 SHA1 ec12b825ec270a7172b5cc7138859d96cbc4ebdf SHA256 cf85f90a64150644ae487c867c78cc1e5582ab05a6f64c286a9461c1bb4d5316 -EBUILD tkhylafax-3.2.ebuild 1664 RMD160 a938757d63f70c0ba28c32ab05a2d6639df99416 SHA1 0cb1c2ef24e622bebd0f996b666eaa9ea232a3c7 SHA256 5aaba46a5c355a64bdacc9f06d7289be649de046f9afd54ed45227b682c3045a +EBUILD tkhylafax-3.2.ebuild 1560 RMD160 e6cfa560af46bed351f8c400ecfac36942dea97e SHA1 80e45c23fd484fe2c46327f4d5b289a7fc96f8e9 SHA256 b8abb3134ccfc652797678446963b4cdffa182a4d8239b77f2ce541a4253960f MISC ChangeLog 776 RMD160 6e73e440a42d42353f9d581994a762c812caf2d7 SHA1 01efc989ff69a7f4872aff736ca9123fdf884d99 SHA256 ce23821de8a055ad23a3bc52ebe1a730391b335d8deacea4f7b1742dcbfb5d8e MISC metadata.xml 524 RMD160 90fabdc66b0bda50df15892e1d93005b74b710a0 SHA1 3fd875068afc5b424252c283e69dc2c231e92c0b SHA256 878bf77e6f75c32b60d071202613a3c116fe71c1e862b4b00ed11595c4678d3c diff --git a/x11-misc/tkhylafax/tkhylafax-3.2.ebuild b/x11-misc/tkhylafax/tkhylafax-3.2.ebuild index 4d5b94f13f81..27a42a9eb61c 100644 --- a/x11-misc/tkhylafax/tkhylafax-3.2.ebuild +++ b/x11-misc/tkhylafax/tkhylafax-3.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/tkhylafax/tkhylafax-3.2.ebuild,v 1.7 2004/06/24 22:34:02 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/tkhylafax/tkhylafax-3.2.ebuild,v 1.8 2010/07/21 14:52:44 ssuominen Exp $ # This is a new ebuild for the tkHylafax client. This code has barely been # touched in several years, but it works well enough, and is the only @@ -8,45 +8,39 @@ inherit eutils -IUSE="" - DESCRIPTION="Tk-based client for HylaFAX(tm) with rolodex and batch faxing support." HOMEPAGE="http://www.hylafax.org" SRC_URI="ftp://ftp.hylafax.org/contrib/tkhylafax/${P}.tar.gz" -SLOT="0" LICENSE="freedist" -KEYWORDS="x86 ~ppc" +SLOT="0" +KEYWORDS="~ppc x86" +IUSE="" DEPEND="dev-lang/tk net-misc/hylafax" - RDEPEND="${DEPEND} app-text/gv" src_unpack() { unpack ${A} - cd ${WORKDIR}/${P} - epatch ${FILESDIR}/${PF}-gentoo.patch + cd "${S}" + epatch "${FILESDIR}"/${PF}-gentoo.patch } src_compile() { - # no 'econf' here because it only uses a static Makefile :( make PREFIX=/usr build || die } src_install() { - dodir /usr/bin /usr/lib/tkhylafax-3.2 /usr/share/man/man1 - # no 'emake' for the same reason. - make PREFIX=${D}/usr install.lib install.man install.tkhylafax || die + make PREFIX="${D}/usr" install.lib install.man install.tkhylafax || die dodoc INSTALL CHANGES VERSION tkhylafax-3.2.README } pkg_postinst() { - cd /usr/lib/tkhylafax-3.2 echo 'auto_mkindex /usr/lib/tkhylafax-3.2 *.tcl *.t' | /usr/bin/tclsh |