blob: 197d76d88898d7076a106dfe9955348d5525258d (
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
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/imlib2/imlib2-1.1.1_pre1.ebuild,v 1.1 2004/05/18 15:57:00 vapier Exp $
inherit enlightenment flag-o-matic gcc
MY_P=${P/_/-}
DESCRIPTION="Version 2 of an advanced replacement library for libraries like libXpm"
HOMEPAGE="http://www.enlightenment.org/pages/imlib2.html"
SRC_URI="mirror://sourceforge/enlightenment/${MY_P}.tar.gz"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~ia64"
IUSE="${IUSE} mmx gif png jpeg tiff static X"
DEPEND="=media-libs/freetype-2*
gif? ( media-libs/libungif
>=media-libs/giflib-4.1.0 )
png? ( >=media-libs/libpng-1.2.1 )
jpeg? ( media-libs/jpeg )
tiff? ( >=media-libs/tiff-3.5.5 )
X? ( virtual/x11 )"
#S=${WORKDIR}/${PN} # cvs
S=${WORKDIR}/${P/_*} # release
src_compile() {
local mymmx=""
if [ "${ARCH}" == "amd64" ] ; then
mymmx="--disable-mmx"
else
mymmx="`use_enable mmx`"
fi
if [ "${S}" == "${WORKDIR}/${PN}" ] ; then
sed -i '/^SUBDIRS/s:test demo::' Makefile.am
export MY_ECONF="
${mymmx} \
`use_with X x` \
"
EHACKAUTOGEN=yes
enlightenment_src_compile
else
econf \
${mymmx} \
`use_with X x` \
|| die "could not configure"
emake || die "could not make"
fi
}
src_install() {
enlightenment_src_install
docinto samples
dodoc demo/*.c
}
|