Commit graph

13 commits

Author SHA1 Message Date
David Sainty
e2d791ed0f Mechanically replace references to graphics/jpeg with the suitable
alternative from mk/jpeg.buildlink3.mk

This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).

The mechanical edits were applied via the following script:

#!/bin/sh
for d in *; do
  [ -d "$d" ] || continue
  for i in "$d/"Makefile* "$d/"*.mk; do
    case "$i" in *.orig|*"*"*) continue;; esac
    out="$d/x"
    sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
        -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
        < "$i" > "$out"
    if cmp -s "$i" "$out"; then
      rm -f "$out"
    else
      echo "Edited $i"
      mv -f "$i" "$i.orig" && mv "$out" "$i"
    fi
  done
done
2010-12-26 05:01:21 +00:00
Makoto Fujiwara
166386a58f Bump the version 4.3.4 to 4.4.7
The Changes are too much to list here.
See the file in build directory
   hylafax-4.4.7/doc/RELEASENOTES-4.3.txt
   hylafax-4.4.7/doc/RELEASENOTES-4.4.txt

Note that versions of related packages for now are
     comms/hylafax		4.2.5
       wip/hylafax		4.4.7
       wip/hylafax-devel	4.4.0
2010-10-21 08:13:50 +00:00
Makoto Fujiwara
cfaa43462c Add PKG_DESTDIR_SUPPORT=user-destdir for both hylafax and hylafax-devel (with 1 line TODO) 2010-10-21 07:46:21 +00:00
Makoto Fujiwara
6ea642be55 (The first step to update hylafax stuff),
the minor update for 'configure' made version 4.3.4 packages OK,
the fix pulled out from comms/hylafax.

(although PKG_DESTDIR_SUPPOR is not yet)
 .. sorry for separate commit with patch/patch-ae ..
2010-10-21 05:19:14 +00:00
Makoto Fujiwara
4404abf79d (The first step to update hylafax stuff),
the minor update for 'configure' made version 4.3.4 packages OK,
the fix pulled out from comms/hylafax.

(although PKG_DESTDIR_SUPPOR is not yet)
2010-10-21 05:17:54 +00:00
Thomas Klausner
8800f9c18c Second try at recursive PKGREVISION bump for jpeg shlib major bump (jpeg-8). 2010-01-18 09:38:16 +00:00
Thomas Klausner
4c850f93bc Remove obsolete @dirrm lines. 2009-10-11 10:44:24 +00:00
Klaus Heinz
3d504d035a Master site ftp.leo.org does not exist anymore. 2007-11-12 18:11:40 +00:00
Andreas Hallmann
082e3edafa create libdata if needed 2007-08-06 19:20:38 +00:00
Andreas Hallmann
dd78f87635 update to hylafax 4.3.4 2007-06-04 09:51:54 +00:00
Sergey Svishchev
7b4709677e Delint:
- convert spaces to tabs (pkglint --autofix)
- set, not append to USE_LANGUAGES
2006-10-29 08:32:37 +00:00
Andreas Hallmann
0f18465e7e Addapting patches from hylafax-devel (vendor branch) to hylafax 2006-06-12 07:59:46 +00:00
Andreas Hallmann
920ed39009 Hylafax is an enterprise class fax server software.
hylafax is a release spin off from wip/hylafax-devel.
hylafax will stay with releases and get imports
to its (cvs speek) vendor branch, whenever hylafax-devel reaches the next release.
It is thought as the hylafax source for pkgsrc-imports.

hylafax-devel will continue to be a testbed for the next release.
2006-05-20 15:29:28 +00:00