* [gentoo-commits] gentoo-x86 commit in x11-libs/fltk: fltk-1.3.0_rc6.ebuild ChangeLog
@ 2011-05-27 6:20 Justin Lecher (jlec)
0 siblings, 0 replies; only message in thread
From: Justin Lecher (jlec) @ 2011-05-27 6:20 UTC (permalink / raw
To: gentoo-commits
jlec 11/05/27 06:20:35
Modified: ChangeLog
Added: fltk-1.3.0_rc6.ebuild
Log:
Version Bump
(Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
Revision Changes Path
1.179 x11-libs/fltk/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/fltk/ChangeLog?rev=1.179&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/fltk/ChangeLog?rev=1.179&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/fltk/ChangeLog?r1=1.178&r2=1.179
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/fltk/ChangeLog,v
retrieving revision 1.178
retrieving revision 1.179
diff -u -r1.178 -r1.179
--- ChangeLog 21 May 2011 11:08:52 -0000 1.178
+++ ChangeLog 27 May 2011 06:20:35 -0000 1.179
@@ -1,6 +1,11 @@
# ChangeLog for x11-libs/fltk
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/fltk/ChangeLog,v 1.178 2011/05/21 11:08:52 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/fltk/ChangeLog,v 1.179 2011/05/27 06:20:35 jlec Exp $
+
+*fltk-1.3.0_rc6 (27 May 2011)
+
+ 27 May 2011; Justin Lecher <jlec@gentoo.org> +fltk-1.3.0_rc6.ebuild:
+ Version Bump
21 May 2011; Justin Lecher <jlec@gentoo.org> fltk-1.3.0_rc5.ebuild:
Remove bundled libs to be on the save side
1.1 x11-libs/fltk/fltk-1.3.0_rc6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/fltk/fltk-1.3.0_rc6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/fltk/fltk-1.3.0_rc6.ebuild?rev=1.1&content-type=text/plain
Index: fltk-1.3.0_rc6.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/fltk/fltk-1.3.0_rc6.ebuild,v 1.1 2011/05/27 06:20:35 jlec Exp $
EAPI=3
inherit eutils autotools versionator fdo-mime
MY_P=${P/_}
DESCRIPTION="C++ user interface toolkit for X and OpenGL"
HOMEPAGE="http://www.fltk.org/"
SRC_URI="mirror://easysw/${PN}/${PV/_}/${P/_}-source.tar.gz"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
LICENSE="FLTK LGPL-2"
SLOT="1"
IUSE="cairo debug doc examples games opengl pdf threads xft xinerama"
#RESTRICT="strip"
RDEPEND="x11-libs/libXext
x11-libs/libICE
x11-libs/libSM
x11-libs/libXt
virtual/jpeg
media-libs/libpng
sys-libs/zlib
opengl? ( virtual/opengl )
xinerama? ( x11-libs/libXinerama )
xft? ( x11-libs/libXft )"
DEPEND="${RDEPEND}
x11-proto/xextproto
doc? (
app-doc/doxygen
pdf? ( dev-texlive/texlive-latex )
)
xinerama? ( x11-proto/xineramaproto )"
INCDIR=${EPREFIX}/usr/include/fltk-${SLOT}
LIBDIR=${EPREFIX}/usr/$(get_libdir)/fltk-${SLOT}
S="${WORKDIR}/${MY_P}"
src_prepare() {
rm -rf zlib jpeg png || die
epatch \
"${FILESDIR}"/${PN}-1.3.0_rc5-as-needed.patch \
"${FILESDIR}"/${PN}-1.3.0_rc5-share.patch \
"${FILESDIR}"/${PN}-1.3.0_rc3-conf-tests.patch
sed \
-e 's:@HLINKS@::g' -i FL/Makefile.in || die
sed -i \
-e '/C\(XX\)\?FLAGS=/s:@C\(XX\)\?FLAGS@::' \
-e '/^LDFLAGS=/d' \
"${S}/fltk-config.in" || die
# some fixes introduced because slotting
sed -i \
-e '/RANLIB/s:$(libdir)/\(.*LIBNAME)\):$(libdir)/`basename \1`:g' \
src/Makefile || die
# docs in proper docdir
sed -i \
-e "/^docdir/s:fltk:${PF}/html:" \
-e "/SILENT:/d" \
makeinclude.in || die
sed -e "s/7/$(get_version_component_range 3)/" \
"${FILESDIR}"/FLTKConfig.cmake > CMake/FLTKConfig.cmake
sed -e 's:-Os::g' -i configure.in || die
eautoconf
}
src_configure() {
econf \
--includedir=${INCDIR}\
--libdir=${LIBDIR} \
--docdir="${EPREFIX}/usr/share/doc/${PF}/html" \
--enable-largefile \
--enable-shared \
--enable-xdbe \
--disable-localjpeg \
--disable-localpng \
--disable-localzlib \
$(use_enable debug) \
$(use_enable cairo) \
$(use_enable opengl gl) \
$(use_enable threads) \
$(use_enable xft) \
$(use_enable xinerama)
}
src_compile() {
emake || die "emake failed"
if use doc; then
cd "${S}"/documentation
emake html || die "emake doc failed"
if use pdf; then
emake pdf || die "emake doc failed"
fi
fi
if use games; then
cd "${S}"/test
emake blocks checkers sudoku || die "emake games failed"
fi
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
emake -C fluid \
DESTDIR="${D}" install-linux || die "emake install fluid failed"
if use doc; then
emake -C documentation \
DESTDIR="${D}" install || die "emake install doc failed"
fi
local apps="fluid"
if use games; then
emake -C test \
DESTDIR="${D}" install-linux || die "emake install games failed"
emake -C documentation \
DESTDIR="${D}" install-linux || die "emake install doc games failed"
apps="${apps} sudoku blocks checkers"
fi
for app in ${apps}; do
dosym /usr/share/icons/hicolor/32x32/apps/${app}.png \
/usr/share/pixmaps/${app}.png
done
dodoc CHANGES README CREDITS ANNOUNCEMENT || die
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins test/*.{h,cxx,fl} test/demo.menu
fi
insinto /usr/share/cmake/Modules
doins CMake/FLTK*.cmake
echo "LDPATH=${LIBDIR}" > 99fltk-${SLOT}
echo "FLTK_DOCDIR=/usr/share/doc/${PF}/html" >> 99fltk-${SLOT}
doenvd 99fltk-${SLOT}
}
pkg_postinst() {
fdo-mime_desktop_database_update
echo
ewarn "PLEASE PLEASE take note of this"
ewarn "Please make *sure* to run revdep-rebuild now"
ewarn "You must recompile everything that depend on fltk!"
echo
}
pkg_postrm() {
fdo-mime_desktop_database_update
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-05-27 6:20 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-27 6:20 [gentoo-commits] gentoo-x86 commit in x11-libs/fltk: fltk-1.3.0_rc6.ebuild ChangeLog Justin Lecher (jlec)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox