diff options
author | Michael Mason <ms13sp@gmail.com> | 2009-07-14 14:52:53 +0000 |
---|---|---|
committer | Michael Mason <ms13sp@gmail.com> | 2009-07-14 14:52:53 +0000 |
commit | c1e4d08dd5272afb145baf947e4aff83f5cfd661 (patch) | |
tree | e2e429e95c7a34b3b7fcd8cf32deb207ecfd89d6 /testing | |
parent | ca234242ab0e36b80dc6ee23d6a7b37ebe5332f4 (diff) | |
download | aports-c1e4d08dd5272afb145baf947e4aff83f5cfd661.tar.bz2 aports-c1e4d08dd5272afb145baf947e4aff83f5cfd661.tar.xz |
testing/hylafax moved to extra/hylafax
Diffstat (limited to 'testing')
-rw-r--r-- | testing/hylafax/APKBUILD | 82 | ||||
-rw-r--r-- | testing/hylafax/hylafax.post-install | 5 |
2 files changed, 0 insertions, 87 deletions
diff --git a/testing/hylafax/APKBUILD b/testing/hylafax/APKBUILD deleted file mode 100644 index 42450d4678..0000000000 --- a/testing/hylafax/APKBUILD +++ /dev/null @@ -1,82 +0,0 @@ -# Contributor: Cameron Banta <cbanta@gmail.com> -# Maintainer: Cameron Banta <cbanta@gmail.com> -pkgname=hylafax -pkgver=4.4.4 -pkgrel=0 -pkgdesc="Sends and receives faxes" -url="http://www.hylafax.org/" -license="custom" -#depends on gcc for libgcc_s.so, it's scripts are hardcoded to bash -depends="ghostscript bash" -makedepends="zlib-dev tiff-dev uclibc++-dev" -install="hylafax.post-install" -subpackages="$pkgname-doc" -source="ftp://ftp.hylafax.org/source/$pkgname-$pkgver.tar.gz - $install - " - -build() { - cd "$srcdir/$pkgname-$pkgver" - - # Patch configure c++ problem - sed -i -e 's:"iostream.h":<iostream>\n using namespace std;:g' \ - configure - - # the configure script does not handle ccache or distcc - export CC=gcc - ./configure --nointeractive --disable-pam \ - --with-CXX=/usr/bin/g++-uc \ - --with-DIR_BIN=/usr/bin \ - --with-DIR_SBIN=/usr/sbin \ - --with-DIR_LIB=/usr/lib \ - --with-DIR_LIBEXEC=/usr/sbin \ - --with-DIR_LIBDATA=/var/spool/"$pkgname"/lib \ - --with-DIR_LOCKS=/var/lock \ - --with-DIR_MAN=/usr/share/man \ - --with-DIR_SPOOL=/var/spool/"$pkgname" \ - --with-DIR_HTML=/usr/share/doc/"$pkgname"/html \ - --with-PATH_IMPRIP="" \ - --with-SYSVINIT=no \ - --with-REGEX=yes \ - --with-LIBTIFF="-ltiff -lz" \ - --with-DSO=auto \ - --with-PATH_EGETTY=/bin/false \ - --with-PATH_VGETTY=/bin/false \ - || return 1 - make -j1 || return 1 - - # this makefile has issues installing, it doesn't use the standard - # install - but the following seems to work - mkdir -p "${pkgdir}"/usr/bin "${pkgdir}"/usr/sbin - mkdir -p "${pkgdir}"/usr/lib/"$pkgname" "${pkgdir}"/usr/share/man - mkdir -p "${pkgdir}"/var/spool/"$pkgname" - mkdir -p "${pkgdir}"/var/spool/"$pkgname"/lib - touch "${pkgdir}"/var/spool/"$pkgname"/lib/pagesizes - chown uucp:uucp "${pkgdir}"/var/spool/"$pkgname" - chmod 0600 "${pkgdir}"/var/spool/"$pkgname" - - make \ - BIN="${pkgdir}/usr/bin" \ - SBIN="${pkgdir}/usr/sbin" \ - LIBDIR="${pkgdir}/usr/lib" \ - LIB="${pkgdir}/usr/lib" \ - LIBEXEC="${pkgdir}/usr/sbin" \ - LIBDATA="${pkgdir}/var/spool/$pkgname"/lib \ - MAN="${pkgdir}/usr/share/man" \ - SPOOL="${pkgdir}/var/spool/$pkgname" \ - HTMLDIR="${pkgdir}/usr/share/doc/$pkgname/html" \ - install || return 1 - - - install -m644 -D "$srcdir/$pkgname-$pkgver/COPYRIGHT" \ - "$pkgdir"/usr/share/licenses/$pkgname/COPYRIGHT - install -m644 -D "$srcdir/$pkgname-$pkgver/README" \ - "$pkgdir"/usr/share/doc/$pkgname/README - - - # init.d script is created by faxsetup - # - which the user runs after install -} - -md5sums="4beb3d438ca6c4f00f1d94f9643e6668 hylafax-4.4.4.tar.gz -a3553e6fc4de30e80759abe5c663c85b hylafax.post-install" diff --git a/testing/hylafax/hylafax.post-install b/testing/hylafax/hylafax.post-install deleted file mode 100644 index 839f96f543..0000000000 --- a/testing/hylafax/hylafax.post-install +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -echo " *" -echo " * Please run faxsetup to configure hylafax" -echo " *" |