diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-15 15:02:08 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-15 15:02:08 +0000 |
commit | ff616d55613c724ef10213dc9047de568fe2fb93 (patch) | |
tree | 70a5a34c73d33234457e0a5bc3a5a1e959050d44 /main/hylafax | |
parent | ea8b4e3d878d38e4a07c99e80ff51540428e7855 (diff) | |
download | aports-ff616d55613c724ef10213dc9047de568fe2fb93.tar.bz2 aports-ff616d55613c724ef10213dc9047de568fe2fb93.tar.xz |
main/hylafax: do not use uclibc++
Diffstat (limited to 'main/hylafax')
-rw-r--r-- | main/hylafax/APKBUILD | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/main/hylafax/APKBUILD b/main/hylafax/APKBUILD index 06a868b933..419aebc917 100644 --- a/main/hylafax/APKBUILD +++ b/main/hylafax/APKBUILD @@ -2,17 +2,16 @@ # Maintainer: Cameron Banta <cbanta@gmail.com> pkgname=hylafax pkgver=4.4.4 -pkgrel=1 +pkgrel=2 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" +makedepends="zlib-dev tiff-dev" install="hylafax.post-install" subpackages="$pkgname-doc" source="ftp://ftp.hylafax.org/source/$pkgname-$pkgver.tar.gz - $install " build() { @@ -24,8 +23,8 @@ build() { # the configure script does not handle ccache or distcc export CC=gcc + export CXX=g++ ./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 \ @@ -78,5 +77,4 @@ build() { # - which the user runs after install } -md5sums="4beb3d438ca6c4f00f1d94f9643e6668 hylafax-4.4.4.tar.gz -a3553e6fc4de30e80759abe5c663c85b hylafax.post-install" +md5sums="4beb3d438ca6c4f00f1d94f9643e6668 hylafax-4.4.4.tar.gz" |