diff options
author | Steve Arnold <nerdboy@gentoo.org> | 2003-09-21 04:19:57 +0000 |
---|---|---|
committer | Steve Arnold <nerdboy@gentoo.org> | 2003-09-21 04:19:57 +0000 |
commit | 712912ec80a08fb0dce39e3b3937245e93d2c2e8 (patch) | |
tree | 62e2f367e3df163ee9dcdb87907bde820162f511 /net-misc | |
parent | version bump with user-supplied ebuild from bug 28574 (diff) | |
download | historical-712912ec80a08fb0dce39e3b3937245e93d2c2e8.tar.gz historical-712912ec80a08fb0dce39e3b3937245e93d2c2e8.tar.bz2 historical-712912ec80a08fb0dce39e3b3937245e93d2c2e8.zip |
version bump with user-supplied ebuild from bug 28574
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/hylafax/Manifest | 4 | ||||
-rw-r--r-- | net-misc/hylafax/files/digest-hylafax-4.1.7 | 1 | ||||
-rw-r--r-- | net-misc/hylafax/hylafax-4.1.7.ebuild | 78 | ||||
-rw-r--r-- | net-misc/hylafax/metadata.xml | 11 |
4 files changed, 92 insertions, 2 deletions
diff --git a/net-misc/hylafax/Manifest b/net-misc/hylafax/Manifest index 360b165c35c2..20f3bf469c53 100644 --- a/net-misc/hylafax/Manifest +++ b/net-misc/hylafax/Manifest @@ -1,6 +1,6 @@ -MD5 888ea310904ee446f7c80809b4b3ecab ChangeLog 3972 +MD5 ebd2726a749b06e2ef854d83f44ccd49 ChangeLog 3973 MD5 6057f28d0a94aa5ef3a23980ff473676 hylafax-4.1.5.ebuild 1714 -MD5 8832249e105efa9c81f09d2b1a8c97a7 hylafax-4.1.7.ebuild 2019 +MD5 f611ead372d13e3344d8f066f79bcb56 hylafax-4.1.7.ebuild 2120 MD5 29baffb3ea59d0730f0be2c48616b71f metadata.xml 434 MD5 2ebb269cf0ba67d69d582a3f139c11e5 files/digest-hylafax-4.1.5 66 MD5 620e9bbfd90a0fad3a5324cac04ffc81 files/hylafax-4.1.2-gentoo-diffs.tar.bz2 3993 diff --git a/net-misc/hylafax/files/digest-hylafax-4.1.7 b/net-misc/hylafax/files/digest-hylafax-4.1.7 new file mode 100644 index 000000000000..cff01ad567c0 --- /dev/null +++ b/net-misc/hylafax/files/digest-hylafax-4.1.7 @@ -0,0 +1 @@ +MD5 1302066b0055a060e525026919d98ff7 hylafax-4.1.7.tar.gz 1285766 diff --git a/net-misc/hylafax/hylafax-4.1.7.ebuild b/net-misc/hylafax/hylafax-4.1.7.ebuild new file mode 100644 index 000000000000..50c712ae9a66 --- /dev/null +++ b/net-misc/hylafax/hylafax-4.1.7.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/hylafax/hylafax-4.1.7.ebuild,v 1.1 2003/09/21 04:19:53 nerdboy Exp $ + +# This is basically unchanged from the one supplied by Stephane Loeuillet +# to Gentoo bug: http://bugs.gentoo.org/show_bug.cgi?id=28574 +# Nice job, and thanks :) + +IUSE="jpeg" + +S=${WORKDIR}/${P} +DESCRIPTION="Fax package for class 1 and 2 fax modems." +HOMEPAGE="http://www.hylafax.org" +SRC_URI="ftp://ftp.hylafax.org/source/${P}.tar.gz" + +SLOT="0" +LICENSE="hylafax" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~mips ~hppa ~arm" + +DEPEND="net-dialup/mgetty + >=sys-libs/zlib-1.1.4 + >=app-text/ghostscript-5.50 + >=media-libs/tiff-3.5.5 + jpeg? ( media-libs/jpeg ) + sys-apps/gawk" + +RDEPEND="${DEPEND}" + +src_compile() { + # no 'econf' here because does not support standard --prefix option (prehistoric autoconf v1.92 used !!!) + ./configure \ + --with-DIR_BIN=/usr/bin \ + --with-DIR_SBIN=/usr/sbin \ + --with-DIR_LIB=/usr/lib \ + --with-DIR_LIBEXEC=/usr/sbin \ + --with-DIR_LIBDATA=/usr/lib/fax \ + --with-DIR_LOCKS=/var/lock \ + --with-DIR_MAN=/usr/share/man \ + --with-DIR_SPOOL=/var/spool/fax \ + --with-AFM=no \ + --with-AWK=/usr/bin/gawk \ + --with-PATH_VGETTY=/sbin/vgetty \ + --with-PATH_GETTY=/sbin/agetty \ + --with-HTML=no \ + --with-PATH_DPSRIP=/var/spool/fax/bin/ps2fax \ + --with-PATH_IMPRIP=/usr/share/fax/psrip \ + --with-SYSVINIT=/etc/init.d \ + --with-INTERACTIVE=no \ + --with-OPTIMIZER="${CFLAGS}" || die + # no 'emake' for the same reason (might use an old automake version) + make || die +} + +src_install() { + + dodir /usr/{bin,sbin} /usr/lib/fax /usr/share/man \ + /var/spool/fax/{archive,client,pollq,recvq,tmp} + chown -R uucp:uucp ${D}/var/spool/fax + + make \ + BIN=${D}/usr/bin \ + SBIN=${D}/usr/sbin \ + LIBDIR=${D}/usr/lib \ + LIB=${D}/usr/lib \ + LIBEXEC=${D}/usr/sbin \ + LIBDATA=${D}/usr/lib/fax \ + MAN=${D}/usr/share/man \ + SPOOL=${D}/var/spool/fax \ + install || die + + insinto /etc/init.d + insopts -m 755 + doins etc/hylafax + + dodoc COPYRIGHT README TODO VERSION + + dohtml -r html/ +} diff --git a/net-misc/hylafax/metadata.xml b/net-misc/hylafax/metadata.xml new file mode 100644 index 000000000000..e39edb6d03ac --- /dev/null +++ b/net-misc/hylafax/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>comm-fax</herd> +<maintainer> + <email>nerdboy@gentoo.org</email> + <name>Steve Arnold</name> + <description>Primary Maintainer</description> +</maintainer> +<longdescription>HylaFAX(tm) client-server fax system with email gateway, paging, and multi-platform client support.<longdescription> +</pkgmetadata> |