diff options
author | 2011-08-09 19:19:37 +0000 | |
---|---|---|
committer | 2011-08-09 19:19:37 +0000 | |
commit | 995fd63021bd1fe319be7b005d98c0a3a9917031 (patch) | |
tree | 44e00b4401c586ca6f6f73ae0f28ff6e26886576 /app-text/llpp | |
parent | Respect LDFLAGS, bug #334571; build with libpng-1.5, bug #378199 thank Diego ... (diff) | |
download | gentoo-2-995fd63021bd1fe319be7b005d98c0a3a9917031.tar.gz gentoo-2-995fd63021bd1fe319be7b005d98c0a3a9917031.tar.bz2 gentoo-2-995fd63021bd1fe319be7b005d98c0a3a9917031.zip |
add help.ml to src_compile
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Diffstat (limited to 'app-text/llpp')
-rw-r--r-- | app-text/llpp/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/llpp/llpp-9999.ebuild | 11 |
2 files changed, 11 insertions, 5 deletions
diff --git a/app-text/llpp/ChangeLog b/app-text/llpp/ChangeLog index a285d765169b..e77587e8ef77 100644 --- a/app-text/llpp/ChangeLog +++ b/app-text/llpp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/llpp # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/llpp/ChangeLog,v 1.9 2011/08/09 03:36:53 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/llpp/ChangeLog,v 1.10 2011/08/09 19:19:37 xmw Exp $ + + 09 Aug 2011; Michael Weber <xmw@gentoo.org> llpp-9999.ebuild: + add help.ml to src_compile 09 Aug 2011; Michael Weber <xmw@gentoo.org> llpp-9999.ebuild: Update to git-2 eclass, fix src_compile diff --git a/app-text/llpp/llpp-9999.ebuild b/app-text/llpp/llpp-9999.ebuild index b3edbbbec140..a69637b8d58f 100644 --- a/app-text/llpp/llpp-9999.ebuild +++ b/app-text/llpp/llpp-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/llpp/llpp-9999.ebuild,v 1.6 2011/08/09 03:36:53 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/llpp/llpp-9999.ebuild,v 1.7 2011/08/09 19:19:37 xmw Exp $ EAPI=3 @@ -25,14 +25,17 @@ RDEPEND=">=app-text/mupdf-0.8.165 DEPEND="${RDEPEND}" src_compile() { + ocaml keystoml.ml KEYS > help.ml || die + echo "let version =\"$(git describe --tags)\";;" >> help.ml ocamlopt -c -o link.o -ccopt -O link.c || die - ocamlopt -c -o parser.cmo parser.ml || die - ocamlopt -c -o main.cmo -I +lablGL main.ml || die + ocamlopt -c -o help.cmx help.ml || die + ocamlopt -c -o parser.cmx parser.ml || die + ocamlopt -c -o main.cmx -I +lablGL main.ml || die ocamlopt -o llpp \ -I +lablGL str.cmxa unix.cmxa lablgl.cmxa lablglut.cmxa link.o \ -cclib "-lmupdf -lfitz -lz -ljpeg -lopenjpeg -ljbig2dec -lfreetype -lpthread" \ - parser.cmx main.cmx || die + help.cmx parser.cmx main.cmx || die } src_install() { |