diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-08-10 09:55:07 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-08-10 09:55:07 +0000 |
commit | 34c0522d949f169f56aa4515de8c4746692beebb (patch) | |
tree | d7cc9645cee2d0708f339307d8ebc2a6e18d24d6 /media-libs/libcaca | |
parent | * bump (diff) | |
download | gentoo-2-34c0522d949f169f56aa4515de8c4746692beebb.tar.gz gentoo-2-34c0522d949f169f56aa4515de8c4746692beebb.tar.bz2 gentoo-2-34c0522d949f169f56aa4515de8c4746692beebb.zip |
remove old
(Portage version: 2.2_rc37/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/libcaca')
-rw-r--r-- | media-libs/libcaca/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/libcaca/files/libcaca-0.99_beta14-nogl.patch | 14 | ||||
-rw-r--r-- | media-libs/libcaca/libcaca-0.99_beta14.ebuild | 66 |
3 files changed, 5 insertions, 81 deletions
diff --git a/media-libs/libcaca/ChangeLog b/media-libs/libcaca/ChangeLog index 846e2e24d89d..5b463b3b1d20 100644 --- a/media-libs/libcaca/ChangeLog +++ b/media-libs/libcaca/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/libcaca # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libcaca/ChangeLog,v 1.79 2009/08/09 12:40:39 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libcaca/ChangeLog,v 1.80 2009/08/10 09:55:06 aballier Exp $ + + 10 Aug 2009; Alexis Ballier <aballier@gentoo.org> + -libcaca-0.99_beta14.ebuild, -files/libcaca-0.99_beta14-nogl.patch: + remove old 09 Aug 2009; nixnut <nixnut@gentoo.org> libcaca-0.99_beta16.ebuild: ppc stable #275907 diff --git a/media-libs/libcaca/files/libcaca-0.99_beta14-nogl.patch b/media-libs/libcaca/files/libcaca-0.99_beta14-nogl.patch deleted file mode 100644 index 26d8899fafd2..000000000000 --- a/media-libs/libcaca/files/libcaca-0.99_beta14-nogl.patch +++ /dev/null @@ -1,14 +0,0 @@ -Index: configure.ac -=================================================================== ---- configure.ac (revision 2538) -+++ configure.ac (revision 2539) -@@ -218,8 +218,8 @@ - AC_MSG_ERROR([cannot find OpenGL+FreeGLUT development files]) - fi - PKG_CHECK_MODULES(FTGL, ftgl >= 2.1.3, [FTGL="yes"], [FTGL="no"]) -- AM_CONDITIONAL(USE_FTGL, test "${FTGL}" = "yes") - fi -+AM_CONDITIONAL(USE_FTGL, test "${FTGL}" = "yes") - - if test "${enable_cocoa}" != "no"; then - ac_cv_my_have_cocoa="no" diff --git a/media-libs/libcaca/libcaca-0.99_beta14.ebuild b/media-libs/libcaca/libcaca-0.99_beta14.ebuild deleted file mode 100644 index ef8050ac454a..000000000000 --- a/media-libs/libcaca/libcaca-0.99_beta14.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libcaca/libcaca-0.99_beta14.ebuild,v 1.10 2009/05/30 09:22:16 ulm Exp $ - -inherit eutils autotools libtool mono - -MY_P="${P/_beta/.beta}" - -DESCRIPTION="A library that creates colored ASCII-art graphics" -HOMEPAGE="http://libcaca.zoy.org/" -SRC_URI="http://libcaca.zoy.org/files/${PN}/${MY_P}.tar.gz" - -LICENSE="WTFPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd" -IUSE="doc imlib mono ncurses nocxx opengl ruby slang X" - -RDEPEND="ncurses? ( >=sys-libs/ncurses-5.3 ) - slang? ( >=sys-libs/slang-1.4 ) - imlib? ( media-libs/imlib2 ) - X? ( x11-libs/libX11 x11-libs/libXt ) - opengl? ( virtual/opengl media-libs/freeglut ) - mono? ( dev-lang/mono ) - ruby? ( virtual/ruby )" -DEPEND="${RDEPEND} - dev-util/pkgconfig - doc? ( app-doc/doxygen - virtual/latex-base - || ( dev-texlive/texlive-fontsrecommended app-text/ptex ) )" - -S="${WORKDIR}/${MY_P}" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}/${PN}-0.99_beta14-deoptimise.patch" - epatch "${FILESDIR}/${P}-nogl.patch" - - eautoreconf - elibtoolize -} - -src_compile() { - # temp font fix #44128 - export VARTEXFONTS="${T}/fonts" - - econf \ - $(use_enable doc) \ - $(use_enable ncurses) \ - $(use_enable slang) \ - $(use_enable imlib imlib2) \ - $(use_enable X x11) $(use_with X x) --x-libraries=/usr/$(get_libdir) \ - $(use_enable opengl gl) \ - $(use_enable !nocxx cxx) \ - $(use_enable mono csharp) \ - $(use_enable ruby) \ - || die "econf failed" - emake || die "emake failed" - unset VARTEXFONTS -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog NEWS NOTES README -} |