blob: 56e25010189edabb60ce7ecaae752229f8d5024e (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/ming/ming-0.3.0.ebuild,v 1.6 2007/04/30 23:25:32 genone Exp $
inherit eutils toolchain-funcs java-pkg perl-module python distutils
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.gz
java? ( mirror://sourceforge/ming/${PN}-java-${PV}.tar.gz )
perl? ( mirror://sourceforge/ming/${PN}-perl-${PV}.tar.gz )
python? ( mirror://sourceforge/ming/${PN}-py-${PV}.tar.gz )"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="java perl python"
RDEPEND="java? ( virtual/jre )
perl? ( dev-lang/perl )
python? ( virtual/python )"
DEPEND="${RDEPEND}
sys-devel/flex
java? ( virtual/jdk dev-java/java-config )"
src_unpack() {
unpack ${A}
cd "${S}"
if use java ; then
epatch "${FILESDIR}/${P}-java-compiler.patch"
fi
}
src_compile() {
cd "${S}"
econf || die "econf failed"
emake DESTDIR="${D}" || die "emake failed"
if use java ; then
cd "${S}/java_ext"
make || "java emake failed"
fi
if use perl ; then
cd "${S}/perl_ext"
perl-module_src_compile || "perl make failed"
perl-module_pkg_setup
perl-module_pkg_preinst
fi
if use python ; then
cd "${S}/py_ext"
python_version
distutils_src_compile || "python make failed"
fi
}
src_install() {
insopts -m0644
insinto /usr/include
doins src/ming.h src/ming_config.h mingpp.h
dolib libming.so libming.so.0 libming.so.${PV} libming.a
dodoc ChangeLog CREDITS HISTORY INSTALL LICENSE LICENSE_GPL2 NEWS README TODO
doman man/makeswf.1
cd "${S}/util"
dobin listswf listswf_d swftoperl swftophp swftopython makeswf listaction listaction_d listfdb makefdb listjpeg \
raw2adpcm listmp3 gif2dbl gif2mask png2dbl png2swf ming-config dbl2png
if use java ; then
cd "${S}/java_ext"
java-pkg_doclass jswf.jar
fi
if use perl ; then
cd "${S}/perl_ext"
perl-module_src_install
dodoc CREDITS README SUPPORT TODO
fi
if use python ; then
cd "${S}/py_ext"
distutils_src_install
python_mod_cleanup
dodoc INSTALL
fi
}
pkg_postinst() {
if use java ; then
elog "You may want to add ming to the java classpath by running"
elog "java-config --add-[user|system]-classpath=ming"
fi
if use perl ; then
perl-module_pkg_postinst
fi
}
|