summaryrefslogtreecommitdiff
blob: 65a776d7da30835dc29bfb6e4307a92831727d5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils

DESCRIPTION="Library that implements digital image warping, known as morphing, along with GUIs."
HOMEPAGE="http://xmorph.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}.tar.gz"

#http://sourceforge.net/projects/xmorph/files/xmorph/20060817/xmorph_20060817.tar.gz/download
#SRC_URI="http://ftp.de.debian.org/debian/pool/main/x/xmorph/xmorph_20090926.tar.gz"
#RESTRICT="nomirror"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE="gtk nls fftw"
# Options I'm ignoring:
# --with-waili --with-xmorph --with-tkmorph

#              --disable-gtktest \
#                                --without-gtkmorph     \ 

RDEPEND="nls? ( virtual/libintl )
                 gtk? ( x11-libs/gtk+ )"

DEPEND="nls? ( sys-devel/gettext )
               gtk? ( x11-libs/gtk+ )
                    fftw? ( >=sci-libs/fftw-3 )"
src_compile() {
              econf \
                    $(use_enable nls) \
                                 $(use_with gtk gtkmorph) \
                                            $(use_with fftw) \
                                                         || die "configure failed"
                                                         
                                                         emake || die "make failed"
}

src_install() {
              make DESTDIR="${D}" install || die "install failed"
}