diff options
author | Pacho Ramos <pacho@gentoo.org> | 2014-04-18 10:49:59 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2014-04-18 10:49:59 +0000 |
commit | c28b99ccbc2f3a59b866e49b85ef992ade4e76c5 (patch) | |
tree | 564036c1c9724936921b039becf8a607270ab0a8 /dev-lang/io | |
parent | Drop old (diff) | |
download | gentoo-2-c28b99ccbc2f3a59b866e49b85ef992ade4e76c5.tar.gz gentoo-2-c28b99ccbc2f3a59b866e49b85ef992ade4e76c5.tar.bz2 gentoo-2-c28b99ccbc2f3a59b866e49b85ef992ade4e76c5.zip |
Drop old
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'dev-lang/io')
-rw-r--r-- | dev-lang/io/ChangeLog | 7 | ||||
-rw-r--r-- | dev-lang/io/io-2011.09.12-r1.ebuild | 97 |
2 files changed, 5 insertions, 99 deletions
diff --git a/dev-lang/io/ChangeLog b/dev-lang/io/ChangeLog index a9590587f7b8..4c9fb7a85a82 100644 --- a/dev-lang/io/ChangeLog +++ b/dev-lang/io/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/io -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/io/ChangeLog,v 1.13 2013/02/27 00:20:07 mr_bones_ Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/io/ChangeLog,v 1.14 2014/04/18 10:49:59 pacho Exp $ + + 18 Apr 2014; Pacho Ramos <pacho@gentoo.org> -io-2011.09.12-r1.ebuild: + Drop old 27 Feb 2013; Michael Sterrett <mr_bones_@gentoo.org> io-2011.09.12-r1.ebuild, io-2011.09.12-r2.ebuild: diff --git a/dev-lang/io/io-2011.09.12-r1.ebuild b/dev-lang/io/io-2011.09.12-r1.ebuild deleted file mode 100644 index 2bea1e544231..000000000000 --- a/dev-lang/io/io-2011.09.12-r1.ebuild +++ /dev/null @@ -1,97 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/io/io-2011.09.12-r1.ebuild,v 1.2 2013/02/27 00:20:07 mr_bones_ Exp $ - -EAPI=4 - -inherit cmake-utils - -DESCRIPTION="Io is a small, prototype-based programming language." -HOMEPAGE="http://www.iolanguage.com" -SRC_URI="mirror://gentoo/${P}.tar.gz - http://dev.gentoo.org/~araujo/snapshots/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~x86 ~amd64" -IUSE="cgi clutter dbi doc editline google gui http image jabber libffi libxml2 - lzo md5sum ncurses ogg opengl postgres pcre python readline sha1 sndfile sockets - sqlite3 syslog theora threads truetype twitter vorbis zlib" -DEPEND="clutter? ( media-libs/clutter ) - dbi? ( dev-db/libdbi ) - editline? ( dev-libs/libedit ) - image? ( virtual/jpeg - media-libs/tiff - media-libs/libpng ) - jabber? ( net-libs/loudmouth ) - libffi? ( virtual/libffi ) - libxml2? ( dev-libs/libxml2 ) - lzo? ( dev-libs/lzo ) - ncurses? ( sys-libs/ncurses ) - ogg? ( media-libs/libogg ) - opengl? ( virtual/opengl ) - pcre? ( dev-libs/libpcre ) - postgres? ( dev-db/postgresql-server ) - readline? ( sys-libs/readline ) - sndfile? ( media-libs/libsndfile ) - sqlite3? ( >=dev-db/sqlite-3.0.0 ) - theora? ( media-libs/libtheora ) - truetype? ( media-libs/freetype ) - vorbis? ( media-libs/libvorbis ) - zlib? ( sys-libs/zlib )" -RDEPEND="" -REQUIRED_USE="vorbis? ( ogg )" - -src_prepare() { - epatch "${FILESDIR}/${P}-gentoo-fixes.patch" -} - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use_enable cgi CGI) - $(cmake-utils_use_enable clutter CLUTTER) - $(cmake-utils_use_enable dbi DBI) - $(cmake-utils_use_enable editline EDITLINE) - $(cmake-utils_use_enable libffi CFFI) - $(cmake-utils_use_enable gui FLUX) - $(cmake-utils_use_enable google GOOGLESEARCH) - $(cmake-utils_use_enable http HTTPCLIENT) - $(cmake-utils_use_enable jabber LOUDMOUTH) - $(cmake-utils_use_enable image IMAGE) - $(cmake-utils_use_enable libxml2 LIBXML2) - $(cmake-utils_use_enable lzo LZO) - $(cmake-utils_use_enable md5sum MD5SUM) - $(cmake-utils_use_enable ncurses CURSES) - $(cmake-utils_use_enable ogg OGG) - $(cmake-utils_use_enable opengl OPENGL) - $(cmake-utils_use_enable postgres POSTGRESQL) - $(cmake-utils_use_enable python PYTHON) - $(cmake-utils_use_enable readline READLINE) - $(cmake-utils_use_enable pcre REGEX) - $(cmake-utils_use_enable sndfile LIBSNDFILE) - $(cmake-utils_use_enable sha1 SHA1) - $(cmake-utils_use_enable sockets SOCKET) - $(cmake-utils_use_enable sqlite3 SQLITE3) - $(cmake-utils_use_enable syslog SYSLOG) - $(cmake-utils_use_enable theora THEORA) - $(cmake-utils_use_enable threads THREADS) - $(cmake-utils_use_enable truetype FONT) - $(cmake-utils_use_enable twitter TWITTER ) - $(cmake-utils_use_enable vorbis VORBIS) - $(cmake-utils_use_enable zlib ZLIB) - -DCMAKE_SKIP_RPATH=ON - ) - cmake-utils_src_configure -} - -src_compile() { - # Fix bug #414421 - cmake-utils_src_compile -j1 -} - -src_install() { - cmake-utils_src_install - if use doc; then - dodoc docs/docs.css docs/*.html - fi -} |