blob: bcf221a518d7cd2a83d803cda204847b47bb97cd (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/ming/ming-0.4.3.ebuild,v 1.1 2010/04/20 22:46:52 mabi Exp $
EAPI=1
PHP_EXT_NAME=ming
PYTHON_DEPEND="python? 2"
inherit eutils autotools flag-o-matic multilib php-ext-source-r1 perl-module distutils python
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
DESCRIPTION="An Open Source library for Flash movie generation."
HOMEPAGE="http://ming.sourceforge.net/"
SRC_URI="mirror://sourceforge/ming/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="+perl +python php"
RDEPEND="perl? ( dev-lang/perl )
python? ( virtual/python )
media-libs/freetype
media-libs/libpng
media-libs/giflib
sys-libs/zlib
!media-libs/libswf"
DEPEND="${DEPEND}
sys-devel/flex"
S=${WORKDIR}/${P/_/.}
#Tests only work when the package is tested on a system
#which does not presently have any version of ming installed.
RESTRICT="test"
RESTRICT_PYTHON_ABIS="3"
pkg_setup() {
use python && python_set_active_version 2
}
src_unpack() {
unpack ${A}
cd "${S}"
#Let's get rid of the TEXTRELS, link dynamic. Use gif.
sed -i \
-e 's/libming.a/libming.so/' \
-e 's/lungif/lgif/' \
perl_ext/Makefile.PL
sed -i \
-e 's/ungif/gif/' \
py_ext/setup.py.in
if use php; then
cd "${S}/php_ext"
php-ext-source-r1_phpize
cd "${S}"
fi
eautoreconf
}
src_compile() {
# build is sensitive to -O3 (bug #297437)
replace-flags -O3 -O2
econf $(use_enable perl) \
$(use_enable python) || die "econf failed"
emake -j1 DESTDIR="${D}" || die "emake failed"
if use php; then
cd "${S}"/php_ext
myconf="--disable-rpath
--disable-static
--with-ming"
php-ext-source-r1_src_compile
fi
}
src_test() {
make check || die "tests failed"
}
src_install() {
make DESTDIR="${D}" INSTALLDIRS="vendor" install
fixlocalpod
#Get rid of the precompiled stuff, we generate it later.
rm -f $(find "${D}" -name '*.pyc')
if use php; then
cd "${S}"/php_ext
php-ext-source-r1_src_install
fi
}
pkg_postinst() {
use perl && perl-module_pkg_postinst
if use python
then
ebegin "Compiling ming.py"
python_mod_compile $(python_get_sitedir)/ming.py
eend $?
ebegin "Compiling mingc.py"
python_mod_compile $(python_get_sitedir)/mingc.py || die "mingc.py failed"
eend $?
fi
}
pkg_prerm() {
use perl && perl-module_pkg_prerm
}
pkg_postrm() {
use perl && perl-module_pkg_postrm
use python && distutils_pkg_postrm
}
|