Sync with portage [Wed Mar 21 16:32:45 MSK 2012].

mhiretskiy
root 12 years ago
parent ffb1324dbe
commit 7449d7fb97

@ -1,8 +1,8 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/unshield/unshield-0.6.ebuild,v 1.4 2012/03/11 15:41:53 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-arch/unshield/unshield-0.6.ebuild,v 1.5 2012/03/21 06:12:27 ssuominen Exp $
EAPI=2
EAPI=4
DESCRIPTION="InstallShield CAB file extractor"
HOMEPAGE="http://www.synce.org/"
@ -10,20 +10,18 @@ SRC_URI="mirror://sourceforge/synce/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~hppa ~ppc ~x86"
KEYWORDS="amd64 ~hppa ~ppc x86"
IUSE="static-libs"
RDEPEND=">=sys-libs/zlib-1.1.4"
RDEPEND="sys-libs/zlib"
DEPEND="${RDEPEND}"
src_configure() {
econf \
--disable-dependency-tracking \
$(use_enable static-libs static)
econf $(use_enable static-libs static)
}
src_install() {
emake DESTDIR="${D}" install || die
emake DESTDIR="${D}" install
dodoc README
find "${D}" -name '*.la' -exec rm -f {} +

@ -1,13 +1,13 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/unshield/unshield-0.6_p20120308.ebuild,v 1.2 2012/03/08 07:56:10 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-arch/unshield/unshield-0.6_p20120308.ebuild,v 1.3 2012/03/21 06:10:17 ssuominen Exp $
EAPI=4
inherit autotools eutils
DESCRIPTION="InstallShield CAB file extractor"
HOMEPAGE="http://github.com/twogood/unshield http://sourceforge.net/projects/synce/"
SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.xz"
SRC_URI="mirror://gentoo/${P}.tar.xz"
LICENSE="MIT"
SLOT="0"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/pburn/pburn-3.4.3.ebuild,v 1.1 2012/01/03 11:08:24 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-cdr/pburn/pburn-3.4.3.ebuild,v 1.2 2012/03/21 06:52:36 ssuominen Exp $
# wget --user puppy --password linux "http://www.meownplanet.net/zigbert/${P}.pet"
@ -9,7 +9,7 @@ inherit eutils
DESCRIPTION="A burning tool with GTK+ frontend"
HOMEPAGE="http://murga-linux.com/puppy/viewtopic.php?t=23881"
SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.pet"
SRC_URI="mirror://gentoo/${P}.pet"
LICENSE="GPL-2"
SLOT="0"

@ -0,0 +1,2 @@
DIST vagrant-1.0.0.gem 1000960 RMD160 aadb5910a86bb5750ba5b877e58733bf09e5cc66 SHA1 696f9a5d5b706e3761c2d3a5677dd7170c070712 SHA256 ffee3f8b4b02dbf1ec7965342c17d555927e92658dd42eae82e527ab34f196aa
DIST vagrant-1.0.1.gem 1001984 RMD160 2571eb08f80a098eb6df2724432fa99a0575c66d SHA1 69ee0ccd7d9ba0247405e119a583de5cb0dd7bbc SHA256 0fa25bd0c2b0910fc73629d0627df204f8d1acff5c5542373b3eb257ca8d94c0

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>radhermit@gentoo.org</email>
<name>Tim Harder</name>
</maintainer>
</pkgmetadata>

@ -0,0 +1,54 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/vagrant/vagrant-1.0.0.ebuild,v 1.1 2012/03/21 07:08:08 radhermit Exp $
EAPI="4"
USE_RUBY="ruby18 ruby19"
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
RUBY_FAKEGEM_GEMSPEC="vagrant.gemspec"
RUBY_FAKEGEM_EXTRAINSTALL="config keys templates"
inherit ruby-fakegem
DESCRIPTION="A tool for building and distributing virtual machines using VirtualBox"
HOMEPAGE="http://vagrantup.com/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
# Missing ebuild for contest
RESTRICT="test"
RDEPEND="${RDEPEND}
|| ( app-emulation/virtualbox app-emulation/virtualbox-bin )"
ruby_add_rdepend "
~dev-ruby/archive-tar-minitar-0.5.2
>=dev-ruby/childprocess-0.3.1
>=dev-ruby/erubis-2.7.0
>=dev-ruby/i18n-0.6.0
>=dev-ruby/json-1.5.1
>=dev-ruby/log4r-1.1.9
>=dev-ruby/net-scp-1.0.4
>=dev-ruby/net-ssh-2.2.2
"
ruby_add_bdepend "
dev-ruby/rake
test? ( dev-ruby/mocha virtual/ruby-minitest )
"
all_ruby_prepare() {
# Remove bundler support
sed -i -e '/[Bb]undler/d' Rakefile || die
rm Gemfile || die
# Loosen unslotted dependencies
sed -i -e '/json\|net-ssh/s/~>/>=/' ${PN}.gemspec || die
# Remove a runtime dependency that we can't satisfy
sed -i -e '/git ls-files/d' ${PN}.gemspec || die
}

@ -0,0 +1,54 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/vagrant/vagrant-1.0.1.ebuild,v 1.1 2012/03/21 10:05:10 radhermit Exp $
EAPI="4"
USE_RUBY="ruby18 ruby19"
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
RUBY_FAKEGEM_GEMSPEC="vagrant.gemspec"
RUBY_FAKEGEM_EXTRAINSTALL="config keys templates"
inherit ruby-fakegem
DESCRIPTION="A tool for building and distributing virtual machines using VirtualBox"
HOMEPAGE="http://vagrantup.com/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
# Missing ebuild for contest
RESTRICT="test"
RDEPEND="${RDEPEND}
|| ( app-emulation/virtualbox app-emulation/virtualbox-bin )"
ruby_add_rdepend "
~dev-ruby/archive-tar-minitar-0.5.2
>=dev-ruby/childprocess-0.3.1
>=dev-ruby/erubis-2.7.0
>=dev-ruby/i18n-0.6.0
>=dev-ruby/json-1.5.1
>=dev-ruby/log4r-1.1.9
>=dev-ruby/net-scp-1.0.4
>=dev-ruby/net-ssh-2.2.2
"
ruby_add_bdepend "
dev-ruby/rake
test? ( dev-ruby/mocha virtual/ruby-minitest )
"
all_ruby_prepare() {
# Remove bundler support
sed -i -e '/[Bb]undler/d' Rakefile || die
rm Gemfile || die
# Loosen unslotted dependencies
sed -i -e '/json\|net-ssh/s/~>/>=/' ${PN}.gemspec || die
# Remove a runtime dependency that we can't satisfy
sed -i -e '/git ls-files/d' ${PN}.gemspec || die
}

@ -1,2 +1,3 @@
DIST binwalk-0.4.1.tar.gz 695370 RMD160 2cc7ab266035cdad1a2809b8f5066f249826ac79 SHA1 d4cf1909fdb07a4ae547d18a847a2fd2ab734e95 SHA256 fc82c3acbf8d809cfff7896ac69c60e1ebcf1eb30ae7819a89e4ec036cc3b8a9
DIST binwalk-0.4.2.tar.gz 701397 RMD160 63b1cdfe1e2c3b5ac86ec694e48264d77acebbfa SHA1 160ad2f4dd7f37628a4fade5d16c0c9996174ab2 SHA256 2386b30f714f88432736b0f675d3add20a093f35259f5d517fd3152d3619ffbb
DIST binwalk-0.4.3.tar.gz 701052 RMD160 da3682d29009d4b16c3eed7a3994bbc58ad0131b SHA1 5cdc83a005bfca0ac39b4e54db797fdb9d5947c6 SHA256 2eceb316bfb65d43c3422caf5cdd3752ec5d79b1fed57253f47e8513cd9dcaac

@ -0,0 +1,27 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/binwalk/binwalk-0.4.3.ebuild,v 1.1 2012/03/21 09:58:51 radhermit Exp $
EAPI="4"
DESCRIPTION="A tool for identifying files embedded inside firmware images"
HOMEPAGE="http://code.google.com/p/binwalk/"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="sys-apps/file"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${P}/src"
DOCS=( ../docs/README )
src_configure() {
econf \
--enable-libmagic \
--disable-updates
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-9999-r2.ebuild,v 1.37 2012/03/18 13:36:48 scarabeus Exp $
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-9999-r2.ebuild,v 1.38 2012/03/21 10:35:29 scarabeus Exp $
EAPI=4
@ -94,7 +94,7 @@ COMMON_DEPEND="
app-text/libwpd:0.9[tools]
app-text/libwpg:0.2
>=app-text/libwps-0.2.2
>=dev-cpp/clucene-2.3.3.4
>=dev-cpp/clucene-2.3.3.4-r2
dev-cpp/libcmis
dev-db/unixODBC
dev-libs/expat

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/orage/orage-4.8.2.ebuild,v 1.9 2012/01/06 10:55:36 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-office/orage/orage-4.8.2.ebuild,v 1.10 2012/03/21 06:25:51 ssuominen Exp $
EAPI=4
inherit flag-o-matic xfconf
@ -8,10 +8,10 @@ inherit flag-o-matic xfconf
DESCRIPTION="Xfce's calendar suite (with panel plug-in)"
HOMEPAGE="http://www.xfce.org/projects/orage/"
SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2
http://dev.gentoo.org/~ssuominen/${P}-hr.po.bz2
http://dev.gentoo.org/~ssuominen/${P}-kk.po.bz2
http://dev.gentoo.org/~ssuominen/${P}-si.po.bz2
http://dev.gentoo.org/~ssuominen/${P}-ug.po.bz2"
mirror://gentoo/${P}-hr.po.bz2
mirror://gentoo/${P}-kk.po.bz2
mirror://gentoo/${P}-si.po.bz2
mirror://gentoo/${P}-ug.po.bz2"
LICENSE="GPL-2"
SLOT="0"

@ -1,3 +1,2 @@
DIST gtkpod-2.0.2.tar.gz 2982482 RMD160 0810947c013c137f57599a999f63d07d6710b6c7 SHA1 d93e7618653d00a8bc845fd070305c5b38eea1e8 SHA256 2c5dd3d193cd73ba107ccb158e48198768f1dd26724834f8f5ab804281ea4648
DIST gtkpod-2.1.0.tar.gz 2988353 RMD160 238bb6155960045815f71c0ff0d5e087d369e2d2 SHA1 aede305a68bb49ee3ed76dcc3a90830124a064f8 SHA256 6f617d765028ec7929c96610dbbfddbd3cf7746730b48d1f2219f79e3de02f7a
DIST gtkpod-2.1.1.tar.gz 3120542 RMD160 5f30795cf7cda5744181f56875c7648d430d76fc SHA1 aa0bd06395f878bdf9578f8e4350536216fcd2b6 SHA256 a474bb44ed42df554b02c2bd592485ee4fbe91cb9d0fe43576a63bb8b174c37a

@ -0,0 +1,18 @@
Fix loading of libmp4v2.so.2 from mp4v2-1.9.1_p497.
See, http://gtkpod.org/bugs/index.php?do=details&task_id=93
--- plugins/filetype_mp4/mp4file.c
+++ plugins/filetype_mp4/mp4file.c
@@ -317,10 +317,10 @@
/* mp4v2 initialization code */
void mp4_init() {
- mp4v2_handle = dlopen("libmp4v2.so.1", RTLD_LAZY);
+ mp4v2_handle = dlopen("libmp4v2.so.2", RTLD_LAZY);
if (!mp4v2_handle) {
- mp4v2_handle = dlopen("libmp4v2.so.0", RTLD_LAZY);
+ mp4v2_handle = dlopen("libmp4v2.so.1", RTLD_LAZY);
if (!mp4v2_handle) {
return;

@ -1,87 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/gtkpod/gtkpod-2.1.0.ebuild,v 1.2 2011/12/22 13:04:06 ssuominen Exp $
EAPI=4
inherit gnome2-utils
DESCRIPTION="A graphical user interface to the Apple productline"
HOMEPAGE="http://gtkpod.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2 FDL-1.2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="aac curl flac gstreamer mp3 ogg webkit"
COMMON_DEPEND="dev-libs/gdl:3
>=dev-libs/glib-2.28.5:2
>=dev-libs/libxml2-2.7.7
>=dev-util/anjuta-2.91
>=media-libs/libgpod-0.7.0
>=media-libs/libid3tag-0.15
>=x11-libs/gtk+-3.0.8:3
aac? ( media-libs/faad2
media-libs/libmp4v2 )
curl? ( >=net-misc/curl-7.10 )
flac? ( media-libs/flac )
gstreamer? ( >=media-libs/gst-plugins-base-0.10.25:0.10 )
mp3? ( media-sound/lame )
ogg? ( media-libs/libvorbis
media-sound/vorbis-tools )
webkit? ( >=net-libs/webkit-gtk-1.3:3 )"
RDEPEND="${COMMON_DEPEND}
gstreamer? ( media-plugins/gst-plugins-meta:0.10 )"
DEPEND="${COMMON_DEPEND}
dev-util/intltool
dev-util/pkgconfig
sys-kernel/linux-headers
sys-devel/flex
sys-devel/gettext"
src_prepare() {
sed -i \
-e 's:-DG_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED::' \
-e 's:-DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED::' \
-e '/-no-undefined/s:LDFLAGS=":&$LDFLAGS :' \
configure || die
}
src_configure() {
econf \
--disable-static \
$(use_enable webkit plugin-coverweb) \
$(use_enable gstreamer plugin-media-player) \
$(use_with curl) \
$(use_with ogg) \
$(use_with flac) \
$(use_with aac faad)
}
src_install() {
emake \
DESTDIR="${D}" \
docdir=/usr/share/doc/${PF}/html \
figuresdir=/usr/share/doc/${PF}/html/figures \
install
dodoc AUTHORS ChangeLog NEWS README TODO TODOandBUGS.txt TROUBLESHOOTING
find "${D}" -name '*.la' -exec rm -f {} +
rm -f "${D}"/usr/share/gtkpod/data/{AUTHORS,COPYING}
}
pkg_preinst() {
gnome2_icon_savelist
gnome2_schemas_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
gnome2_schemas_update
}
pkg_postrm() {
gnome2_icon_cache_update
gnome2_schemas_update
}

@ -1,9 +1,9 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/gtkpod/gtkpod-2.1.1.ebuild,v 1.1 2012/02/23 06:49:20 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-pda/gtkpod/gtkpod-2.1.1-r1.ebuild,v 1.2 2012/03/21 09:22:41 ssuominen Exp $
EAPI=4
inherit gnome2-utils
inherit eutils gnome2-utils
DESCRIPTION="A graphical user interface to the Apple productline"
HOMEPAGE="http://gtkpod.sourceforge.net/"
@ -23,7 +23,7 @@ COMMON_DEPEND="dev-libs/gdl:3
>=x11-libs/gtk+-3.0.8:3
aac? (
media-libs/faad2
media-libs/libmp4v2
>=media-libs/libmp4v2-1.9.1
)
clutter? ( media-libs/clutter-gtk:1.0 )
curl? ( >=net-misc/curl-7.10 )
@ -44,6 +44,10 @@ DEPEND="${COMMON_DEPEND}
sys-devel/gettext
virtual/os-headers"
src_prepare() {
epatch "${FILESDIR}"/${PN}-2.1.1-libmp4v2_so_2.patch
}
src_configure() {
econf \
--disable-static \

@ -1,13 +1,13 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/clucene/clucene-2.3.3.4-r1.ebuild,v 1.1 2011/12/08 12:41:18 johu Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/clucene/clucene-2.3.3.4-r2.ebuild,v 1.1 2012/03/21 10:20:32 scarabeus Exp $
EAPI=4
MY_PN="${PN}"-core
MY_P="${MY_PN}"-"${PV}"
inherit cmake-utils
inherit cmake-utils multilib
DESCRIPTION="High-performance, full-featured text search engine based off of lucene in C++"
HOMEPAGE="http://clucene.sourceforge.net/"
@ -29,6 +29,11 @@ DOCS=(AUTHORS ChangeLog README README.PACKAGE REQUESTS)
S="${WORKDIR}/${MY_PN}-${PV}"
PATCHES=(
"${FILESDIR}/${P}-contrib.patch"
"${FILESDIR}/${P}-pkgconfig.patch"
)
src_configure() {
# Disabled threads: see upstream bug
# https://sourceforge.net/tracker/?func=detail&aid=3237301&group_id=80013&atid=558446
@ -36,6 +41,9 @@ src_configure() {
-DENABLE_ASCII_MODE=OFF
-DENABLE_PACKAGING=OFF
-DDISABLE_MULTITHREADING=OFF
-DBUILD_CONTRIBS_LIB=ON
"-DLIB_DESTINATION=${EPREFIX}/usr/$(get_libdir)"
"-DLUCENE_SYS_INCLUDES=${EPREFIX}/usr/$(get_libdir)"
$(cmake-utils_use_enable debug)
$(cmake-utils_use_enable doc CLDOCS)
$(cmake-utils_use_build static-libs STATIC_LIBRARIES)

@ -1,36 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/clucene/clucene-9999.ebuild,v 1.4 2011/12/08 12:41:18 johu Exp $
EAPI=4
inherit cmake-utils git-2
DESCRIPTION="High-performance, full-featured text search engine based off of lucene in C++"
HOMEPAGE="http://clucene.sourceforge.net/"
EGIT_REPO_URI="git://${PN}.git.sourceforge.net/gitroot/${PN}/${PN}"
LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
SLOT="1"
KEYWORDS=""
IUSE="debug doc static-libs threads"
RDEPEND=""
DEPEND="
doc? ( >=app-doc/doxygen-1.4.2 )
"
DOCS=(AUTHORS ChangeLog README README.PACKAGE REQUESTS)
src_configure() {
local mycmakeargs=(
-DENABLE_ASCII_MODE=OFF
-DENABLE_PACKAGING=OFF
$(cmake-utils_use_enable debug)
$(cmake-utils_use_enable doc CLDOCS)
$(cmake-utils_use_build static-libs STATIC_LIBRARIES)
$(cmake-utils_use_disable threads MULTITHREADING)
)
cmake-utils_src_configure
}

@ -0,0 +1,42 @@
diff -NaurpBb clucene-core-2.3.3.4/CMakeLists.txt clucene-core-2.3.3.4-mod/CMakeLists.txt
--- clucene-core-2.3.3.4/CMakeLists.txt 2011-03-17 03:21:07.000000000 +0300
+++ clucene-core-2.3.3.4-mod/CMakeLists.txt 2011-08-16 16:56:55.968268152 +0400
@@ -163,7 +163,7 @@ IF ( BUILD_CONTRIBS )
SET(BUILD_CONTRIBS_LIB 1)
ENDIF ( BUILD_CONTRIBS )
IF ( BUILD_CONTRIBS_LIB )
- ADD_SUBDIRECTORY (src/contribs-lib EXCLUDE_FROM_ALL)
+ ADD_SUBDIRECTORY (src/contribs-lib)
ENDIF ( BUILD_CONTRIBS_LIB )
diff -NaurpBb clucene-core-2.3.3.4/src/contribs-lib/CMakeLists.txt clucene-core-2.3.3.4-mod/src/contribs-lib/CMakeLists.txt
--- clucene-core-2.3.3.4/src/contribs-lib/CMakeLists.txt 2011-03-17 03:21:07.000000000 +0300
+++ clucene-core-2.3.3.4-mod/src/contribs-lib/CMakeLists.txt 2011-08-16 17:14:13.499275499 +0400
@@ -106,9 +106,26 @@ add_library(clucene-contribs-lib SHARED
)
TARGET_LINK_LIBRARIES(clucene-contribs-lib ${clucene_contrib_extra_libs})
+#install public headers.
+FOREACH(file ${HEADERS})
+ get_filename_component(apath ${file} PATH)
+ get_filename_component(aname ${file} NAME)
+ file(RELATIVE_PATH relpath ${CMAKE_SOURCE_DIR}/src/contribs-lib ${apath})
+ IF ( NOT aname MATCHES "^_.*" )
+ install(FILES ${file}
+ DESTINATION include/${relpath}
+ COMPONENT development)
+ ENDIF ( NOT aname MATCHES "^_.*" )
+ENDFOREACH(file)
+
#set properties on the libraries
SET_TARGET_PROPERTIES(clucene-contribs-lib PROPERTIES
VERSION ${CLUCENE_VERSION}
SOVERSION ${CLUCENE_SOVERSION}
COMPILE_DEFINITIONS_DEBUG _DEBUG
)
+
+#and install library
+install(TARGETS clucene-contribs-lib
+ DESTINATION ${LIB_DESTINATION}
+ COMPONENT runtime )

@ -0,0 +1,12 @@
diff -up clucene-core-2.3.3.4/src/core/libclucene-core.pc.cmake.pkgconfig_sys_includes clucene-core-2.3.3.4/src/core/libclucene-core.pc.cmake
--- clucene-core-2.3.3.4/src/core/libclucene-core.pc.cmake.pkgconfig_sys_includes 2011-03-16 19:21:07.000000000 -0500
+++ clucene-core-2.3.3.4/src/core/libclucene-core.pc.cmake 2012-03-19 09:01:00.689263954 -0500
@@ -6,6 +6,6 @@ includedir=${prefix}/include:${prefix}/i
Name: libclucene
Description: CLucene - a C++ search engine, ported from the popular Apache Lucene
Version: @CLUCENE_VERSION_MAJOR@.@CLUCENE_VERSION_MINOR@.@CLUCENE_VERSION_REVISION@.@CLUCENE_VERSION_PATCH@
-Libs: -L${prefix}/@LIB_DESTINATION@/ -lclucene-core
-Cflags: -I${prefix}/include -I${prefix}/include/CLucene/ext
+Libs: -L${prefix}/@LIB_DESTINATION@/ -lclucene-core -lclucene-shared
+Cflags: -I${prefix}/include -I${prefix}/include/CLucene/ext -I@LUCENE_SYS_INCLUDES@
~

@ -1,4 +1,4 @@
DIST 20111027-10gen-mms-agent.zip 25241 RMD160 418b238a317583bace686f1386b2a4d0c7c78a92 SHA1 37349cfa1453eaecf7354f3d4a2595efdea02a95 SHA256 e5625ce9029a376674d24b242527459403ac782d18c78d91beab93fa8f6783f1
DIST mongodb-src-r1.8.4.tar.gz 1727826 RMD160 6b561592b4f58f08ca2789e5ab92a3d31597912e SHA1 d296a6e04057e17989de5c7ded3a8c4d28285156 SHA256 c4e27bf22f2353e28ce169dbdbc24205baf863d1f61bd9a31b2230386cada4ae
DIST mongodb-src-r2.0.2.tar.gz 2956087 RMD160 29a7052638236bffec5dff1d53bd5b870b8df3ef SHA1 f1d260a6845f761a1abfa27053bf7c1efdae353f SHA256 e4a498c435532470e8aa7ea1d0119558e0f061c7574659e0ebc0e29cbee2ac8f
DIST mongodb-src-r2.0.3.tar.gz 2964557 RMD160 4b421b0fd7d01ba561e21566c8fc38941bde1a52 SHA1 b6821a8436ce1867b49cad86a855df81499a831c SHA256 f5f365adc6597d5c3c086da27f0ca179313da03fb547a2202badd23f95360699
DIST mongodb-src-r2.0.4.tar.gz 2966431 RMD160 13cc2f7b83333dae8c5511190e5f44e8875b673f SHA1 174297b77368058d3e1eed8c98079222507f827b SHA256 65296df2777778f49a72513483d048f271339683c89d676b80e76687496a38f9

@ -0,0 +1,35 @@
--- a/buildscripts/utils.py
+++ b/buildscripts/utils.py
@@ -3,6 +3,8 @@ import re
import socket
import time
import os
+import sys
+
# various utilities that are handy
def getAllSourceFiles( arr=None , prefix="." ):
@@ -139,6 +141,14 @@ def smoke_python_name():
# then we assume that "python" points to a 2.5 or
# greater python VM. otherwise, explicitly use 2.5
# which we assume to be installed.
+ min_version_tuple = (2, 5)
+ try:
+ if sys.version_info >= min_version_tuple:
+ return sys.executable
+ except AttributeError:
+ # In case the version of Python is somehow missing sys.version_info or sys.executable.
+ pass
+
import subprocess
version = re.compile(r'[Pp]ython ([\d\.]+)', re.MULTILINE)
binaries = ['python2.5', 'python2.6', 'python2.7', 'python25', 'python26', 'python27', 'python']
@@ -150,7 +160,7 @@ def smoke_python_name():
match = version.search(stream)
if match:
versiontuple = tuple(map(int, match.group(1).split('.')))
- if versiontuple >= (2, 5):
+ if versiontuple >= min_version_tuple:
return binary
except:
pass

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/mongodb/mongodb-2.0.2.ebuild,v 1.4 2012/03/19 14:51:15 ultrabug Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-db/mongodb/mongodb-2.0.4.ebuild,v 1.1 2012/03/21 09:05:48 ultrabug Exp $
EAPI=4
SCONS_MIN_VERSION="1.2.0"
@ -47,6 +47,7 @@ pkg_setup() {
src_prepare() {
epatch "${FILESDIR}/${PN}-2.0-fix-scons.patch"
epatch "${FILESDIR}/${P}-fix-utils.patch"
# drop -Werror
sed -i -e '/Werror/d' SConstruct || die
@ -58,6 +59,7 @@ src_prepare() {
}
src_compile() {
echo $LDFLAGS
escons ${scons_opts} all
}

@ -1,2 +1 @@
DIST dvnet-0.9.21.tar.gz 588421 RMD160 4760d3649549bc3075b16a9242b63c6ffc5142e7 SHA1 7d3ea2816a50b586b6fd58b3ccd9793a677c0ecc SHA256 12cb100c19ee85a7353e7aa42b596964c94292412ae8fd33468ac94856bfd9f3
DIST dvnet-0.9.24.tar.gz 921801 RMD160 e7565f5c28b82bad948f339c17eb2d69ff19e756 SHA1 8446d6dbc62b4b5ea805052c75f617a4529335ca SHA256 128175df84d793b4634481fae40ba9be89d154bdb499559ca7d9eddae44bd28c

@ -1,28 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dvnet/dvnet-0.9.21.ebuild,v 1.2 2010/04/12 19:19:48 maekke Exp $
DESCRIPTION="Provides an interface wrapping sockets into streams"
HOMEPAGE="http://tinf2.vub.ac.be/~dvermeir/software/dv/dvnet/html/"
SRC_URI="http://tinf2.vub.ac.be/~dvermeir/software/dv/${PN}/download/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc x86"
IUSE="doc"
DEPEND=">dev-libs/dvutil-1.0"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i 's/^\(SUBDIRS =.*\)doc\(.*\)$/\1\2/' Makefile.in || \
die "sed Makefile.in failed"
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog README NEWS
use doc && dohtml doc/html/*
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dvnet/dvnet-0.9.24.ebuild,v 1.2 2011/03/25 18:29:09 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dvnet/dvnet-0.9.24.ebuild,v 1.3 2012/03/21 10:09:44 ssuominen Exp $
EAPI=4
@ -11,20 +11,25 @@ SRC_URI="http://tinf2.vub.ac.be/~dvermeir/software/dv/${PN}/download/${P}.tar.gz
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc" # no USE static-libs -> dev-libs/dvssl, let only rdep work by default
IUSE="doc static-libs"
RDEPEND="dev-libs/dvutil"
RDEPEND=">=dev-libs/dvutil-1.0.10-r2"
DEPEND="${RDEPEND}"
pkg_setup() {
DOCS="AUTHORS ChangeLog" # NEWS and README are useless
}
DOCS="AUTHORS ChangeLog" # NEWS and README are useless
src_prepare() {
sed -i -e 's/^\(SUBDIRS =.*\)doc\(.*\)$/\1\2/' Makefile.in || die
}
src_configure() {
econf $(use_enable static-libs static)
}
src_install() {
default
use doc && dohtml doc/html/*
# Keeping .la files in purpose, see: http://bugs.gentoo.org/409125
find "${ED}" -name '*.la' -exec sed -i -e "/^dependency_libs/s:=.*:='':" {} +
}

@ -1,34 +1,42 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dvssl/dvssl-0.6.1.ebuild,v 1.2 2010/04/12 19:21:01 maekke Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dvssl/dvssl-0.6.1.ebuild,v 1.3 2012/03/21 10:21:29 ssuominen Exp $
EAPI=4
DESCRIPTION="Provides a simple interface to OpenSSL"
HOMEPAGE="http://tinf2.vub.ac.be/~dvermeir/software/dv/dvssl/html/"
SRC_URI="http://tinf2.vub.ac.be/~dvermeir/software/dv/${PN}/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE="doc"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc static-libs"
DEPEND="dev-libs/openssl
dev-libs/dvnet
dev-libs/dvutil"
DEPEND="dev-libs/openssl:0
>=dev-libs/dvnet-0.9.24
>=dev-libs/dvutil-1.0.10-r2"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
DOCS="AUTHORS ChangeLog" # NEWS and README are useless
sed -i 's|^\(SUBDIRS =.*\)doc\(.*\)$|\1\2|' Makefile.in || \
die "sed Makefile.in failed"
src_prepare() {
sed -e 's:libcrypto.a:libcrypto.so:' -e 's:libssl.a:libssl.so:' -i configure || die
sed -e 's|^\(SUBDIRS =.*\)doc\(.*\)$|\1\2|' -i Makefile.in || die
}
src_configure() {
econf $(use_enable static-libs static)
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog NEWS README
default
if use doc ; then
if use doc; then
doman doc/man/*/*.[1-9]
dohtml -r doc/html/*
fi
# Keeping .la files in purpose, see: http://bugs.gentoo.org/409125
find "${ED}" -name '*.la' -exec sed -i -e "/^dependency_libs/s:=.*:='':" {} +
}

@ -1,32 +1,39 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dvthread/dvthread-0.13.4.ebuild,v 1.2 2010/04/12 19:21:55 maekke Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dvthread/dvthread-0.13.4.ebuild,v 1.3 2012/03/21 10:28:46 ssuominen Exp $
EAPI=2
EAPI=4
DESCRIPTION="Classes for threads and monitors, wrapped around the posix thread library"
SRC_URI="http://tinf2.vub.ac.be/~dvermeir/software/dv/${PN}/download/${P}.tar.gz"
HOMEPAGE="http://tinf2.vub.ac.be/~dvermeir/software/dv/dvthread/html/"
SRC_URI="http://tinf2.vub.ac.be/~dvermeir/software/dv/${PN}/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE="doc"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc static-libs"
RDEPEND=">=dev-libs/dvutil-1.0.10-r2"
DEPEND="${RDEPEND}"
DEPEND=">=dev-libs/dvutil-1.0.5"
DOCS="AUTHORS ChangeLog NEWS"
src_prepare() {
sed -i \
-e 's:dvthread doc m4:dvthread m4:' \
Makefile.in || die
sed -i -e 's:dvthread doc m4:dvthread m4:' Makefile.in || die
}
src_configure() {
econf $(use_enable static-libs static)
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS
default
if use doc; then
doman doc/man/man3/*.3
dohtml -r doc/html/*
fi
# Keeping .la files in purpose, see: http://bugs.gentoo.org/409125
find "${ED}" -name '*.la' -exec sed -i -e "/^dependency_libs/s:=.*:='':" {} +
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dvutil/dvutil-1.0.10-r1.ebuild,v 1.1 2012/02/25 12:42:09 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dvutil/dvutil-1.0.10-r2.ebuild,v 1.1 2012/03/21 10:04:11 ssuominen Exp $
EAPI=4
inherit autotools eutils
@ -35,6 +35,8 @@ src_configure() {
src_install() {
default
use static-libs || rm -f "${ED}"usr/lib*/lib*.la
use doc && dohtml -r doc/html/*
# Keeping .la files in purpose, see: http://bugs.gentoo.org/409125
find "${ED}" -name '*.la' -exec sed -i -e "/^dependency_libs/s:=.*:='':" {} +
}

@ -1,39 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dvutil/dvutil-1.0.10.ebuild,v 1.6 2010/04/16 15:01:02 ranger Exp $
EAPI=2
inherit autotools eutils
DESCRIPTION="C++ classes for files, dates, property lists, reference counted pointers, number conversion etc."
HOMEPAGE="http://tinf2.vub.ac.be/~dvermeir/software/dv/dvutil/html/"
SRC_URI="http://tinf2.vub.ac.be/~dvermeir/software/dv/${PN}/download/${P}.tar.gz
mirror://gentoo/${P}-asneeded.patch.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc ~sparc x86"
IUSE="doc ssl"
RDEPEND="ssl? ( dev-libs/openssl )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_prepare() {
epatch "${WORKDIR}"/${P}-asneeded.patch
eautoreconf
}
src_configure() {
econf \
$(use_with ssl)
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README
if use doc; then
dohtml -r doc/html/*
fi
}

@ -1,2 +1,3 @@
DIST libzeitgeist-0.3.12.tar.gz 516407 RMD160 1a06ef5408bd59faf7a920c7dfa73d22df460967 SHA1 b0081f7925501b59e1d3dd1eb24f881def046aae SHA256 4a97b95c2847e3e63dcc9163df44f41816be105d8463868fdaff7887470b7490
DIST libzeitgeist-0.3.14.tar.gz 524548 RMD160 dcc9bc9ecdc72298c0292d23125d55bfa43429a5 SHA1 f0263de97e2f7375495b50f6594cc9c381d714ed SHA256 e9b94614738d390aeb939c0833c8f969e3707457e6a6392ea521a6263b836080
DIST libzeitgeist-0.3.16.tar.gz 518119 RMD160 cea1accc212bcc523648c9a5665947cf51c98e55 SHA1 7d3f048539c13178d699e9b1c42656640451e03b SHA256 73f1d3fc15d3b498c840fed52b1df3fe65e641e19121b32e48f7302f25e51390

@ -0,0 +1,38 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libzeitgeist/libzeitgeist-0.3.16.ebuild,v 1.1 2012/03/21 06:28:24 jlec Exp $
EAPI=4
AUTOTOOLS_AUTORECONF=true
inherit autotools-utils eutils versionator
MY_PV=$(get_version_component_range 1-2)
DESCRIPTION="Client library to interact with zeitgeist"
HOMEPAGE="http://launchpad.net/libzeitgeist/"
SRC_URI="http://launchpad.net/libzeitgeist/${MY_PV}/${PV}/+download/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="static-libs"
CDEPEND="dev-libs/glib:2"
RDEPEND="${CDEPEND}
gnome-extra/zeitgeist"
DEPEND="${CDEPEND}
dev-util/gtk-doc
dev-util/pkgconfig"
src_prepare() {
sed \
-e "s:doc/libzeitgeist:doc/${PF}:" \
-i Makefile.am || die
# FIXME: This is the unique test failing
sed \
-e '/TEST_PROGS += test-log/d' \
-i tests/Makefile.am || die
autotools-utils_src_prepare
}

@ -1 +1,2 @@
DIST libzip-0.10.1.tar.gz 849678 RMD160 14ad1f43af2bd6be705fc9bb2ef947d2890b915a SHA1 8e55cef976bc6b4232dee03847dfe89366e01b3c SHA256 a7cdb5112004db5147f330f16c0f0e732922c342b9f0cda422c45e254590b617
DIST libzip-0.10.tar.gz 849790 RMD160 84a9f0602dba2c2a75d6b9dc52c0000c103f4429 SHA1 0425e8fc4966f78198f3067c52646518a50d21c7 SHA256 b7afa964e2115cf9d72e90537b7fb4928232f2c3173439fa5e04814f28ebd7d2

@ -0,0 +1,48 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libzip/libzip-0.10.1.ebuild,v 1.1 2012/03/21 11:22:35 johu Exp $
EAPI=4
MY_P=${P/_}
inherit autotools-utils
DESCRIPTION="Library for manipulating zip archives"
HOMEPAGE="http://www.nih.at/libzip/"
SRC_URI="http://www.nih.at/libzip/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
IUSE="static-libs"
DEPEND="sys-libs/zlib"
RDEPEND="${DEPEND}"
DOCS=( NEWS README THANKS AUTHORS )
S=${WORKDIR}/${MY_P}
PATCHES=(
"${FILESDIR}/${PN}-0.10_rc1-fix_headers.patch"
"${FILESDIR}/${PN}-0.10-fix_pkgconfig.patch"
)
AUTOTOOLS_IN_SOURCE_BUILD=1
src_prepare() {
autotools-utils_src_prepare
# run due to fix_headers patch
AT_NOELIBTOOLIZE=yes eautoreconf
#elibtoolize # FreeBSD .so version
# fix test return state
sed -i \
-e 's:19/2:19/0:' \
regress/open_nonarchive.test || die
}
src_install() {
autotools-utils_src_install
remove_libtool_files all
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/matrixssl/matrixssl-3.2.2.ebuild,v 1.1 2011/10/10 16:22:35 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/matrixssl/matrixssl-3.2.2.ebuild,v 1.2 2012/03/21 06:06:22 ssuominen Exp $
EAPI=4
inherit toolchain-funcs
@ -9,7 +9,7 @@ MY_P=${P//./-}-open
DESCRIPTION="embedded SSL implementation"
HOMEPAGE="http://www.matrixssl.org/"
SRC_URI="http://dev.gentoo.org/~ssuominen/${MY_P}.tgz"
SRC_URI="mirror://gentoo/${MY_P}.tgz"
LICENSE="GPL-2"
SLOT="0"

@ -1,3 +1,4 @@
DIST childprocess-0.2.3.gem 17408 RMD160 c4f41fa6a8e7d2093e77d7f6e6ac4dfe9162b0d6 SHA1 40e2c8d51c91d3232da81e0a6df0464f4ef70dbf SHA256 64ab4839220fb985447dfe06e8dece6f374467d243db431de33b5e28307674f6
DIST childprocess-0.2.5.gem 18432 RMD160 c0729c1c8182db17f018f9549b6743489fb181b8 SHA1 9d7d52432810c988dd0b62b79c400e10b08424a5 SHA256 830acc97dc2578e18fde267bc0d2fc1553c9f214df035cd84520ec7c0d42fcd6
DIST childprocess-0.3.0.gem 24064 RMD160 8b4dd08baeb10ba32181ef60bdb5f51650af5403 SHA1 5e1b0184c63614a186b146ce4b4470f4ed94fe34 SHA256 647979c03843e420e138925f405162a164b9431f24cde5a5e444d4c0a6357daf
DIST childprocess-0.3.1.gem 24064 RMD160 f89b5590d3b9679ef81b9cf28a05e5179b255f7e SHA1 dbd4feb522b430e88a39b8d4bd67af478fe4a9dc SHA256 b4f0a56790e1a6a41d24c6f12cec2467b87b178e538946e27a13a1cf77bf135e

@ -0,0 +1,34 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/childprocess/childprocess-0.3.1.ebuild,v 1.1 2012/03/21 06:43:04 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ree18 jruby"
RUBY_FAKEGEM_TASK_TEST="spec"
RUBY_FAKEGEM_TASK_DOC="yard"
RUBY_FAKEGEM_EXTRADOC="README.md"
RUBY_FAKEGEM_GEMSPEC="childprocess.gemspec"
inherit ruby-fakegem
DESCRIPTION="A simple and reliable solution for controlling external programs running in the background."
HOMEPAGE="https://github.com/jarib/childprocess"
LICENSE="MIT"
SLOT="2"
KEYWORDS="~amd64 ~x86"
IUSE=""
ruby_add_bdepend "test? ( dev-ruby/rspec:2 )"
ruby_add_bdepend "doc? ( dev-ruby/yard )"
ruby_add_rdepend "virtual/ruby-ffi"
all_ruby_prepare() {
# Remove bundler support
rm Gemfile || die
sed -i -e "/[Bb]undler/d" Rakefile || die
}

@ -1,9 +1,9 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/log4r/log4r-1.1.10.ebuild,v 1.1 2012/01/03 07:18:51 graaff Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/log4r/log4r-1.1.10.ebuild,v 1.2 2012/03/21 06:47:56 graaff Exp $
EAPI="2"
USE_RUBY="ruby18"
USE_RUBY="ruby18 ruby19"
RUBY_FAKEGEM_TASK_DOC=""

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.124 2012/03/20 15:32:02 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.126 2012/03/21 08:19:22 ssuominen Exp $
# @ECLASS: autotools.eclass
# @MAINTAINER:
@ -37,11 +37,13 @@ inherit eutils libtool
# @INTERNAL
# @DESCRIPTION:
# CONSTANT!
# The latest major version/slot of automake available on each arch.
# The latest major version/slot of automake available on each arch. #312315
# If a newer version is stable on any arch, and is NOT reflected in this list,
# then circular dependencies may arise during emerge @system bootstraps.
# If you want to force a newer minor version, you can specify the correct
# WANT value by using a colon: <PV>[:<WANT_AUTOMAKE>]
# Do NOT change this variable in your ebuilds!
_LATEST_AUTOMAKE='1.11'
_LATEST_AUTOMAKE=( 1.11.1:1.11 )
_automake_atom="sys-devel/automake"
_autoconf_atom="sys-devel/autoconf"
@ -50,7 +52,7 @@ if [[ -n ${WANT_AUTOMAKE} ]]; then
none) _automake_atom="" ;; # some packages don't require automake at all
# if you change the "latest" version here, change also autotools_run_tool
# this MUST reflect the latest stable major version for each arch!
latest) _automake_atom="|| ( `printf '=sys-devel/automake-%s* ' ${_LATEST_AUTOMAKE}` )" ;;
latest) _automake_atom="|| ( `printf '>=sys-devel/automake-%s ' ${_LATEST_AUTOMAKE[@]/%:*}` )" ;;
*) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;;
esac
export WANT_AUTOMAKE
@ -345,10 +347,10 @@ autotools_env_setup() {
# possible order problems, see bug #270010 as an example.
if [[ ${WANT_AUTOMAKE} == "latest" ]]; then
local pv
for pv in ${_LATEST_AUTOMAKE} ; do
for pv in ${_LATEST_AUTOMAKE[@]/#*:} ; do
# has_version respects ROOT, but in this case, we don't want it to,
# thus "ROOT=/" prefix:
ROOT=/ has_version "=sys-devel/automake-${pv}*" && export WANT_AUTOMAKE="$pv"
ROOT=/ has_version "=sys-devel/automake-${pv}*" && export WANT_AUTOMAKE="${pv}"
done
[[ ${WANT_AUTOMAKE} == "latest" ]] && \
die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE}"

@ -1,13 +1,13 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-misc/nyancat/nyancat-0_pre20120302.ebuild,v 1.1 2012/03/02 04:25:04 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/games-misc/nyancat/nyancat-0_pre20120302.ebuild,v 1.2 2012/03/21 06:02:48 ssuominen Exp $
EAPI=2
inherit games
DESCRIPTION="Nyan Cat Telnet Server"
HOMEPAGE="http://miku.acm.uiuc.edu/ http://github.com/klange/nyancat"
SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.bz2"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="UoI-NCSA"
SLOT="0"

@ -1,2 +1,3 @@
DIST zeitgeist-datahub-0.7.0.tar.gz 156896 RMD160 ebd09b23583879f26f90baf453da279941e6a09f SHA1 b17d1f0040edf7cf1677226b104655f4e8b5e97f SHA256 08d2db7475de88bd952c0ded3248d0e86916abb1b8b4201b5d7def31359e5ab5
DIST zeitgeist-datahub-0.8.1.tar.gz 188135 RMD160 b69a276ae38d23d2e338493d37a1fb63ebeb39cb SHA1 105be436207cc2b919ca1f38accf4b6757d7f065 SHA256 229785c7b8b099687b01d82ef4f8ea8a4b0917f6ae3aac36d46ae582a916abf1
DIST zeitgeist-datahub-0.8.2.tar.gz 190924 RMD160 9ea747bf71b6ccd9e726ca4fe859026d216cc5d0 SHA1 62f156521baa8b0aaed472441ff2421d0ff03075 SHA256 f58524b89713d1fd811b749ccc1e1e795cb5dcb2dae897d05d012761ce2baab5

@ -0,0 +1,35 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/zeitgeist-datahub/zeitgeist-datahub-0.8.2.ebuild,v 1.1 2012/03/21 06:31:14 jlec Exp $
EAPI=4
inherit autotools-utils versionator
MY_PV=$(get_version_component_range 1-2)
DESCRIPTION="Provides passive plugins to insert events into zeitgeist"
HOMEPAGE="http://launchpad.net/zeitgeist-datahub"
SRC_URI="http://launchpad.net/zeitgeist-datahub/${MY_PV}/${PV}/+download/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="download"
CDEPEND="
dev-libs/libzeitgeist
dev-libs/glib:2
x11-libs/gtk+:2
dev-lang/vala:0.12"
RDEPEND="${CDEPEND}
gnome-extra/zeitgeist"
DEPEND="${CDEPEND}
dev-util/pkgconfig"
src_configure() {
local myeconfargs=(
$(use_enable download downloads-monitor)
VALAC=$(type -P valac-0.12)
)
autotools-utils_src_configure
}

@ -114,6 +114,59 @@ DIST thunderbird-10.0.1-vi.xpi 435883 RMD160 183cd49b6ba18682f6f791b80e3af6edd1d
DIST thunderbird-10.0.1-zh-CN.xpi 431232 RMD160 ad8d720b09f9e5bb17382fb97685e288dac61549 SHA1 b4f11e265badc289e8ae744630d2bd2275281d69 SHA256 bee5179bdfa1e4a4fe33c672b3ef739976a8e98f76d36ec4b0bc90ae9b0a9cfc
DIST thunderbird-10.0.1-zh-TW.xpi 431824 RMD160 31082a472e9319a26b70db7b22a284873025d6e6 SHA1 acacd4d35f0fbf6f118635aa0e128429c63879a7 SHA256 dbb66409f91fae123ade2b64925705857e7b16042037e27c300af36ed33f9be8
DIST thunderbird-10.0.1.source.tar.bz2 97758544 RMD160 5162a1ea33851b9edb96452ff318aec348ef9b98 SHA1 884b8a09d27c0bac62775a3d7524150e6e9ebca2 SHA256 1ccbbe31d848486ca16a5eb475eac8e384c1abd3ffd10241f423e14456662ccd
DIST thunderbird-10.0.3esr-ar.xpi 441462 RMD160 5c766a06764de46f12f047de4f1f25d291a0fd68 SHA1 5173b44d9e4af36fcb9c0fe37c0cdd907ecc7e56 SHA256 35cb4a50b24558d44a9473b0a247e7228e9e06c77ccd59398a09bd4e2aa4bcf2
DIST thunderbird-10.0.3esr-ast.xpi 362706 RMD160 0a7df1c5dd8909448b4079116cc2892e0a2f65d1 SHA1 f48f456c2bf5df19f62b581fdbdb4ff4f3660469 SHA256 db64f4f9e7475ac97a0f080628a423bcd7a65b25c7cd5e5f2a4aa6ddd0b6e6c9
DIST thunderbird-10.0.3esr-be.xpi 397804 RMD160 a8d3b420a96afc93213f242530e336f4b1b32f19 SHA1 964ded2493cf768eb693708dbcfec62470bf2b7e SHA256 45faed1033a3538ec7356e12e0b582b93aae781f30284e3200b3b0425e8cebc1
DIST thunderbird-10.0.3esr-bg.xpi 460809 RMD160 fd4061d239a98f4ca0d864f13ea3299cf5b58e22 SHA1 9eb4dab0338d8f75349f26252d3c3955f13b20a7 SHA256 26e58d2f89d59cc7e65546acc436d610f04ccc3088524b4fcc414e0ae93e9691
DIST thunderbird-10.0.3esr-bn-BD.xpi 478143 RMD160 df293cb84829807e6e51a30395f6f5cfdd8429c2 SHA1 0a6c05efa2358f6deebe82d533163e5c78636621 SHA256 1e9154a8a27cc2da50800b64119756aafcbf7613dcda26caa1389c30c5df7e49
DIST thunderbird-10.0.3esr-br.xpi 415523 RMD160 c118cfaebbc95102e042d4bb0e1286be29da7823 SHA1 794529023fc6b37313601a9fee72b134a593d8cc SHA256 90986fed08d865c1228565b431a52a144c6ee691f9e84ef791f2a0e06435b4cc
DIST thunderbird-10.0.3esr-ca.xpi 416065 RMD160 3e482f95c406d97c0f9ef136b27413e925ad2391 SHA1 b03b01dd57e8e19eaaea9e46664697ed77fa8757 SHA256 40dc4bf050f5f94f6f32a8bde6eec69525dbeca29c6c09803174a974018ddd8b
DIST thunderbird-10.0.3esr-cs.xpi 419415 RMD160 21308e984ed636b861edbaee90c44eede3fe9c00 SHA1 f4417276bb32b6bdeea6e4b83b77e57a9919bb64 SHA256 38e3e5a0744e1d2af582742cdc78b0264db653f29285ed9c7357f7cefec80676
DIST thunderbird-10.0.3esr-da.xpi 363372 RMD160 89f5a4fd469ed472359c69c9987e5db9a3944f6b SHA1 e1f0528add0e1ed17f2118febc7a6efd81bdb3f2 SHA256 dc9e5f1e9fb9c20cb2c0bd0688ad0338add337e787251e6f1303709d0df25b79
DIST thunderbird-10.0.3esr-de.xpi 418263 RMD160 396885741b0230f817e46519b22cc38f1d0a4401 SHA1 db44c84e519f76dd9702ce6e324c640506519230 SHA256 c00b4dd2d236161a7c3d789b6950c6ae8981a3ca98c7aef02184f5d7be7d53a9
DIST thunderbird-10.0.3esr-el.xpi 404863 RMD160 a65de47b384d874fd149362eabebe7e5f25dfd79 SHA1 beec71eea4eaa00f625218f4cd29259d31cc78ef SHA256 d1a8c7724db8b2afa25b0d1bae506c1cdbd79ebbb2f07eb1c67e99ead7471800
DIST thunderbird-10.0.3esr-en-GB.xpi 391739 RMD160 50270f7d170718d8b94fa2da644824fa6700e405 SHA1 e3a94d4b06a327bfaed83b9d052eca2da3860727 SHA256 e005bc85a3dff4f7f49b948e05e316d593ab6bd2032b35ad53e62cb237aace97
DIST thunderbird-10.0.3esr-es-AR.xpi 410723 RMD160 9bc1bc7bcf65e646203581694050e70fd7d376ca SHA1 2f0e4bbfe84cb50d37b114e226b7a1c73c698242 SHA256 e825057b315c26a6d3762acf7511408ca4adbbdae9c06b2b1f3f66b1e13cef0e
DIST thunderbird-10.0.3esr-es-ES.xpi 355140 RMD160 73ca0164653e7d4c1e670924cd329d0cabe4283b SHA1 f42ab8c8d769140956428f37a30bf98f955a8bba SHA256 39c0057e14359acdd4355f44ca7d4a2fa5d1594a95f8b0367d3dfbeaedd51c03
DIST thunderbird-10.0.3esr-et.xpi 410720 RMD160 282efdcf6f2d773e4cb0b6241b880ac8adc80edb SHA1 f95dc6a3eef35548392f9c219abf65de2f22ad91 SHA256 22081871d97c4e4017bd7633c8e99c87e89d478d828b8af7ab0fed262be39f65
DIST thunderbird-10.0.3esr-eu.xpi 406383 RMD160 1aec69844a5dc77a389ff8ad0e62763b2c10f946 SHA1 571d9e896a42ee0871eb9150dc0fb9a0286dbae5 SHA256 d184c996c336ecc6ab93c821e8fbc5a69154210e8ee6a44a9824093cf1ec4d6e
DIST thunderbird-10.0.3esr-fi.xpi 411925 RMD160 02753d79fb8d6caeea42a70bc0862706f6636a91 SHA1 9f4453a05a2374757795fce1735dfc094ed2b8e1 SHA256 b18c9ee4d136af05a7bc01c47522ba7bf2526859e0475c845d507d76e2f3c160
DIST thunderbird-10.0.3esr-fr.xpi 414745 RMD160 c51bd4b55993f47bff4b90112f4d4c25fc974b93 SHA1 2a7507494bedf3a49e116be81b1d97772b9721bd SHA256 53b23cead071ee75fb9277280ace903a56739ea03ce51a6290f7c24d2c193bd9
DIST thunderbird-10.0.3esr-fy-NL.xpi 413981 RMD160 25817216c0bcdbcce9b87c059d85ee95309b7e49 SHA1 6fcb73582bbc0869da7f150745c2772adae2cf03 SHA256 80e9b13ce9668f9973e3352c692c40175ae931960848a97f4895922d63e35f62
DIST thunderbird-10.0.3esr-ga-IE.xpi 423257 RMD160 3b0c4c816fd920d88219be611e6d7f2d4e5fa5a4 SHA1 e4eab0f1b859ef21a4c4d44409722b215b5bc06a SHA256 efea50cfed12ec8d5fd744073479156af6b1a7faddd447dd892a052c270b4211
DIST thunderbird-10.0.3esr-gd.xpi 425871 RMD160 77db9904061c72dc3095b1cd75f591997f6a72eb SHA1 9c20661e06ec9b384ff79b534405fd18f54b9d19 SHA256 47e67ad2c85b9f018b65d1d1d08f609fcef39d61a287f2e5a4cc8d9e49716c32
DIST thunderbird-10.0.3esr-gl.xpi 409226 RMD160 0e60a2fd20b984f0640e6e3c1d54121cf86afa86 SHA1 79612ce375674e77d330c1d46c3c9c0e8cfcf716 SHA256 1851262d60689f70d272cafdaa75d6fa0a34e1c694c0d391f3b420ef232ddfa5
DIST thunderbird-10.0.3esr-he.xpi 439203 RMD160 2285511a2f968aee32a9700fec62e3636a7a0aab SHA1 a1a014de3a9fd8cf619b60417f830479fcddd3f3 SHA256 de0f654e12f9576b614b0ed64117fa28f7b7c2f707870308036012683ffd1925
DIST thunderbird-10.0.3esr-hu.xpi 426354 RMD160 86ed3ea80639bafd428ce3ff87d0155dba013f46 SHA1 bc57d9530f69daac63edfa7e40f472e071f8494a SHA256 572807030037168bba5f9d2ac857d303c683105f1fa2ccaf3487f3e4e8d5c950
DIST thunderbird-10.0.3esr-id.xpi 400407 RMD160 460cd418f9c358a43cddbb824646bb5c3f9e0157 SHA1 c581ee59241cd44cda6cdd69a5651dc6367e612b SHA256 02c85622aae7f19bc7fd69e815f7cc4dfb3fe2fda8e437bbd101488d1a397d06
DIST thunderbird-10.0.3esr-is.xpi 412631 RMD160 d9e3109fc4b29e37f5234dbe8f5a94bb5faf979f SHA1 4c0c800bf4c7b86742f8f046e384a4dd04657014 SHA256 f5137a07f033cdca54acc326020d2d372196cd79b147986081a09eef32645c82
DIST thunderbird-10.0.3esr-it.xpi 347630 RMD160 3754a356746835cfe54c532fbc233b3e1b6a3dcb SHA1 f486a007a04cdc2a0374e07265cd1df24ff0273c SHA256 403b69429ad951529bc46d0beae23ef0724815f3c39290db59d128cd5dd47804
DIST thunderbird-10.0.3esr-ja.xpi 459027 RMD160 6e122190a12062df22929673c55da8ce8535cb65 SHA1 e0ed5f05d64b8bdd57710e9feeb19338baf214b0 SHA256 f0300add69719084fdca5112068fbf208b1b570f366b7e22159aa8b3bea58926
DIST thunderbird-10.0.3esr-ko.xpi 372009 RMD160 1a4db202fe07ca200601f4fb3986f619e60b5b37 SHA1 f0f2fd8ca9d7c458eaa04e391bbbc4b9826be332 SHA256 802fb0df904c074e436de03e0b1418feab512995b4310c8d8391f3c7257f1815
DIST thunderbird-10.0.3esr-lt.xpi 531018 RMD160 72bec6a45094d092d12db638f12508f849b8b9c5 SHA1 cf7529a9a7bbea4d95ca49aefb82da1ae5326f23 SHA256 a76b1b20c92b22d0a8fa63f7ac8a890283d3861b17a75f910f58f91e9e71f93c
DIST thunderbird-10.0.3esr-nb-NO.xpi 407726 RMD160 b3354040e92b4327d154fda444087f9328070f5d SHA1 14a27b79ea1b773fc46e7052bbd239c370953303 SHA256 98256461574f7aa06199500afd48a0700e5dd76072d0f175d5346f763dfd329b
DIST thunderbird-10.0.3esr-nl.xpi 407981 RMD160 2b66573f164620b146f47fd37168c4f5b9c5b318 SHA1 366f067ed17b83e67559e58a8ba12f8093f8a9b2 SHA256 81cf4c679fda285400ba2ed8043a546132acd50b82863de15312a66eb72b2d6e
DIST thunderbird-10.0.3esr-nn-NO.xpi 409455 RMD160 22e47f02ed42cf42fa1661190649cc1e75aaca72 SHA1 c786a22c96e9a54b95baac1b569912a3b1391225 SHA256 dd4ccb6e3a3660e9ef3e331a953ca2e96ff12ade94d7ddff024595b3a2702d2f
DIST thunderbird-10.0.3esr-pa-IN.xpi 450327 RMD160 70b6ced9a7d99975788d5b436233818412d3ee22 SHA1 cc74f6884e4d6a8e38d5ca6ceeaa264e4b4eab2b SHA256 01500b2af03f93b03f790cb440506b8137974cd095dccd802b0a3f29114e008c
DIST thunderbird-10.0.3esr-pl.xpi 393574 RMD160 b4c32a67fec29657306d533148b15e0cfc51eaee SHA1 d2cb7c1f0e09f947bb5c756bb40fa97e07d3d216 SHA256 07810903b8aa75d0378f8a3a790b6fe8097952a2b0e239b9033e58fccc2b68d3
DIST thunderbird-10.0.3esr-pt-BR.xpi 417225 RMD160 e7b4b3b071a4ad2437ac3638c4cb2f6bfcad2295 SHA1 2b343b7a8c58ce77e60b00b80e9223a0ac5cf125 SHA256 781061abb5bb55ed5b49b6b659c560830d191f36eeb052420b91287d1cc77e64
DIST thunderbird-10.0.3esr-pt-PT.xpi 414262 RMD160 f4be67df75769d3ff60d3198d39bf5e6e596cf93 SHA1 c558a9de2468ead21d13b1727f7017246105890b SHA256 aa0425c45464ecfc94c5912a5020760e37f235c5ff8657c0375087c6232054ce
DIST thunderbird-10.0.3esr-rm.xpi 414704 RMD160 ac2e492c6c3805877fbd3790820e5e52e2763103 SHA1 71ccff387ecff4350fb74a76b07f5bb70a86f742 SHA256 1ba0594b7029d4c9b2b239cc52d6bc3b861cf5c20d02dd2d17046b924d647fee
DIST thunderbird-10.0.3esr-ro.xpi 441291 RMD160 9e35baa05201237cc2c1cb5ac8e4b9f3cfda15ac SHA1 9516ce0f6dc1833a505cd64de24956d19e88bf3d SHA256 5099002ac5b2bd85461f770f5077ee48c3568d1c5bf2aa1be0d58cfba5e28f6d
DIST thunderbird-10.0.3esr-ru.xpi 411631 RMD160 795f046262d66b9adb4410186b20f519473a5951 SHA1 1cb44cbc5ea23a82ad4c2e66c14007734c2a2923 SHA256 ec610eac0811a68b0dbc1014915ffe2f2eef6db1ac1680683c1e2a6b5127ac59
DIST thunderbird-10.0.3esr-si.xpi 456604 RMD160 2b35fc0605d03483f06da5b2c63b6629a6200054 SHA1 b7edd6bd63036bab9c98e9325f1c25d66f307b45 SHA256 0e0bfa36032aefd3a391d0388e1f90eddc14957112189132045b476ec5dcb58d
DIST thunderbird-10.0.3esr-sk.xpi 425026 RMD160 9b011b68a4840833de5aba2deaa8c00f3de70bdf SHA1 e7dd716f0fd6aaeebf652032587fd15aea502a0e SHA256 4ead646b5aead9d4478c7340c6daf49ffcf82a8b134dbf7286e131e9297a0cca
DIST thunderbird-10.0.3esr-sl.xpi 410428 RMD160 f94b8586a08d836c81f30abca7c873b46b1bde24 SHA1 a40588e761cdee8b56d2a9969f5089733fed65d6 SHA256 a32141c4df379da4ba6f408d05e384590088f5d51e3bd5a092a246663a1aa0cd
DIST thunderbird-10.0.3esr-sq.xpi 360476 RMD160 5ed0af642adc10c408a865cb68d55934c3551946 SHA1 25df1e106ee131f43e051b4b6bbb666d3512964e SHA256 a74763ebaf9572e8916ef4251540fc9626a9c29b4269b9cfa61e9b13fca02194
DIST thunderbird-10.0.3esr-sr.xpi 460274 RMD160 081e2ad0678e3e36e60046f703b723a35beaef42 SHA1 3dc9aeaba7c22e35f7ada3f9940aba5fe48d0811 SHA256 86c59990e4abd1186768724176ad28516e623e70af8291f102c19670030a7ce0
DIST thunderbird-10.0.3esr-sv-SE.xpi 478278 RMD160 2416ce0cc4cbb5a4d559dec1681017b645388ce7 SHA1 6088edd98ae1a55ea24f887d1372fffa5e765c86 SHA256 6665a49e1d1fce0676f1d9b68d13c2db10457c7e1b73fa8b9f2f729ddb9d175e
DIST thunderbird-10.0.3esr-ta-LK.xpi 475715 RMD160 aed9401e1d7fa3a7db466f31b9f9643056bee7b0 SHA1 983f7e5228a4e55e0ed0a6429dca0fd894a6a447 SHA256 2ed073ee939f6f85fcccf064d7d71a4838b713dc5fe3b54254369e797c4e495d
DIST thunderbird-10.0.3esr-tr.xpi 418206 RMD160 54faa3f326f08b1d6261b0713184e230bc69adc7 SHA1 6f1ea50a0faed292a4a81d6ec2e5b5d53a04e7c1 SHA256 96ed93aea3ea42ad1aeef8fc30f3b54a5b2efb4b219a35959864231e510e64cb
DIST thunderbird-10.0.3esr-uk.xpi 463922 RMD160 d39ad39da90c06158b417be8f8806144971ed63b SHA1 9a493fb19e22b21dbb58cf757e0958585e76a7c4 SHA256 8ab1d49cc57f3f367e94852e4ef78fdb08471dad89bcc59e005a6ba1cba9dcaf
DIST thunderbird-10.0.3esr-vi.xpi 435882 RMD160 2ea48f13c119dc4bf7310f8008a4a5e72d6fc5f1 SHA1 8f86e864381c08a56f47e7a74784305c9c8dc767 SHA256 a1e287e688ec2c8b6b715064f693c73c44f526654b2cfc2ff3ddcd7f4789e1eb
DIST thunderbird-10.0.3esr-zh-CN.xpi 431232 RMD160 6617c84511d2753dbe00cd56181f2c5dbeb55227 SHA1 372ffe54885713e80a0080145b66434a9ab38a70 SHA256 b7c0077f9188f862866a4b36b7f9aa1e19a0350b86e9196908404f0206e79854
DIST thunderbird-10.0.3esr-zh-TW.xpi 431824 RMD160 5649ecb95f2233b743b8b9c41b3cafc06097da03 SHA1 cde708d712327858cc077fcc075942e7a3a1d074 SHA256 bc6f06aa0bedf72f326a9f525f17c0828fb7569ccf45d891487f189c4d1d5a8e
DIST thunderbird-10.0.3esr.source.tar.bz2 97709099 RMD160 d04e24f4fd50b2aab923d25e44fa59b3dbef2404 SHA1 d348e4b630750685556811279f876ba885ba28b3 SHA256 297d8b5992007e2ba112a5796ca4468ea48ec2304930676ae173234035eff134
DIST thunderbird-10.0.source.tar.bz2 97700962 RMD160 cd3acaf16e38fe4a1f04badedb50db1cdb51c29e SHA1 4765446295a20cc3b4d73a7bc244d19011136581 SHA256 ea5d3df1227f0c344224eeaf4b24c12391425b9746515e784875edd6863ebcfd
DIST thunderbird-11.0-ar.xpi 441216 RMD160 899f5287bfdfa5a6af02bbf27c7d915663d1342d SHA1 3e5a7c2649484787dd3002c3ebb25c3c3a81acdf SHA256 30fa17d2c6237d22670466dc21c7b1c01370fe98e9a48c385affc87c168110a6
DIST thunderbird-11.0-ast.xpi 362423 RMD160 bc98f7985b8bc38dbe8afd8bff21113db9ecf106 SHA1 f194cf28af94485e8da91b727bf3f56c0f012729 SHA256 80e5ac8b08dbf8c14d1b0fe14cf015b1d72a10238772071d84b3a3c898a6d40b

@ -0,0 +1,294 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird/thunderbird-10.0.3.ebuild,v 1.1 2012/03/21 05:24:43 nirbheek Exp $
EAPI="3"
WANT_AUTOCONF="2.1"
MOZ_ESR="1"
# This list can be updated using scripts/get_langs.sh from the mozilla overlay
MOZ_LANGS=(ar ast be bg bn-BD br ca cs da de el en en-GB en-US es-AR es-ES et eu fi
fr fy-NL ga-IE gd gl he hu id is it ja ko lt nb-NO nl nn-NO pa-IN pl pt-BR pt-PT
rm ro ru si sk sl sq sr sv-SE ta-LK tr uk vi zh-CN zh-TW)
# Convert the ebuild version to the upstream mozilla version, used by mozlinguas
MOZ_PV="${PV/_beta/b}"
# ESR releases have slightly version numbers
if [[ ${MOZ_ESR} == 1 ]]; then
MOZ_PV="${MOZ_PV}esr"
fi
MOZ_P="${PN}-${MOZ_PV}"
# Enigmail version
EMVER="1.3.5"
# Upstream ftp release URI that's used by mozlinguas.eclass
# We don't use the http mirror because it deletes old tarballs.
MOZ_FTP_URI="ftp://ftp.mozilla.org/pub/${PN}/releases/"
inherit flag-o-matic toolchain-funcs mozconfig-3 makeedit multilib autotools pax-utils python check-reqs nsplugins mozlinguas
DESCRIPTION="Thunderbird Mail Client"
HOMEPAGE="http://www.mozilla.com/en-US/thunderbird/"
KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
SLOT="0"
LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )"
IUSE="bindist gconf +crashreporter +crypt +ipc +lightning +minimal mozdom +webm"
PATCH="thunderbird-10.0-patches-0.1"
PATCHFF="firefox-10.0-patches-0.6"
SRC_URI="${SRC_URI}
${MOZ_FTP_URI}${MOZ_PV}/source/${MOZ_P}.source.tar.bz2
crypt? ( http://www.mozilla-enigmail.org/download/source/enigmail-${EMVER}.tar.gz )
http://dev.gentoo.org/~anarchy/mozilla/patchsets/${PATCH}.tar.xz
http://dev.gentoo.org/~anarchy/mozilla/patchsets/${PATCHFF}.tar.xz"
ASM_DEPEND=">=dev-lang/yasm-1.1"
RDEPEND=">=sys-devel/binutils-2.16.1
>=dev-libs/nss-3.13.1
>=dev-libs/nspr-4.8.8
>=dev-libs/glib-2.26
crashreporter? ( net-misc/curl )
gconf? ( >=gnome-base/gconf-1.2.1:2 )
media-libs/libpng[apng]
>=x11-libs/cairo-1.10
>=x11-libs/pango-1.14.0
>=x11-libs/gtk+-2.14
webm? ( >=media-libs/libvpx-1.0.0
media-libs/alsa-lib )
virtual/libffi
!x11-plugins/enigmail
system-sqlite? ( >=dev-db/sqlite-3.7.7.1[fts3,secure-delete,unlock-notify,debug=] )
crypt? ( || (
( >=app-crypt/gnupg-2.0
|| (
app-crypt/pinentry[gtk]
app-crypt/pinentry[qt4]
)
)
=app-crypt/gnupg-1.4*
) )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
webm? ( x86? ( ${ASM_DEPEND} )
amd64? ( ${ASM_DEPEND} ) )"
if [[ ${MOZ_ESR} == 1 ]]; then
S="${WORKDIR}/comm-esr${PV%%.*}"
else
S="${WORKDIR}/comm-release"
fi
pkg_setup() {
moz_pkgsetup
export MOZILLA_DIR="${S}/mozilla"
if ! use bindist ; then
elog "You are enabling official branding. You may not redistribute this build"
elog "to any users on your network or the internet. Doing so puts yourself into"
elog "a legal problem with Mozilla Foundation"
elog "You can disable it by emerging ${PN} _with_ the bindist USE-flag"
elog
fi
# Ensure we have enough disk space to compile
CHECKREQS_DISK_BUILD="4G"
check-reqs_pkg_setup
}
src_unpack() {
unpack ${A}
# Unpack language packs
mozlinguas_src_unpack
}
src_prepare() {
# Apply our Thunderbird patchset
EPATCH_SUFFIX="patch" \
EPATCH_FORCE="yes" \
epatch "${WORKDIR}/thunderbird"
# Apply our patchset from firefox to thunderbird as well
pushd "${S}"/mozilla &>/dev/null || die
EPATCH_SUFFIX="patch" \
EPATCH_FORCE="yes" \
epatch "${WORKDIR}/firefox"
popd &>/dev/null || die
if use crypt ; then
mv "${WORKDIR}"/enigmail "${S}"/mailnews/extensions/enigmail
cd "${S}"
fi
#Fix compilation with curl-7.21.7 bug 376027
sed -e '/#include <curl\/types.h>/d' \
-i "${S}"/mozilla/toolkit/crashreporter/google-breakpad/src/common/linux/http_upload.cc \
-i "${S}"/mozilla/toolkit/crashreporter/google-breakpad/src/common/linux/libcurl_wrapper.cc \
-i "${S}"/mozilla/config/system-headers \
-i "${S}"/mozilla/js/src/config/system-headers || die "Sed failed"
# Allow user to apply any additional patches without modifing ebuild
epatch_user
eautoreconf
cd "${S}"/mozilla
eautoconf
}
src_configure() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}"
MEXTENSIONS="default"
####################################
#
# mozconfig, CFLAGS and CXXFLAGS setup
#
####################################
mozconfig_init
mozconfig_config
# It doesn't compile on alpha without this LDFLAGS
use alpha && append-ldflags "-Wl,--no-relax"
mozconfig_annotate '' --prefix="${EPREFIX}"/usr
mozconfig_annotate '' --libdir="${EPREFIX}"/usr/$(get_libdir)
mozconfig_annotate '' --enable-extensions="${MEXTENSIONS}"
mozconfig_annotate '' --with-default-mozilla-five-home="${EPREFIX}${MOZILLA_FIVE_HOME}"
mozconfig_annotate '' --with-user-appdir=.thunderbird
mozconfig_annotate '' --with-system-png
mozconfig_annotate '' --enable-system-ffi
mozconfig_annotate '' --target="${CTARGET:-${CHOST}}"
# Use enable features
mozconfig_use_enable lightning calendar
mozconfig_use_enable gconf
# Bug #72667
if use mozdom; then
MEXTENSIONS="${MEXTENSIONS},inspector"
fi
# Use an objdir to keep things organized.
echo "mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/tbird" >> "${S}"/.mozconfig
# Finalize and report settings
mozconfig_final
####################################
#
# Configure and build
#
####################################
# Disable no-print-directory
MAKEOPTS=${MAKEOPTS/--no-print-directory/}
if [[ $(gcc-major-version) -lt 4 ]]; then
append-cxxflags -fno-stack-protector
elif [[ $(gcc-major-version) -gt 4 || $(gcc-minor-version) -gt 3 ]]; then
if use amd64 || use x86; then
append-flags -mno-avx
fi
fi
}
src_compile() {
CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getLD)" \
MOZ_MAKE_FLAGS="${MAKEOPTS}" \
emake -f client.mk || die
# Only build enigmail extension if crypt enabled.
if use crypt ; then
cd "${S}"/mailnews/extensions/enigmail || die
./makemake -r 2&> /dev/null
cd "${S}"/tbird/mailnews/extensions/enigmail
emake || die "make enigmail failed"
emake xpi || die "make enigmail xpi failed"
fi
}
src_install() {
declare MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}"
declare emid
local obj_dir="tbird"
cd "${S}/${obj_dir}"
# Copy our preference before omnijar is created.
cp "${FILESDIR}"/thunderbird-gentoo-default-prefs-1.js-1 \
"${S}/${obj_dir}/mozilla/dist/bin/defaults/pref/all-gentoo.js" || die
# Pax mark xpcshell for hardened support, only used for startupcache creation.
pax-mark m "${S}"/${obj_dir}/mozilla/dist/bin/xpcshell
emake DESTDIR="${D}" install || die "emake install failed"
# Install language packs
mozlinguas_src_install
if ! use bindist; then
newicon "${S}"/other-licenses/branding/thunderbird/content/icon48.png thunderbird-icon.png
domenu "${FILESDIR}"/icon/${PN}.desktop
else
newicon "${S}"/mail/branding/aurora/content/icon48.png thunderbird-icon-unbranded.png
newmenu "${FILESDIR}"/icon/${PN}-unbranded.desktop \
${PN}.desktop
sed -i -e "s:Mozilla\ Thunderbird:Lanikai:g" \
"${ED}"/usr/share/applications/${PN}.desktop
fi
if use crypt ; then
cd "${T}" || die
unzip "${S}"/${obj_dir}/mozilla/dist/bin/enigmail*.xpi install.rdf || die
emid=$(sed -n '/<em:id>/!d; s/.*\({.*}\).*/\1/; p; q' install.rdf)
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid} || die
cd "${D}"${MOZILLA_FIVE_HOME}/extensions/${emid} || die
unzip "${S}"/${obj_dir}/mozilla/dist/bin/enigmail*.xpi || die
fi
if use lightning ; then
emid="{a62ef8ec-5fdc-40c2-873c-223b8a6925cc}"
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid}
cd "${ED}"${MOZILLA_FIVE_HOME}/extensions/${emid}
unzip "${S}"/${obj_dir}/mozilla/dist/xpi-stage/gdata-provider.xpi
emid="calendar-timezones@mozilla.org"
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid}
cd "${ED}"${MOZILLA_FIVE_HOME}/extensions/${emid}
unzip "${S}"/${obj_dir}/mozilla/dist/xpi-stage/calendar-timezones.xpi
emid="{e2fda1a4-762b-4020-b5ad-a41df1933103}"
dodir ${MOZILLA_FIVE_HOME}/extensions/${emid}
cd "${ED}"${MOZILLA_FIVE_HOME}/extensions/${emid}
unzip "${S}"/${obj_dir}/mozilla/dist/xpi-stage/lightning.xpi
# Fix mimetype so it shows up as a calendar application in GNOME 3
# This requires that the .desktop file was already installed earlier
sed -e "s:^\(MimeType=\):\1text/calendar;:" \
-e "s:^\(Categories=\):\1Calendar;:" \
-i "${ED}"/usr/share/applications/${PN}.desktop
fi
pax-mark m "${ED}"/${MOZILLA_FIVE_HOME}/thunderbird-bin
share_plugins_dir
if use minimal; then
rm -rf "${ED}"/usr/include "${ED}${MOZILLA_FIVE_HOME}"/{idl,include,lib,sdk} || \
die "Failed to remove sdk and headers"
fi
}
pkg_postinst() {
elog
elog "If you are experience problems with plugins please issue the"
elog "following command : rm \${HOME}/.thunderbird/*/extensions.sqlite ,"
elog "then restart thunderbird"
}

@ -1,9 +1,10 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird/thunderbird-11.0.ebuild,v 1.1 2012/03/16 02:16:06 anarchy Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird/thunderbird-11.0.ebuild,v 1.2 2012/03/21 05:24:43 nirbheek Exp $
EAPI="3"
WANT_AUTOCONF="2.1"
MOZ_ESR="0"
# This list can be updated using scripts/get_langs.sh from the mozilla overlay
MOZ_LANGS=(ar ast be bg bn-BD br ca cs da de el en en-GB en-US es-AR es-ES et eu fi
@ -12,6 +13,10 @@ rm ro ru si sk sl sq sr sv-SE ta-LK tr uk vi zh-CN zh-TW)
# Convert the ebuild version to the upstream mozilla version, used by mozlinguas
MOZ_PV="${PV/_beta/b}"
# ESR releases have slightly version numbers
if [[ ${MOZ_ESR} == 1 ]]; then
MOZ_PV="${MOZ_PV}esr"
fi
MOZ_P="${PN}-${MOZ_PV}"
# Enigmail version
@ -75,7 +80,11 @@ DEPEND="${RDEPEND}
if [[ ${PV} =~ beta ]]; then
S="${WORKDIR}/comm-beta"
else
S="${WORKDIR}/comm-release"
if [[ ${MOZ_ESR} == 1 ]]; then
S="${WORKDIR}/comm-esr${PV%%.*}"
else
S="${WORKDIR}/comm-release"
fi
fi
pkg_setup() {

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/fbida/fbida-2.08.ebuild,v 1.9 2012/01/31 14:48:26 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/media-gfx/fbida/fbida-2.08.ebuild,v 1.10 2012/03/21 06:04:14 ssuominen Exp $
EAPI=2
@ -9,7 +9,7 @@ inherit eutils toolchain-funcs
DESCRIPTION="Image viewers for the framebuffer console (fbi) and X11 (ida)."
HOMEPAGE="http://linux.bytesex.org/fbida/"
SRC_URI="http://dl.bytesex.org/releases/${PN}/${P}.tar.gz
http://dev.gentoo.org/~ssuominen/ida.png.bz2" #370901
mirror://gentoo/ida.png.bz2" #370901
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ppc ppc64 sh sparc x86"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/xv/xv-3.10a-r16.ebuild,v 1.10 2012/03/15 18:45:04 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/media-gfx/xv/xv-3.10a-r16.ebuild,v 1.11 2012/03/21 06:27:25 ssuominen Exp $
EAPI=4
inherit eutils flag-o-matic
@ -10,7 +10,7 @@ DESCRIPTION="An interactive image manipulation program that supports a wide vari
HOMEPAGE="http://www.trilon.com/xv/index.html http://www.sonic.net/~roelofs/greg_xv.html"
SRC_URI="mirror://sourceforge/png-mng/${P}-jumbo-patches-${JUMBOV}.tar.gz
ftp://ftp.cis.upenn.edu/pub/xv/${P}.tar.gz
http://dev.gentoo.org/~ssuominen/${P}.png.bz2"
mirror://gentoo/${P}.png.bz2"
LICENSE="xv"
SLOT="0"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/faac/faac-1.28-r1.ebuild,v 1.12 2012/01/07 00:38:25 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/faac/faac-1.28-r1.ebuild,v 1.13 2012/03/21 09:03:36 ssuominen Exp $
EAPI=2
inherit autotools eutils
@ -14,7 +14,7 @@ SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd"
IUSE="static-libs"
RDEPEND=">=media-libs/libmp4v2-1.9.0"
RDEPEND="~media-libs/libmp4v2-1.9.1"
DEPEND="${RDEPEND}"
src_prepare() {

@ -0,0 +1,101 @@
--- a/src/type1/t1load.c
+++ b/src/type1/t1load.c
@@ -71,6 +71,13 @@
#include "t1errors.h"
+#ifdef FT_CONFIG_OPTION_INCREMENTAL
+#define IS_INCREMENTAL ( face->root.internal->incremental_interface != 0 )
+#else
+#define IS_INCREMENTAL 0
+#endif
+
+
/*************************************************************************/
/* */
/* The macro FT_COMPONENT is used in trace mode. It is an implicit */
@@ -1030,7 +1037,8 @@
static int
read_binary_data( T1_Parser parser,
FT_Long* size,
- FT_Byte** base )
+ FT_Byte** base,
+ FT_Bool incremental )
{
FT_Byte* cur;
FT_Byte* limit = parser->root.limit;
@@ -1065,8 +1073,12 @@
}
}
- FT_ERROR(( "read_binary_data: invalid size field\n" ));
- parser->root.error = T1_Err_Invalid_File_Format;
+ if( !incremental )
+ {
+ FT_ERROR(( "read_binary_data: invalid size field\n" ));
+ parser->root.error = T1_Err_Invalid_File_Format;
+ }
+
return 0;
}
@@ -1387,16 +1399,17 @@
FT_Byte* base;
- /* If the next token isn't `dup' we are done. */
- if ( parser->root.cursor + 4 < parser->root.limit &&
- ft_strncmp( (char*)parser->root.cursor, "dup", 3 ) != 0 )
+ /* If we are out of data, or if the next token isn't `dup', */
+ /* we are done. */
+ if ( parser->root.cursor + 4 >= parser->root.limit ||
+ ft_strncmp( (char*)parser->root.cursor, "dup", 3 ) != 0 )
break;
T1_Skip_PS_Token( parser ); /* `dup' */
idx = T1_ToInt( parser );
- if ( !read_binary_data( parser, &size, &base ) )
+ if ( !read_binary_data( parser, &size, &base, IS_INCREMENTAL ) )
return;
/* The binary string is followed by one token, e.g. `NP' */
@@ -1582,7 +1595,7 @@
cur++; /* skip `/' */
len = parser->root.cursor - cur;
- if ( !read_binary_data( parser, &size, &base ) )
+ if ( !read_binary_data( parser, &size, &base, IS_INCREMENTAL ) )
return;
/* for some non-standard fonts like `Optima' which provides */
@@ -1871,7 +1884,7 @@
parser->root.cursor = start_binary;
- if ( !read_binary_data( parser, &s, &b ) )
+ if ( !read_binary_data( parser, &s, &b, IS_INCREMENTAL ) )
return T1_Err_Invalid_File_Format;
have_integer = 0;
}
@@ -1884,7 +1897,7 @@
parser->root.cursor = start_binary;
- if ( !read_binary_data( parser, &s, &b ) )
+ if ( !read_binary_data( parser, &s, &b, IS_INCREMENTAL ) )
return T1_Err_Invalid_File_Format;
have_integer = 0;
}
@@ -2160,9 +2173,7 @@
type1->subrs_len = loader.subrs.lengths;
}
-#ifdef FT_CONFIG_OPTION_INCREMENTAL
- if ( !face->root.internal->incremental_interface )
-#endif
+ if ( !IS_INCREMENTAL )
if ( !loader.charstrings.init )
{
FT_ERROR(( "T1_Open_Face: no `/CharStrings' array in face\n" ));

@ -0,0 +1,137 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/freetype/freetype-2.4.9-r1.ebuild,v 1.1 2012/03/21 04:24:43 dirtyepic Exp $
EAPI="4"
inherit autotools eutils flag-o-matic libtool multilib
DESCRIPTION="A high-quality and portable font engine"
HOMEPAGE="http://www.freetype.org/"
SRC_URI="mirror://sourceforge/freetype/${P/_/}.tar.bz2
utils? ( mirror://sourceforge/freetype/ft2demos-${PV}.tar.bz2 )
doc? ( mirror://sourceforge/freetype/${PN}-doc-${PV}.tar.bz2 )"
LICENSE="FTL GPL-2"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
IUSE="X auto-hinter bindist bzip2 debug doc fontforge static-libs utils"
DEPEND="sys-libs/zlib
bzip2? ( app-arch/bzip2 )
X? ( x11-libs/libX11
x11-libs/libXau
x11-libs/libXdmcp )"
RDEPEND="${DEPEND}"
src_prepare() {
enable_option() {
sed -i -e "/#define $1/a #define $1" \
include/freetype/config/ftoption.h \
|| die "unable to enable option $1"
}
disable_option() {
sed -i -e "/#define $1/ { s:^:/*:; s:$:*/: }" \
include/freetype/config/ftoption.h \
|| die "unable to disable option $1"
}
if ! use bindist; then
# See http://freetype.org/patents.html
# ClearType is covered by several Microsoft patents in the US
enable_option FT_CONFIG_OPTION_SUBPIXEL_RENDERING
fi
if use auto-hinter; then
disable_option TT_CONFIG_OPTION_BYTECODE_INTERPRETER
enable_option TT_CONFIG_OPTION_UNPATENTED_HINTING
fi
if use debug; then
enable_option FT_DEBUG_LEVEL_TRACE
enable_option FT_DEBUG_MEMORY
fi
disable_option FT_CONFIG_OPTION_OLD_INTERNALS
epatch "${FILESDIR}"/${PN}-2.3.2-enable-valid.patch
# Fixed upstream for next version
epatch "${FILESDIR}"/${P}-type1-incremental.patch
if use utils; then
cd "${WORKDIR}/ft2demos-${PV}"
sed -i -e "s:\.\.\/freetype2$:../freetype-${PV}:" Makefile || die
# Disable tests needing X11 when USE="-X". (bug #177597)
if ! use X; then
sed -i -e "/EXES\ +=\ ftdiff/ s:^:#:" Makefile || die
fi
fi
if use prefix; then
cd "${S}"/builds/unix
eautoreconf
else
elibtoolize
fi
epunt_cxx
}
src_configure() {
append-flags -fno-strict-aliasing
type -P gmake &> /dev/null && export GNUMAKE=gmake
# we need non-/bin/sh to run configure
[[ -n ${CONFIG_SHELL} ]] && \
sed -i -e "1s:^#![[:space:]]*/bin/sh:#!$CONFIG_SHELL:" \
"${S}"/builds/unix/configure
econf \
$(use_enable static-libs static) \
$(use_with bzip2)
}
src_compile() {
emake
if use utils; then
cd "${WORKDIR}/ft2demos-${PV}"
# fix for Prefix, bug #339334
emake X11_PATH="${EPREFIX}/usr/$(get_libdir)"
fi
}
src_install() {
emake DESTDIR="${D}" install
dodoc ChangeLog README
dodoc docs/{CHANGES,CUSTOMIZE,DEBUG,*.txt,PROBLEMS,TODO}
use doc && dohtml -r docs/*
if use utils; then
rm "${WORKDIR}"/ft2demos-${PV}/bin/README
for ft2demo in ../ft2demos-${PV}/bin/*; do
./builds/unix/libtool --mode=install $(type -P install) -m 755 "$ft2demo" \
"${ED}"/usr/bin
done
fi
if use fontforge; then
# Probably fontforge needs less but this way makes things simplier...
einfo "Installing internal headers required for fontforge"
find src/truetype include/freetype/internal -name '*.h' | \
while read header; do
mkdir -p "${ED}/usr/include/freetype2/internal4fontforge/$(dirname ${header})"
cp ${header} "${ED}/usr/include/freetype2/internal4fontforge/$(dirname ${header})"
done
fi
}
pkg_postinst() {
elog "The TrueType bytecode interpreter is no longer patented and thus no"
elog "longer controlled by the bindist USE flag. Enable the auto-hinter"
elog "USE flag if you want the old USE="bindist" hinting behavior."
}

@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp4v2/libmp4v2-1.9.1.ebuild,v 1.16 2011/11/19 12:44:37 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp4v2/libmp4v2-1.9.1.ebuild,v 1.17 2012/03/21 09:02:13 ssuominen Exp $
EAPI=4
inherit multilib libtool
@ -16,7 +16,6 @@ IUSE="static-libs utils"
RDEPEND=""
DEPEND="utils? ( sys-apps/help2man )
!media-video/mpeg4ip
sys-apps/sed"
RESTRICT="test" # This will need dejagnu, and is only fixed in trunk.

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp4v2/libmp4v2-1.9.1_p479.ebuild,v 1.1 2011/11/19 12:44:37 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp4v2/libmp4v2-1.9.1_p479.ebuild,v 1.2 2012/03/21 09:01:18 ssuominen Exp $
EAPI=4
inherit libtool versionator
@ -13,7 +13,7 @@ SRC_URI="http://mp4v2.googlecode.com/files/${MY_P}.tar.bz2"
LICENSE="MPL-1.1"
SLOT="0"
#KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="static-libs test utils"
RDEPEND=""

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-1.0.0.ebuild,v 1.6 2012/03/10 16:57:32 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-1.0.0.ebuild,v 1.7 2012/03/21 11:28:26 ssuominen Exp $
EAPI=4
inherit multilib toolchain-funcs eutils
@ -50,6 +50,8 @@ src_configure() {
addpredict /usr/share/snmp/mibs/.index
tc-export CC
# http://bugs.gentoo.org/379659 http://gerrit.chromium.org/gerrit/#change,18142
LC_ALL=C \
./configure \
--prefix="${EPREFIX}"/usr \
--libdir="${EPREFIX}"/usr/$(get_libdir) \

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/tremor/tremor-0_pre20120120.ebuild,v 1.1 2012/01/20 19:51:10 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/tremor/tremor-0_pre20120120.ebuild,v 1.2 2012/03/21 06:58:06 ssuominen Exp $
# svn export http://svn.xiph.org/trunk/Tremor tremor-${PV}
@ -9,7 +9,7 @@ inherit autotools
DESCRIPTION="A fixed-point version of the Ogg Vorbis decoder (also known as libvorbisidec)"
HOMEPAGE="http://wiki.xiph.org/Tremor"
SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.xz"
SRC_URI="mirror://gentoo/${P}.tar.xz"
LICENSE="BSD"
SLOT="0"

@ -1,4 +1,4 @@
java? ( >=virtual/jdk-1.4 ) bluetooth? ( net-wireless/bluez ) gpm? ( >=sys-libs/gpm-1.20 ) iconv? ( virtual/libiconv ) icu? ( dev-libs/icu ) nls? ( virtual/libintl ) python? ( >=dev-python/pyrex-0.9.4.1 ) tcl? ( >=dev-lang/tcl-8.4.15 ) usb? ( virtual/libusb:0 ) X? ( x11-libs/libXaw ) ocaml? ( >=dev-ml/findlib-1.0.4-r1 ) java? ( >=dev-java/java-config-2.1.9-r1 ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
java? ( >=virtual/jdk-1.4 ) bluetooth? ( net-wireless/bluez ) gpm? ( >=sys-libs/gpm-1.20 ) iconv? ( virtual/libiconv ) icu? ( dev-libs/icu ) nls? ( virtual/libintl ) python? ( >=dev-python/pyrex-0.9.4.1 ) tcl? ( >=dev-lang/tcl-8.4.15 ) usb? ( virtual/libusb:0 ) X? ( x11-libs/libXaw ) ocaml? ( >=dev-ml/findlib-1.0.4-r1 ) java? ( >=dev-java/java-config-2.1.9-r1 ) || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
java? ( >=virtual/jre-1.4 ) bluetooth? ( net-wireless/bluez ) gpm? ( >=sys-libs/gpm-1.20 ) iconv? ( virtual/libiconv ) icu? ( dev-libs/icu ) nls? ( virtual/libintl ) python? ( >=dev-python/pyrex-0.9.4.1 ) tcl? ( >=dev-lang/tcl-8.4.15 ) usb? ( virtual/libusb:0 ) X? ( x11-libs/libXaw ) java? ( >=dev-java/java-config-2.1.9-r1 )
0
http://mielke.cc/brltty/releases/brltty-4.2.tar.gz

@ -1,4 +1,4 @@
>=app-text/sgmltools-lite-3.0.3-r9 || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=app-text/sgmltools-lite-3.0.3-r9 || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
0
mirror://sourceforge/epos/epos-2.5.37.tar.gz

@ -1,4 +1,4 @@
>=gnome-base/libbonobo-2 >=gnome-extra/at-spi-1.7.10:1 >=virtual/jdk-1.4 >=dev-util/pkgconfig-0.9 >=dev-java/java-config-2.1.9-r1 >=sys-apps/sed-4 || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=gnome-base/libbonobo-2 >=gnome-extra/at-spi-1.7.10:1 >=virtual/jdk-1.4 >=dev-util/pkgconfig-0.9 >=dev-java/java-config-2.1.9-r1 >=sys-apps/sed-4 || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=gnome-base/libbonobo-2 >=gnome-extra/at-spi-1.7.10:1 >=virtual/jre-1.4 >=dev-java/java-config-2.1.9-r1
0
mirror://gnome/sources/java-access-bridge/1.24/java-access-bridge-1.24.2.tar.bz2

@ -1,4 +1,4 @@
>=gnome-base/libbonobo-2 >=gnome-extra/at-spi-1.7.10:1 x11-apps/xprop >=virtual/jdk-1.4 >=dev-util/pkgconfig-0.9 >=dev-java/java-config-2.1.9-r1 >=sys-apps/sed-4 || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=gnome-base/libbonobo-2 >=gnome-extra/at-spi-1.7.10:1 x11-apps/xprop >=virtual/jdk-1.4 >=dev-util/pkgconfig-0.9 >=dev-java/java-config-2.1.9-r1 >=sys-apps/sed-4 || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=gnome-base/libbonobo-2 >=gnome-extra/at-spi-1.7.10:1 x11-apps/xprop >=virtual/jre-1.4 >=dev-java/java-config-2.1.9-r1
0
mirror://gnome/sources/java-access-bridge/1.26/java-access-bridge-1.26.0.tar.bz2

@ -1,4 +1,4 @@
>=gnome-base/libbonobo-2 >=gnome-extra/at-spi-1.7.10:1 >=virtual/jdk-1.4 >=dev-util/pkgconfig-0.9 >=dev-java/java-config-2.1.9-r1 >=sys-apps/sed-4 || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=gnome-base/libbonobo-2 >=gnome-extra/at-spi-1.7.10:1 >=virtual/jdk-1.4 >=dev-util/pkgconfig-0.9 >=dev-java/java-config-2.1.9-r1 >=sys-apps/sed-4 || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=gnome-base/libbonobo-2 >=gnome-extra/at-spi-1.7.10:1 >=virtual/jre-1.4 >=dev-java/java-config-2.1.9-r1
0
mirror://gnome/sources/java-access-bridge/1.6/java-access-bridge-1.6.0.tar.bz2

@ -1,4 +1,4 @@
dev-libs/dotconf >=dev-libs/glib-2 alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) espeak? ( app-accessibility/espeak ) flite? ( app-accessibility/flite ) nas? ( media-libs/nas ) pulseaudio? ( media-sound/pulseaudio ) dev-util/pkgconfig || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool python? ( =dev-lang/python-2* )
dev-libs/dotconf >=dev-libs/glib-2 alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) espeak? ( app-accessibility/espeak ) flite? ( app-accessibility/flite ) nas? ( media-libs/nas ) pulseaudio? ( media-sound/pulseaudio ) dev-util/pkgconfig || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool python? ( =dev-lang/python-2* )
dev-libs/dotconf >=dev-libs/glib-2 alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) espeak? ( app-accessibility/espeak ) flite? ( app-accessibility/flite ) nas? ( media-libs/nas ) pulseaudio? ( media-sound/pulseaudio ) python? ( =dev-lang/python-2* )
0
http://www.freebsoft.org/pub/projects/speechd/speech-dispatcher-0.7.1.tar.gz

@ -1,4 +1,4 @@
|| ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
|| ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
0
mirror://sourceforge/cmusphinx/sphinx2-0.6.tar.gz

@ -1,4 +1,4 @@
nls? ( sys-devel/gettext ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
nls? ( sys-devel/gettext ) || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
0
mirror://sourceforge/yasr/yasr-0.6.9.tar.gz

@ -1,4 +1,4 @@
dev-libs/btparser >=dev-libs/glib-2.21:2 dev-libs/libreport dev-libs/libxml2 dev-libs/nss sys-apps/dbus sys-fs/inotify-tools x11-libs/gtk+:2 x11-libs/libnotify app-text/asciidoc app-text/xmlto >=dev-util/intltool-0.35.0 >=dev-util/pkgconfig-0.9.0 >=sys-devel/gettext-0.17 || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) !<sys-apps/systemd-29-r4 !=sys-apps/systemd-37-r1
dev-libs/btparser >=dev-libs/glib-2.21:2 dev-libs/libreport dev-libs/libxml2 dev-libs/nss sys-apps/dbus sys-fs/inotify-tools x11-libs/gtk+:2 x11-libs/libnotify app-text/asciidoc app-text/xmlto >=dev-util/intltool-0.35.0 >=dev-util/pkgconfig-0.9.0 >=sys-devel/gettext-0.17 || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) !<sys-apps/systemd-29-r4 !=sys-apps/systemd-37-r1
dev-libs/btparser >=dev-libs/glib-2.21:2 dev-libs/libreport dev-libs/libxml2 dev-libs/nss sys-apps/dbus sys-fs/inotify-tools x11-libs/gtk+:2 x11-libs/libnotify app-arch/cpio dev-libs/elfutils sys-devel/gdb || ( =dev-lang/python-2.7* =dev-lang/python-2.6* )
0
https://fedorahosted.org/released/abrt/abrt-2.0.6.tar.gz

@ -1,4 +1,4 @@
>=dev-libs/btparser-0.16 >=dev-libs/glib-2.21:2 >=dev-libs/libreport-2.0.9 dev-libs/libxml2 dev-libs/nss sys-apps/dbus sys-fs/inotify-tools x11-libs/gtk+:2 x11-libs/libnotify app-text/asciidoc app-text/xmlto >=dev-util/intltool-0.35.0 >=dev-util/pkgconfig-0.9.0 >=sys-devel/gettext-0.17 || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) !<sys-apps/systemd-29-r4 !=sys-apps/systemd-37-r1
>=dev-libs/btparser-0.16 >=dev-libs/glib-2.21:2 >=dev-libs/libreport-2.0.9 dev-libs/libxml2 dev-libs/nss sys-apps/dbus sys-fs/inotify-tools x11-libs/gtk+:2 x11-libs/libnotify app-text/asciidoc app-text/xmlto >=dev-util/intltool-0.35.0 >=dev-util/pkgconfig-0.9.0 >=sys-devel/gettext-0.17 || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) !<sys-apps/systemd-29-r4 !=sys-apps/systemd-37-r1
>=dev-libs/btparser-0.16 >=dev-libs/glib-2.21:2 >=dev-libs/libreport-2.0.9 dev-libs/libxml2 dev-libs/nss sys-apps/dbus sys-fs/inotify-tools x11-libs/gtk+:2 x11-libs/libnotify app-arch/cpio dev-libs/elfutils >=sys-devel/gdb-7 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* )
0
https://fedorahosted.org/released/abrt/abrt-2.0.8.tar.gz

@ -1,4 +1,4 @@
fam? ( virtual/fam ) pcre? ( dev-libs/libpcre ) adns? ( net-libs/adns ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
fam? ( virtual/fam ) pcre? ( dev-libs/libpcre ) adns? ( net-libs/adns ) || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
fam? ( virtual/fam ) pcre? ( dev-libs/libpcre ) adns? ( net-libs/adns )
0
http://www.webta.org/apachetop/apachetop-0.12.6.tar.gz

@ -1,4 +1,4 @@
dev-libs/libpcre >=sys-apps/sed-4 || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
dev-libs/libpcre >=sys-apps/sed-4 || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
dev-libs/libpcre
0
mirror://gentoo/ccze-0.2.1.tar.gz

@ -1,4 +1,4 @@
dev-libs/libpcre sys-libs/ncurses >=sys-apps/sed-4 || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
dev-libs/libpcre sys-libs/ncurses >=sys-apps/sed-4 || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
dev-libs/libpcre sys-libs/ncurses
0
mirror://gentoo/ccze-0.2.1.tar.gz

@ -1,4 +1,4 @@
|| ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
|| ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
0
http://ftp.tux.org/pub/X-Windows/ftp.hungry.com/chrpath/chrpath-0.13.tar.gz

@ -1,4 +1,4 @@
dev-libs/libgcrypt sys-devel/libtool perl? ( dev-lang/perl[ithreads] ( || ( sys-devel/libperl[ithreads] >=sys-devel/libperl-5.10 ) ) ) collectd_plugins_apache? ( net-misc/curl ) collectd_plugins_ascent? ( net-misc/curl dev-libs/libxml2 ) collectd_plugins_bind? ( dev-libs/libxml2 ) collectd_plugins_curl? ( net-misc/curl ) collectd_plugins_curl_json? ( net-misc/curl dev-libs/yajl ) collectd_plugins_curl_xml? ( net-misc/curl dev-libs/libxml2 ) collectd_plugins_dbi? ( dev-db/libdbi ) collectd_plugins_dns? ( net-libs/libpcap ) collectd_plugins_gmond? ( sys-cluster/ganglia ) collectd_plugins_ipmi? ( >=sys-libs/openipmi-2.0.16-r1 ) collectd_plugins_iptables? ( >=net-firewall/iptables-1.4.9.1-r2 ) collectd_plugins_java? ( virtual/jre dev-java/java-config-wrapper ) collectd_plugins_libvirt? ( app-emulation/libvirt dev-libs/libxml2 ) collectd_plugins_memcachec? ( dev-libs/libmemcached ) collectd_plugins_mysql? ( >=virtual/mysql-5.0 ) collectd_plugins_netlink? ( >=sys-apps/iproute2-2.6.34 ) collectd_plugins_nginx? ( net-misc/curl ) collectd_plugins_notify_desktop? ( x11-libs/libnotify ) collectd_plugins_notify_email? ( >=net-libs/libesmtp-1.0.4 dev-libs/openssl ) collectd_plugins_nut? ( sys-power/nut ) collectd_plugins_onewire? ( sys-fs/owfs ) collectd_plugins_oracle? ( >=dev-db/oracle-instantclient-basic-11.2.0.1.0 ) collectd_plugins_perl? ( dev-lang/perl[ithreads] ( || ( sys-devel/libperl[ithreads] >=sys-devel/libperl-5.10 ) ) ) collectd_plugins_ping? ( net-libs/liboping ) collectd_plugins_postgresql? ( >=dev-db/postgresql-base-8.2 ) collectd_plugins_python? ( =dev-lang/python-2* ) collectd_plugins_routeros? ( net-libs/librouteros ) collectd_plugins_rrdcached? ( >=net-analyzer/rrdtool-1.4 ) collectd_plugins_rrdtool? ( >=net-analyzer/rrdtool-1.2.27 ) collectd_plugins_sensors? ( sys-apps/lm_sensors ) collectd_plugins_snmp? ( net-analyzer/net-snmp ) collectd_plugins_tokyotyrant? ( net-misc/tokyotyrant ) collectd_plugins_varnish? ( www-servers/varnish ) collectd_plugins_write_http? ( net-misc/curl ) kernel_FreeBSD? ( collectd_plugins_disk? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_interface? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_load? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_memory? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_swap? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_users? ( >=sys-libs/libstatgrab-0.16 ) ) dev-util/pkgconfig kernel_linux? ( collectd_plugins_vserver? ( sys-kernel/vserver-sources ) ) dev-lang/perl[-build] || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
dev-libs/libgcrypt sys-devel/libtool perl? ( dev-lang/perl[ithreads] ( || ( sys-devel/libperl[ithreads] >=sys-devel/libperl-5.10 ) ) ) collectd_plugins_apache? ( net-misc/curl ) collectd_plugins_ascent? ( net-misc/curl dev-libs/libxml2 ) collectd_plugins_bind? ( dev-libs/libxml2 ) collectd_plugins_curl? ( net-misc/curl ) collectd_plugins_curl_json? ( net-misc/curl dev-libs/yajl ) collectd_plugins_curl_xml? ( net-misc/curl dev-libs/libxml2 ) collectd_plugins_dbi? ( dev-db/libdbi ) collectd_plugins_dns? ( net-libs/libpcap ) collectd_plugins_gmond? ( sys-cluster/ganglia ) collectd_plugins_ipmi? ( >=sys-libs/openipmi-2.0.16-r1 ) collectd_plugins_iptables? ( >=net-firewall/iptables-1.4.9.1-r2 ) collectd_plugins_java? ( virtual/jre dev-java/java-config-wrapper ) collectd_plugins_libvirt? ( app-emulation/libvirt dev-libs/libxml2 ) collectd_plugins_memcachec? ( dev-libs/libmemcached ) collectd_plugins_mysql? ( >=virtual/mysql-5.0 ) collectd_plugins_netlink? ( >=sys-apps/iproute2-2.6.34 ) collectd_plugins_nginx? ( net-misc/curl ) collectd_plugins_notify_desktop? ( x11-libs/libnotify ) collectd_plugins_notify_email? ( >=net-libs/libesmtp-1.0.4 dev-libs/openssl ) collectd_plugins_nut? ( sys-power/nut ) collectd_plugins_onewire? ( sys-fs/owfs ) collectd_plugins_oracle? ( >=dev-db/oracle-instantclient-basic-11.2.0.1.0 ) collectd_plugins_perl? ( dev-lang/perl[ithreads] ( || ( sys-devel/libperl[ithreads] >=sys-devel/libperl-5.10 ) ) ) collectd_plugins_ping? ( net-libs/liboping ) collectd_plugins_postgresql? ( >=dev-db/postgresql-base-8.2 ) collectd_plugins_python? ( =dev-lang/python-2* ) collectd_plugins_routeros? ( net-libs/librouteros ) collectd_plugins_rrdcached? ( >=net-analyzer/rrdtool-1.4 ) collectd_plugins_rrdtool? ( >=net-analyzer/rrdtool-1.2.27 ) collectd_plugins_sensors? ( sys-apps/lm_sensors ) collectd_plugins_snmp? ( net-analyzer/net-snmp ) collectd_plugins_tokyotyrant? ( net-misc/tokyotyrant ) collectd_plugins_varnish? ( www-servers/varnish ) collectd_plugins_write_http? ( net-misc/curl ) kernel_FreeBSD? ( collectd_plugins_disk? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_interface? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_load? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_memory? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_swap? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_users? ( >=sys-libs/libstatgrab-0.16 ) ) dev-util/pkgconfig kernel_linux? ( collectd_plugins_vserver? ( sys-kernel/vserver-sources ) ) dev-lang/perl[-build] || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
dev-libs/libgcrypt sys-devel/libtool perl? ( dev-lang/perl[ithreads] ( || ( sys-devel/libperl[ithreads] >=sys-devel/libperl-5.10 ) ) ) collectd_plugins_apache? ( net-misc/curl ) collectd_plugins_ascent? ( net-misc/curl dev-libs/libxml2 ) collectd_plugins_bind? ( dev-libs/libxml2 ) collectd_plugins_curl? ( net-misc/curl ) collectd_plugins_curl_json? ( net-misc/curl dev-libs/yajl ) collectd_plugins_curl_xml? ( net-misc/curl dev-libs/libxml2 ) collectd_plugins_dbi? ( dev-db/libdbi ) collectd_plugins_dns? ( net-libs/libpcap ) collectd_plugins_gmond? ( sys-cluster/ganglia ) collectd_plugins_ipmi? ( >=sys-libs/openipmi-2.0.16-r1 ) collectd_plugins_iptables? ( >=net-firewall/iptables-1.4.9.1-r2 ) collectd_plugins_java? ( virtual/jre dev-java/java-config-wrapper ) collectd_plugins_libvirt? ( app-emulation/libvirt dev-libs/libxml2 ) collectd_plugins_memcachec? ( dev-libs/libmemcached ) collectd_plugins_mysql? ( >=virtual/mysql-5.0 ) collectd_plugins_netlink? ( >=sys-apps/iproute2-2.6.34 ) collectd_plugins_nginx? ( net-misc/curl ) collectd_plugins_notify_desktop? ( x11-libs/libnotify ) collectd_plugins_notify_email? ( >=net-libs/libesmtp-1.0.4 dev-libs/openssl ) collectd_plugins_nut? ( sys-power/nut ) collectd_plugins_onewire? ( sys-fs/owfs ) collectd_plugins_oracle? ( >=dev-db/oracle-instantclient-basic-11.2.0.1.0 ) collectd_plugins_perl? ( dev-lang/perl[ithreads] ( || ( sys-devel/libperl[ithreads] >=sys-devel/libperl-5.10 ) ) ) collectd_plugins_ping? ( net-libs/liboping ) collectd_plugins_postgresql? ( >=dev-db/postgresql-base-8.2 ) collectd_plugins_python? ( =dev-lang/python-2* ) collectd_plugins_routeros? ( net-libs/librouteros ) collectd_plugins_rrdcached? ( >=net-analyzer/rrdtool-1.4 ) collectd_plugins_rrdtool? ( >=net-analyzer/rrdtool-1.2.27 ) collectd_plugins_sensors? ( sys-apps/lm_sensors ) collectd_plugins_snmp? ( net-analyzer/net-snmp ) collectd_plugins_tokyotyrant? ( net-misc/tokyotyrant ) collectd_plugins_varnish? ( www-servers/varnish ) collectd_plugins_write_http? ( net-misc/curl ) kernel_FreeBSD? ( collectd_plugins_disk? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_interface? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_load? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_memory? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_swap? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_users? ( >=sys-libs/libstatgrab-0.16 ) ) collectd_plugins_syslog? ( virtual/logger ) dev-lang/perl[-build]
0
http://collectd.org/files/collectd-5.0.2.tar.bz2

@ -1,4 +1,4 @@
dev-libs/libgcrypt sys-devel/libtool perl? ( dev-lang/perl[ithreads] ( || ( sys-devel/libperl[ithreads] >=sys-devel/libperl-5.10 ) ) ) collectd_plugins_apache? ( net-misc/curl ) collectd_plugins_ascent? ( net-misc/curl dev-libs/libxml2 ) collectd_plugins_bind? ( dev-libs/libxml2 ) collectd_plugins_curl? ( net-misc/curl ) collectd_plugins_curl_json? ( net-misc/curl dev-libs/yajl ) collectd_plugins_curl_xml? ( net-misc/curl dev-libs/libxml2 ) collectd_plugins_dbi? ( dev-db/libdbi ) collectd_plugins_dns? ( net-libs/libpcap ) collectd_plugins_gmond? ( sys-cluster/ganglia ) collectd_plugins_ipmi? ( >=sys-libs/openipmi-2.0.16-r1 ) collectd_plugins_iptables? ( >=net-firewall/iptables-1.4.9.1-r2 ) collectd_plugins_java? ( virtual/jre dev-java/java-config-wrapper ) collectd_plugins_libvirt? ( app-emulation/libvirt dev-libs/libxml2 ) collectd_plugins_memcachec? ( dev-libs/libmemcached ) collectd_plugins_mysql? ( >=virtual/mysql-5.0 ) collectd_plugins_netlink? ( >=sys-apps/iproute2-2.6.34 ) collectd_plugins_nginx? ( net-misc/curl ) collectd_plugins_notify_desktop? ( x11-libs/libnotify ) collectd_plugins_notify_email? ( >=net-libs/libesmtp-1.0.4 dev-libs/openssl ) collectd_plugins_nut? ( sys-power/nut ) collectd_plugins_onewire? ( sys-fs/owfs ) collectd_plugins_oracle? ( >=dev-db/oracle-instantclient-basic-11.2.0.1.0 ) collectd_plugins_perl? ( dev-lang/perl[ithreads] ( || ( sys-devel/libperl[ithreads] >=sys-devel/libperl-5.10 ) ) ) collectd_plugins_ping? ( net-libs/liboping ) collectd_plugins_postgresql? ( >=dev-db/postgresql-base-8.2 ) collectd_plugins_python? ( =dev-lang/python-2* ) collectd_plugins_routeros? ( net-libs/librouteros ) collectd_plugins_rrdcached? ( >=net-analyzer/rrdtool-1.4 ) collectd_plugins_rrdtool? ( >=net-analyzer/rrdtool-1.2.27 ) collectd_plugins_sensors? ( sys-apps/lm_sensors ) collectd_plugins_snmp? ( net-analyzer/net-snmp ) collectd_plugins_tokyotyrant? ( net-misc/tokyotyrant ) collectd_plugins_varnish? ( www-servers/varnish ) collectd_plugins_write_http? ( net-misc/curl ) kernel_FreeBSD? ( collectd_plugins_disk? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_interface? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_load? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_memory? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_swap? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_users? ( >=sys-libs/libstatgrab-0.16 ) ) dev-util/pkgconfig kernel_linux? ( collectd_plugins_vserver? ( sys-kernel/vserver-sources ) ) dev-lang/perl[-build] || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
dev-libs/libgcrypt sys-devel/libtool perl? ( dev-lang/perl[ithreads] ( || ( sys-devel/libperl[ithreads] >=sys-devel/libperl-5.10 ) ) ) collectd_plugins_apache? ( net-misc/curl ) collectd_plugins_ascent? ( net-misc/curl dev-libs/libxml2 ) collectd_plugins_bind? ( dev-libs/libxml2 ) collectd_plugins_curl? ( net-misc/curl ) collectd_plugins_curl_json? ( net-misc/curl dev-libs/yajl ) collectd_plugins_curl_xml? ( net-misc/curl dev-libs/libxml2 ) collectd_plugins_dbi? ( dev-db/libdbi ) collectd_plugins_dns? ( net-libs/libpcap ) collectd_plugins_gmond? ( sys-cluster/ganglia ) collectd_plugins_ipmi? ( >=sys-libs/openipmi-2.0.16-r1 ) collectd_plugins_iptables? ( >=net-firewall/iptables-1.4.9.1-r2 ) collectd_plugins_java? ( virtual/jre dev-java/java-config-wrapper ) collectd_plugins_libvirt? ( app-emulation/libvirt dev-libs/libxml2 ) collectd_plugins_memcachec? ( dev-libs/libmemcached ) collectd_plugins_mysql? ( >=virtual/mysql-5.0 ) collectd_plugins_netlink? ( >=sys-apps/iproute2-2.6.34 ) collectd_plugins_nginx? ( net-misc/curl ) collectd_plugins_notify_desktop? ( x11-libs/libnotify ) collectd_plugins_notify_email? ( >=net-libs/libesmtp-1.0.4 dev-libs/openssl ) collectd_plugins_nut? ( sys-power/nut ) collectd_plugins_onewire? ( sys-fs/owfs ) collectd_plugins_oracle? ( >=dev-db/oracle-instantclient-basic-11.2.0.1.0 ) collectd_plugins_perl? ( dev-lang/perl[ithreads] ( || ( sys-devel/libperl[ithreads] >=sys-devel/libperl-5.10 ) ) ) collectd_plugins_ping? ( net-libs/liboping ) collectd_plugins_postgresql? ( >=dev-db/postgresql-base-8.2 ) collectd_plugins_python? ( =dev-lang/python-2* ) collectd_plugins_routeros? ( net-libs/librouteros ) collectd_plugins_rrdcached? ( >=net-analyzer/rrdtool-1.4 ) collectd_plugins_rrdtool? ( >=net-analyzer/rrdtool-1.2.27 ) collectd_plugins_sensors? ( sys-apps/lm_sensors ) collectd_plugins_snmp? ( net-analyzer/net-snmp ) collectd_plugins_tokyotyrant? ( net-misc/tokyotyrant ) collectd_plugins_varnish? ( www-servers/varnish ) collectd_plugins_write_http? ( net-misc/curl ) kernel_FreeBSD? ( collectd_plugins_disk? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_interface? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_load? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_memory? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_swap? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_users? ( >=sys-libs/libstatgrab-0.16 ) ) dev-util/pkgconfig kernel_linux? ( collectd_plugins_vserver? ( sys-kernel/vserver-sources ) ) dev-lang/perl[-build] || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
dev-libs/libgcrypt sys-devel/libtool perl? ( dev-lang/perl[ithreads] ( || ( sys-devel/libperl[ithreads] >=sys-devel/libperl-5.10 ) ) ) collectd_plugins_apache? ( net-misc/curl ) collectd_plugins_ascent? ( net-misc/curl dev-libs/libxml2 ) collectd_plugins_bind? ( dev-libs/libxml2 ) collectd_plugins_curl? ( net-misc/curl ) collectd_plugins_curl_json? ( net-misc/curl dev-libs/yajl ) collectd_plugins_curl_xml? ( net-misc/curl dev-libs/libxml2 ) collectd_plugins_dbi? ( dev-db/libdbi ) collectd_plugins_dns? ( net-libs/libpcap ) collectd_plugins_gmond? ( sys-cluster/ganglia ) collectd_plugins_ipmi? ( >=sys-libs/openipmi-2.0.16-r1 ) collectd_plugins_iptables? ( >=net-firewall/iptables-1.4.9.1-r2 ) collectd_plugins_java? ( virtual/jre dev-java/java-config-wrapper ) collectd_plugins_libvirt? ( app-emulation/libvirt dev-libs/libxml2 ) collectd_plugins_memcachec? ( dev-libs/libmemcached ) collectd_plugins_mysql? ( >=virtual/mysql-5.0 ) collectd_plugins_netlink? ( >=sys-apps/iproute2-2.6.34 ) collectd_plugins_nginx? ( net-misc/curl ) collectd_plugins_notify_desktop? ( x11-libs/libnotify ) collectd_plugins_notify_email? ( >=net-libs/libesmtp-1.0.4 dev-libs/openssl ) collectd_plugins_nut? ( sys-power/nut ) collectd_plugins_onewire? ( sys-fs/owfs ) collectd_plugins_oracle? ( >=dev-db/oracle-instantclient-basic-11.2.0.1.0 ) collectd_plugins_perl? ( dev-lang/perl[ithreads] ( || ( sys-devel/libperl[ithreads] >=sys-devel/libperl-5.10 ) ) ) collectd_plugins_ping? ( net-libs/liboping ) collectd_plugins_postgresql? ( >=dev-db/postgresql-base-8.2 ) collectd_plugins_python? ( =dev-lang/python-2* ) collectd_plugins_routeros? ( net-libs/librouteros ) collectd_plugins_rrdcached? ( >=net-analyzer/rrdtool-1.4 ) collectd_plugins_rrdtool? ( >=net-analyzer/rrdtool-1.2.27 ) collectd_plugins_sensors? ( sys-apps/lm_sensors ) collectd_plugins_snmp? ( net-analyzer/net-snmp ) collectd_plugins_tokyotyrant? ( net-misc/tokyotyrant ) collectd_plugins_varnish? ( www-servers/varnish ) collectd_plugins_write_http? ( net-misc/curl ) kernel_FreeBSD? ( collectd_plugins_disk? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_interface? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_load? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_memory? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_swap? ( >=sys-libs/libstatgrab-0.16 ) collectd_plugins_users? ( >=sys-libs/libstatgrab-0.16 ) ) collectd_plugins_syslog? ( virtual/logger ) dev-lang/perl[-build]
0
http://collectd.org/files/collectd-5.0.2.tar.bz2

@ -1,4 +1,4 @@
X? ( imlib? ( media-libs/imlib2 ) lua-cairo? ( >=dev-lua/toluapp-1.0.93 x11-libs/cairo[X] ) lua-imlib? ( >=dev-lua/toluapp-1.0.93 media-libs/imlib2 ) nvidia? ( media-video/nvidia-settings ) truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) x11-libs/libX11 x11-libs/libXdamage x11-libs/libXext audacious? ( >=media-sound/audacious-1.5 dev-libs/glib ) xmms2? ( media-sound/xmms2 ) ) curl? ( net-misc/curl ) eve? ( net-misc/curl dev-libs/libxml2 ) portmon? ( dev-libs/glib ) lua? ( >=dev-lang/lua-5.1 ) ncurses? ( sys-libs/ncurses ) rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib ) wifi? ( net-wireless/wireless-tools ) weather-metar? ( net-misc/curl ) weather-xoap? ( dev-libs/libxml2 net-misc/curl ) virtual/libiconv dev-util/pkgconfig || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
X? ( imlib? ( media-libs/imlib2 ) lua-cairo? ( >=dev-lua/toluapp-1.0.93 x11-libs/cairo[X] ) lua-imlib? ( >=dev-lua/toluapp-1.0.93 media-libs/imlib2 ) nvidia? ( media-video/nvidia-settings ) truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) x11-libs/libX11 x11-libs/libXdamage x11-libs/libXext audacious? ( >=media-sound/audacious-1.5 dev-libs/glib ) xmms2? ( media-sound/xmms2 ) ) curl? ( net-misc/curl ) eve? ( net-misc/curl dev-libs/libxml2 ) portmon? ( dev-libs/glib ) lua? ( >=dev-lang/lua-5.1 ) ncurses? ( sys-libs/ncurses ) rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib ) wifi? ( net-wireless/wireless-tools ) weather-metar? ( net-misc/curl ) weather-xoap? ( dev-libs/libxml2 net-misc/curl ) virtual/libiconv dev-util/pkgconfig || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
X? ( imlib? ( media-libs/imlib2 ) lua-cairo? ( >=dev-lua/toluapp-1.0.93 x11-libs/cairo[X] ) lua-imlib? ( >=dev-lua/toluapp-1.0.93 media-libs/imlib2 ) nvidia? ( media-video/nvidia-settings ) truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) x11-libs/libX11 x11-libs/libXdamage x11-libs/libXext audacious? ( >=media-sound/audacious-1.5 dev-libs/glib ) xmms2? ( media-sound/xmms2 ) ) curl? ( net-misc/curl ) eve? ( net-misc/curl dev-libs/libxml2 ) portmon? ( dev-libs/glib ) lua? ( >=dev-lang/lua-5.1 ) ncurses? ( sys-libs/ncurses ) rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib ) wifi? ( net-wireless/wireless-tools ) weather-metar? ( net-misc/curl ) weather-xoap? ( dev-libs/libxml2 net-misc/curl ) virtual/libiconv apcupsd? ( sys-power/apcupsd ) hddtemp? ( app-admin/hddtemp ) moc? ( media-sound/moc ) nano-syntax? ( app-editors/nano ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
0
mirror://sourceforge/conky/conky-1.8.1.tar.bz2

@ -1,4 +1,4 @@
X? ( imlib? ( media-libs/imlib2 ) lua-cairo? ( >=dev-lua/toluapp-1.0.93 x11-libs/cairo[X] ) lua-imlib? ( >=dev-lua/toluapp-1.0.93 media-libs/imlib2 ) nvidia? ( media-video/nvidia-settings ) truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) x11-libs/libX11 x11-libs/libXdamage x11-libs/libXext audacious? ( >=media-sound/audacious-1.5 dev-libs/glib ) xmms2? ( media-sound/xmms2 ) ) curl? ( net-misc/curl ) eve? ( net-misc/curl dev-libs/libxml2 ) portmon? ( dev-libs/glib ) lua? ( >=dev-lang/lua-5.1 ) ncurses? ( sys-libs/ncurses ) rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib ) wifi? ( net-wireless/wireless-tools ) weather-metar? ( net-misc/curl ) weather-xoap? ( dev-libs/libxml2 net-misc/curl ) virtual/libiconv dev-util/pkgconfig || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
X? ( imlib? ( media-libs/imlib2 ) lua-cairo? ( >=dev-lua/toluapp-1.0.93 x11-libs/cairo[X] ) lua-imlib? ( >=dev-lua/toluapp-1.0.93 media-libs/imlib2 ) nvidia? ( media-video/nvidia-settings ) truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) x11-libs/libX11 x11-libs/libXdamage x11-libs/libXext audacious? ( >=media-sound/audacious-1.5 dev-libs/glib ) xmms2? ( media-sound/xmms2 ) ) curl? ( net-misc/curl ) eve? ( net-misc/curl dev-libs/libxml2 ) portmon? ( dev-libs/glib ) lua? ( >=dev-lang/lua-5.1 ) ncurses? ( sys-libs/ncurses ) rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib ) wifi? ( net-wireless/wireless-tools ) weather-metar? ( net-misc/curl ) weather-xoap? ( dev-libs/libxml2 net-misc/curl ) virtual/libiconv dev-util/pkgconfig || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
X? ( imlib? ( media-libs/imlib2 ) lua-cairo? ( >=dev-lua/toluapp-1.0.93 x11-libs/cairo[X] ) lua-imlib? ( >=dev-lua/toluapp-1.0.93 media-libs/imlib2 ) nvidia? ( media-video/nvidia-settings ) truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) x11-libs/libX11 x11-libs/libXdamage x11-libs/libXext audacious? ( >=media-sound/audacious-1.5 dev-libs/glib ) xmms2? ( media-sound/xmms2 ) ) curl? ( net-misc/curl ) eve? ( net-misc/curl dev-libs/libxml2 ) portmon? ( dev-libs/glib ) lua? ( >=dev-lang/lua-5.1 ) ncurses? ( sys-libs/ncurses ) rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib ) wifi? ( net-wireless/wireless-tools ) weather-metar? ( net-misc/curl ) weather-xoap? ( dev-libs/libxml2 net-misc/curl ) virtual/libiconv apcupsd? ( sys-power/apcupsd ) hddtemp? ( app-admin/hddtemp ) moc? ( media-sound/moc ) nano-syntax? ( app-editors/nano ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
0
mirror://sourceforge/conky/conky-1.8.1.tar.bz2

@ -1,4 +1,4 @@
ssl? ( >=dev-libs/openssl-0.9.6g ) pam? ( virtual/pam ) tcpd? ( sys-apps/tcp-wrappers ) debug? ( dev-libs/dmalloc ) kerberos? ( virtual/krb5 net-libs/libgssglue ) ssl? ( dev-libs/openssl ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
ssl? ( >=dev-libs/openssl-0.9.6g ) pam? ( virtual/pam ) tcpd? ( sys-apps/tcp-wrappers ) debug? ( dev-libs/dmalloc ) kerberos? ( virtual/krb5 net-libs/libgssglue ) ssl? ( dev-libs/openssl ) || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
ssl? ( >=dev-libs/openssl-0.9.6g ) pam? ( virtual/pam ) tcpd? ( sys-apps/tcp-wrappers ) debug? ( dev-libs/dmalloc ) kerberos? ( virtual/krb5 net-libs/libgssglue ) pam? ( >=sys-auth/pambase-20080219.1 )
0
http://www.conserver.com/conserver-8.1.18.tar.gz

@ -1,4 +1,4 @@
|| ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
|| ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
0
http://cronolog.org/download/cronolog-1.6.2.tar.gz

@ -1,4 +1,4 @@
|| ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
|| ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
0
http://cronolog.org/download/cronolog-1.6.2.tar.gz

@ -1,4 +1,4 @@
dev-libs/libxml2 sys-devel/libtool iconv? ( virtual/libiconv ) test? ( dev-libs/libxml2[static-libs] ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
dev-libs/libxml2 sys-devel/libtool iconv? ( virtual/libiconv ) test? ( dev-libs/libxml2[static-libs] ) || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
dev-libs/libxml2
0
ftp://ftp.markus-raab.org/elektra/elektra-0.7.1.tar.gz

@ -1,4 +1,4 @@
sys-devel/autoconf || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool dev-vcs/subversion net-misc/rsync
sys-devel/autoconf || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool dev-vcs/subversion net-misc/rsync
>=app-admin/eselect-1.2.3
0

@ -1,4 +1,4 @@
|| ( net-nds/rpcbind >=net-nds/portmap-5b-r6 ) !app-admin/gamin || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
|| ( net-nds/rpcbind >=net-nds/portmap-5b-r6 ) !app-admin/gamin || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
|| ( net-nds/rpcbind >=net-nds/portmap-5b-r6 ) !app-admin/gamin
0
ftp://oss.sgi.com/projects/fam/download/stable/fam-2.7.0.tar.gz mirror://debian/pool/main/f/fam/fam_2.7.0-17.diff.gz

@ -1,4 +1,4 @@
>=dev-libs/glib-2:2 >=dev-libs/libgamin-0.1.10 !app-admin/fam !<app-admin/gamin-0.1.10 || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=dev-libs/glib-2:2 >=dev-libs/libgamin-0.1.10 !app-admin/fam !<app-admin/gamin-0.1.10 || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=dev-libs/glib-2:2 >=dev-libs/libgamin-0.1.10 !app-admin/fam !<app-admin/gamin-0.1.10
0
mirror://gnome/sources/gamin/0.1/gamin-0.1.10.tar.bz2 mirror://gentoo/gamin-0.1.9-freebsd.patch.bz2 http://pkgconfig.freedesktop.org/releases/pkg-config-0.26.tar.gz

@ -1,4 +1,4 @@
>=sys-libs/db-4.2 >=sys-libs/zlib-1.1.4 >=media-libs/libpng-1.2 >=media-libs/gd-1.8.3 dev-libs/geoip >=app-admin/webapp-config-1.50.15 || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=sys-libs/db-4.2 >=sys-libs/zlib-1.1.4 >=media-libs/libpng-1.2 >=media-libs/gd-1.8.3 dev-libs/geoip >=app-admin/webapp-config-1.50.15 || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=sys-libs/db-4.2 >=sys-libs/zlib-1.1.4 >=media-libs/libpng-1.2 >=media-libs/gd-1.8.3 dev-libs/geoip >=app-admin/webapp-config-1.50.15
0
ftp://ftp.mrunix.net/pub/webalizer/old/webalizer-2.01-10-src.tar.bz2 http://sysd.org/stas/files/active/0/geolizer_2.01-10-patch.20070115.tar.gz mirror://gentoo/webalizer.conf.gz

@ -1,4 +1,4 @@
>=sys-libs/db-4.2 >=sys-libs/zlib-1.1.4 >=media-libs/libpng-1.2 >=media-libs/gd-1.8.3 dev-libs/geoip >=app-admin/webapp-config-1.50.15 || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=sys-libs/db-4.2 >=sys-libs/zlib-1.1.4 >=media-libs/libpng-1.2 >=media-libs/gd-1.8.3 dev-libs/geoip >=app-admin/webapp-config-1.50.15 || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=sys-libs/db-4.2 >=sys-libs/zlib-1.1.4 >=media-libs/libpng-1.2 >=media-libs/gd-1.8.3 dev-libs/geoip >=app-admin/webapp-config-1.50.15
0
ftp://ftp.mrunix.net/pub/webalizer/old/webalizer-2.01-10-src.tar.bz2 http://sysd.org/stas/files/active/0/geolizer_2.01-10-patch.20070115.tar.gz mirror://gentoo/webalizer.conf.gz

@ -1,4 +1,4 @@
>=app-admin/system-tools-backends-2.10.1 >=dev-libs/liboobs-2.31.91 >=x11-libs/gtk+-2.19.7:2 >=dev-libs/glib-2.25.3:2 dev-libs/dbus-glib >=gnome-base/nautilus-2.9.90 sys-libs/cracklib nfs? ( net-fs/nfs-utils ) samba? ( >=net-fs/samba-3 ) policykit? ( >=sys-auth/polkit-0.92 || ( gnome-extra/polkit-gnome:obsolete <gnome-extra/polkit-gnome-0.102 ) ) app-text/docbook-xml-dtd:4.1.2 app-text/scrollkeeper >=app-text/gnome-doc-utils-0.3.2 dev-util/pkgconfig >=dev-util/intltool-0.35.0 || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4
>=app-admin/system-tools-backends-2.10.1 >=dev-libs/liboobs-2.31.91 >=x11-libs/gtk+-2.19.7:2 >=dev-libs/glib-2.25.3:2 dev-libs/dbus-glib >=gnome-base/nautilus-2.9.90 sys-libs/cracklib nfs? ( net-fs/nfs-utils ) samba? ( >=net-fs/samba-3 ) policykit? ( >=sys-auth/polkit-0.92 || ( gnome-extra/polkit-gnome:obsolete <gnome-extra/polkit-gnome-0.102 ) ) app-text/docbook-xml-dtd:4.1.2 app-text/scrollkeeper >=app-text/gnome-doc-utils-0.3.2 dev-util/pkgconfig >=dev-util/intltool-0.35.0 || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4
>=app-admin/system-tools-backends-2.10.1 >=dev-libs/liboobs-2.31.91 >=x11-libs/gtk+-2.19.7:2 >=dev-libs/glib-2.25.3:2 dev-libs/dbus-glib >=gnome-base/nautilus-2.9.90 sys-libs/cracklib nfs? ( net-fs/nfs-utils ) samba? ( >=net-fs/samba-3 ) policykit? ( >=sys-auth/polkit-0.92 || ( gnome-extra/polkit-gnome:obsolete <gnome-extra/polkit-gnome-0.102 ) )
0
mirror://gnome/sources/gnome-system-tools/2.32/gnome-system-tools-2.32.0.tar.bz2

@ -1,4 +1,4 @@
|| ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
|| ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
0
http://download.savannah.gnu.org/releases/hddtemp/hddtemp-0.3-beta15.tar.bz2 mirror://gentoo/hddtemp-20080531.db.bz2

@ -1,4 +1,4 @@
|| ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
|| ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
0
http://download.savannah.gnu.org/releases/hddtemp/hddtemp-0.3-beta15.tar.bz2 mirror://gentoo/hddtemp-20080531.db.bz2

@ -1,4 +1,4 @@
|| ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
|| ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
0
mirror://sourceforge/integrit/integrit-4.0.tar.gz

@ -1,4 +1,4 @@
|| ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
|| ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
0
mirror://sourceforge/integrit/integrit-4.1.tar.gz

@ -1,4 +1,4 @@
sys-libs/ncurses || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
sys-libs/ncurses || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
sys-libs/ncurses
0
http://www.edespot.com/code/LogMon/LogMon-0.4.4.tar.bz2

@ -1,4 +1,4 @@
dev-lang/lua || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
dev-lang/lua || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
dev-lang/lua net-misc/rsync
0
http://lsyncd.googlecode.com/files/lsyncd-2.0.4.tar.gz

@ -1,4 +1,4 @@
>=dev-libs/openssl-0.9.8c >=sys-libs/db-4.3 || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=dev-libs/openssl-0.9.8c >=sys-libs/db-4.3 || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=dev-libs/openssl-0.9.8c >=sys-libs/db-4.3
0
http://osiris.shmoo.com/data/osiris-4.2.3.tar.gz http://osiris.shmoo.com/data/modules/mod_uptime.tar.gz http://osiris.shmoo.com/data/modules/mod_dns.tar.gz http://osiris.shmoo.com/data/modules/mod_nvram.tar.gz http://osiris.shmoo.com/data/modules/mod_ports.tar.gz

@ -1,4 +1,4 @@
!dev-libs/libprelude-cvs !app-admin/prelude-manager-cvs >=dev-libs/libprelude-0.9.5 net-libs/gnutls xml? ( dev-libs/libxml2 ) dbx? ( dev-libs/libpreludedb ) tcpwrapper? ( sys-apps/tcp-wrappers ) >=sys-apps/sed-4 dev-util/pkgconfig || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
!dev-libs/libprelude-cvs !app-admin/prelude-manager-cvs >=dev-libs/libprelude-0.9.5 net-libs/gnutls xml? ( dev-libs/libxml2 ) dbx? ( dev-libs/libpreludedb ) tcpwrapper? ( sys-apps/tcp-wrappers ) >=sys-apps/sed-4 dev-util/pkgconfig || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
!dev-libs/libprelude-cvs !app-admin/prelude-manager-cvs >=dev-libs/libprelude-0.9.5 net-libs/gnutls xml? ( dev-libs/libxml2 ) dbx? ( dev-libs/libpreludedb ) tcpwrapper? ( sys-apps/tcp-wrappers )
0
http://www.prelude-ids.org/download/releases/prelude-manager/prelude-manager-0.9.15.tar.gz

@ -1,4 +1,4 @@
sys-libs/ncurses || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
sys-libs/ncurses || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
sys-libs/ncurses !app-admin/procinfo
0
mirror://sourceforge/procinfo-ng/procinfo-ng-2.0.304.tar.bz2

@ -1,4 +1,4 @@
>=sys-libs/libsepol-2.1.0 sys-libs/libselinux sys-devel/bison sys-devel/flex >=dev-db/sqlite-3.2:3 dev-libs/libxml2:2 dev-util/pkgconfig java? ( >=dev-lang/swig-1.3.28 >=virtual/jdk-1.4 ) python? ( >=dev-lang/swig-1.3.28 ) X? ( >=dev-lang/tk-8.4.9 >=gnome-base/libglade-2.0 >=x11-libs/gtk+-2.8:2 ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool java? ( >=dev-java/java-config-2.1.9-r1 ) python? ( =dev-lang/python-2* )
>=sys-libs/libsepol-2.1.0 sys-libs/libselinux sys-devel/bison sys-devel/flex >=dev-db/sqlite-3.2:3 dev-libs/libxml2:2 dev-util/pkgconfig java? ( >=dev-lang/swig-1.3.28 >=virtual/jdk-1.4 ) python? ( >=dev-lang/swig-1.3.28 ) X? ( >=dev-lang/tk-8.4.9 >=gnome-base/libglade-2.0 >=x11-libs/gtk+-2.8:2 ) || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool java? ( >=dev-java/java-config-2.1.9-r1 ) python? ( =dev-lang/python-2* )
>=sys-libs/libsepol-2.1.0 sys-libs/libselinux >=dev-db/sqlite-3.2:3 dev-libs/libxml2:2 java? ( >=virtual/jre-1.4 ) X? ( >=dev-lang/tk-8.4.9 >=dev-tcltk/bwidget-1.8 >=gnome-base/libglade-2.0 >=x11-libs/gtk+-2.8:2 ) java? ( >=dev-java/java-config-2.1.9-r1 ) python? ( =dev-lang/python-2* )
0
http://oss.tresys.com/projects/setools/chrome/site/dists/setools-3.3.7/setools-3.3.7.tar.bz2

@ -1,4 +1,4 @@
!static? ( pcre? ( dev-libs/libpcre ) spoof-source? ( net-libs/libnet ) ssl? ( dev-libs/openssl ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) !static? ( >=dev-libs/eventlog-0.2.12 ) >=dev-libs/glib-2.10.1:2 caps? ( sys-libs/libcap ) sql? ( >=dev-db/libdbi-0.8.3 ) ) spoof-source? ( net-libs/libnet ) ssl? ( dev-libs/openssl ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) !static? ( >=dev-libs/eventlog-0.2.12 ) >=dev-libs/glib-2.10.1:2 caps? ( sys-libs/libcap ) sql? ( >=dev-db/libdbi-0.8.3 ) static? ( >=dev-libs/eventlog-0.2.12[static-libs] ) dev-util/pkgconfig sys-devel/flex || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4
!static? ( pcre? ( dev-libs/libpcre ) spoof-source? ( net-libs/libnet ) ssl? ( dev-libs/openssl ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) !static? ( >=dev-libs/eventlog-0.2.12 ) >=dev-libs/glib-2.10.1:2 caps? ( sys-libs/libcap ) sql? ( >=dev-db/libdbi-0.8.3 ) ) spoof-source? ( net-libs/libnet ) ssl? ( dev-libs/openssl ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) !static? ( >=dev-libs/eventlog-0.2.12 ) >=dev-libs/glib-2.10.1:2 caps? ( sys-libs/libcap ) sql? ( >=dev-db/libdbi-0.8.3 ) static? ( >=dev-libs/eventlog-0.2.12[static-libs] ) dev-util/pkgconfig sys-devel/flex || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4
!static? ( pcre? ( dev-libs/libpcre ) spoof-source? ( net-libs/libnet ) ssl? ( dev-libs/openssl ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) !static? ( >=dev-libs/eventlog-0.2.12 ) >=dev-libs/glib-2.10.1:2 caps? ( sys-libs/libcap ) sql? ( >=dev-db/libdbi-0.8.3 ) )
0
http://www.balabit.com/downloads/files/syslog-ng/sources/3.2.4/source/syslog-ng_3.2.4.tar.gz

@ -1,4 +1,4 @@
pcre? ( dev-libs/libpcre ) spoof-source? ( net-libs/libnet ) ssl? ( dev-libs/openssl ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) >=dev-libs/eventlog-0.2.12 >=dev-libs/glib-2.10.1:2 caps? ( sys-libs/libcap ) sql? ( >=dev-db/libdbi-0.8.3 ) dev-util/pkgconfig sys-devel/flex || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4
pcre? ( dev-libs/libpcre ) spoof-source? ( net-libs/libnet ) ssl? ( dev-libs/openssl ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) >=dev-libs/eventlog-0.2.12 >=dev-libs/glib-2.10.1:2 caps? ( sys-libs/libcap ) sql? ( >=dev-db/libdbi-0.8.3 ) dev-util/pkgconfig sys-devel/flex || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4
pcre? ( dev-libs/libpcre ) spoof-source? ( net-libs/libnet ) ssl? ( dev-libs/openssl ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) >=dev-libs/eventlog-0.2.12 >=dev-libs/glib-2.10.1:2 caps? ( sys-libs/libcap ) sql? ( >=dev-db/libdbi-0.8.3 )
0
http://www.balabit.com/downloads/files/syslog-ng/sources/3.2.5/source/syslog-ng_3.2.5.tar.gz

@ -1,4 +1,4 @@
!static? ( pcre? ( dev-libs/libpcre ) spoof-source? ( net-libs/libnet ) ssl? ( dev-libs/openssl ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) !static? ( >=dev-libs/eventlog-0.2.12 ) >=dev-libs/glib-2.10.1:2 json? ( >=dev-libs/json-glib-0.12 ) caps? ( sys-libs/libcap ) sql? ( >=dev-db/libdbi-0.8.3 ) ) spoof-source? ( net-libs/libnet ) ssl? ( dev-libs/openssl ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) !static? ( >=dev-libs/eventlog-0.2.12 ) >=dev-libs/glib-2.10.1:2 json? ( >=dev-libs/json-glib-0.12 ) caps? ( sys-libs/libcap ) sql? ( >=dev-db/libdbi-0.8.3 ) static? ( >=dev-libs/eventlog-0.2.12[static-libs] ) dev-util/pkgconfig sys-devel/flex || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
!static? ( pcre? ( dev-libs/libpcre ) spoof-source? ( net-libs/libnet ) ssl? ( dev-libs/openssl ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) !static? ( >=dev-libs/eventlog-0.2.12 ) >=dev-libs/glib-2.10.1:2 json? ( >=dev-libs/json-glib-0.12 ) caps? ( sys-libs/libcap ) sql? ( >=dev-db/libdbi-0.8.3 ) ) spoof-source? ( net-libs/libnet ) ssl? ( dev-libs/openssl ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) !static? ( >=dev-libs/eventlog-0.2.12 ) >=dev-libs/glib-2.10.1:2 json? ( >=dev-libs/json-glib-0.12 ) caps? ( sys-libs/libcap ) sql? ( >=dev-db/libdbi-0.8.3 ) static? ( >=dev-libs/eventlog-0.2.12[static-libs] ) dev-util/pkgconfig sys-devel/flex || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
!static? ( pcre? ( dev-libs/libpcre ) spoof-source? ( net-libs/libnet ) ssl? ( dev-libs/openssl ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) !static? ( >=dev-libs/eventlog-0.2.12 ) >=dev-libs/glib-2.10.1:2 json? ( >=dev-libs/json-glib-0.12 ) caps? ( sys-libs/libcap ) sql? ( >=dev-db/libdbi-0.8.3 ) )
0
http://www.balabit.com/downloads/files/syslog-ng/sources/3.3.4/source/syslog-ng_3.3.4.tar.gz

@ -1,4 +1,4 @@
sys-devel/automake sys-devel/autoconf dev-util/patchutils ssl? ( dev-libs/openssl ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
sys-devel/automake sys-devel/autoconf dev-util/patchutils ssl? ( dev-libs/openssl ) || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
virtual/cron virtual/mta ssl? ( dev-libs/openssl )
0
mirror://sourceforge/tripwire/tripwire-2.3.1-2.tar.gz mirror://gentoo/tripwire-2.3.1-2-pherman-portability-0.9.diff.bz2 mirror://gentoo/twpol.txt.gz mirror://gentoo/tripwire.gif

@ -1,4 +1,4 @@
sys-devel/automake sys-devel/autoconf dev-util/patchutils ssl? ( dev-libs/openssl ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
sys-devel/automake sys-devel/autoconf dev-util/patchutils ssl? ( dev-libs/openssl ) || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
virtual/cron virtual/mta ssl? ( dev-libs/openssl )
0
mirror://sourceforge/tripwire/tripwire-2.4.2-src.tar.bz2 mirror://gentoo/twpol.txt.gz mirror://gentoo/tripwire.gif

@ -1,4 +1,4 @@
sys-devel/automake sys-devel/autoconf dev-util/patchutils ssl? ( dev-libs/openssl ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
sys-devel/automake sys-devel/autoconf dev-util/patchutils ssl? ( dev-libs/openssl ) || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
virtual/cron virtual/mta ssl? ( dev-libs/openssl )
0
mirror://sourceforge/tripwire/tripwire-2.4.2-src.tar.bz2 mirror://gentoo/twpol.txt.gz mirror://gentoo/tripwire.gif

@ -1,4 +1,4 @@
net-firewall/iptables mysql? ( virtual/mysql ) postgres? ( dev-db/postgresql-base ) sqlite? ( dev-db/sqlite:3 ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
net-firewall/iptables mysql? ( virtual/mysql ) postgres? ( dev-db/postgresql-base ) sqlite? ( dev-db/sqlite:3 ) || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
net-firewall/iptables mysql? ( virtual/mysql ) postgres? ( dev-db/postgresql-base ) sqlite? ( dev-db/sqlite:3 ) net-libs/libpcap
0
http://ftp.netfilter.org/pub/ulogd/ulogd-1.24.tar.bz2 mirror://gentoo/ulogd-glsa-200805.patch.bz2

@ -1,4 +1,4 @@
>=sys-libs/db-4.2 >=sys-libs/zlib-1.1.4 >=media-libs/libpng-1.2 >=media-libs/gd-1.8.3[png] geoip? ( dev-libs/geoip ) >=app-admin/webapp-config-1.50.15 || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=sys-libs/db-4.2 >=sys-libs/zlib-1.1.4 >=media-libs/libpng-1.2 >=media-libs/gd-1.8.3[png] geoip? ( dev-libs/geoip ) >=app-admin/webapp-config-1.50.15 || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=sys-libs/db-4.2 >=sys-libs/zlib-1.1.4 >=media-libs/libpng-1.2 >=media-libs/gd-1.8.3[png] geoip? ( dev-libs/geoip ) >=app-admin/webapp-config-1.50.15
0
ftp://ftp.mrunix.net/pub/webalizer/old/webalizer-2.01-10-src.tar.bz2 geoip? ( http://sysd.org/proj/geolizer_2.01-10-patch.20050520.tar.bz2 ) xtended? ( http://www.irc.unizh.ch/users/pfrei/webalizer/rb17/webalizer-2.01-10-RB17-patch.tar.gz ) mirror://gentoo/webalizer.conf.gz

@ -1,4 +1,4 @@
>=sys-libs/db-4.2 >=sys-libs/zlib-1.1.4 >=media-libs/libpng-1.2 >=media-libs/gd-1.8.3 geoip? ( dev-libs/geoip ) >=app-admin/webapp-config-1.50.15 || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=sys-libs/db-4.2 >=sys-libs/zlib-1.1.4 >=media-libs/libpng-1.2 >=media-libs/gd-1.8.3 geoip? ( dev-libs/geoip ) >=app-admin/webapp-config-1.50.15 || ( >=sys-devel/automake-1.11.1 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
>=sys-libs/db-4.2 >=sys-libs/zlib-1.1.4 >=media-libs/libpng-1.2 >=media-libs/gd-1.8.3 geoip? ( dev-libs/geoip ) >=app-admin/webapp-config-1.50.15
0
ftp://ftp.mrunix.net/pub/webalizer/old/webalizer-2.01-10-src.tar.bz2 geoip? ( http://sysd.org/stas/files/active/0/geolizer_2.01-10-patch.20070115.tar.gz ) xtended? ( http://patrickfrei.ch/webalizer/rb21/webalizer-2.01-10-RB21-patch.tar.gz ) mirror://gentoo/webalizer.conf.gz

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save