diff options
author | Peter Volkov <pva@gentoo.org> | 2015-02-09 11:24:14 +0300 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2015-02-09 11:24:14 +0300 |
commit | 5ab8c0f6bd51059243f6bcf84b7d858530f36135 (patch) | |
tree | 3d52ab7cf51cd30bcbc4cc9cc06923d862ecf43b | |
parent | Redmine version bump. (diff) | |
download | pva-5ab8c0f6bd51059243f6bcf84b7d858530f36135.tar.gz pva-5ab8c0f6bd51059243f6bcf84b7d858530f36135.tar.bz2 pva-5ab8c0f6bd51059243f6bcf84b7d858530f36135.zip |
app-admin/eselect-yacc
app-laptop/hdapsd
app-text/languagetool
dev-util/abi-compliance-checker
dev-util/silentbob
media-gfx
media-libs/jpeg
media-libs/tiff
net-p2p/xbtt
net-wireless/btsco-kernel
net-wireless/btsco
sys-apps/groff
sys-apps/man-db
sys-devel/bison
sys-fs/ocfs2-tools
sys-kernel/gentoo-sources
x11-libs/Xaw3d
x11-libs/qt-3!
108 files changed, 0 insertions, 10895 deletions
diff --git a/app-admin/eselect-yacc/Manifest b/app-admin/eselect-yacc/Manifest deleted file mode 100644 index 1a46e40..0000000 --- a/app-admin/eselect-yacc/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -AUX yacc.eselect 3618 RMD160 bbdc9025f64fdd1e1639fa71ed17b192bc5650e7 SHA1 dd102a862fb2f0b0a329c09df6969f0a8c87abda SHA256 e789b8e0d85485be286228068bf87b90d83dcad911f67d3a94007e38741dfee1 -EBUILD eselect-yacc-0.1.ebuild 431 RMD160 de7746b6f486803c52756223c7108440f434b4ed SHA1 ffbdeaaa59c5e021e168561a48c06722d628f910 SHA256 64dbf2912ac69a4bda4565a80cb3277074bf44d7cf08b65d771e864ea7b0f46f diff --git a/app-admin/eselect-yacc/eselect-yacc-0.1.ebuild b/app-admin/eselect-yacc/eselect-yacc-0.1.ebuild deleted file mode 100644 index 245e083..0000000 --- a/app-admin/eselect-yacc/eselect-yacc-0.1.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -DESCRIPTION="A eselect module to handle yacc symlink" -HOMEPAGE="www.gentoo.org" -#SRC_URI="mirrors://gentoo/..." -SRC_URI="" - -LICENSE="" -SLOT="0" -KEYWORDS="~x86 ~amd64" -IUSE="" - -DEPEND="" -RDEPEND="app-admin/eselect" - -src_install() { - insinto /usr/share/eselect/modules - doins "${FILESDIR}"/yacc.eselect || die -} diff --git a/app-admin/eselect-yacc/files/yacc.eselect b/app-admin/eselect-yacc/files/yacc.eselect deleted file mode 100644 index 967be72..0000000 --- a/app-admin/eselect-yacc/files/yacc.eselect +++ /dev/null @@ -1,148 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -inherit output path-manipulation - -DESCRIPTION="Manage /usr/bin/yacc symlink" -MAINTAINER="base-system@gentoo.org" -VERSION="0.1" -YACC_SYMLINK=${ROOT}/usr/bin/yacc - -# find_targets -# returns available targets for symlink -# Note: first match is best match for do_update command -find_targets() { - local f - for f in "${ROOT}/usr/bin/"{yacc.bison,yacc.yacc} ; do - [[ -x $f ]] && echo "${f}" - done -} - -# is_active $target -# returns true if ${YACC_SYMLINK} points to $target -is_active() { - [[ ${#@} -eq 1 ]] || die "Need exactly 1 argument!" - [[ -L ${YACC_SYMLINK} && $(canonicalise ${YACC_SYMLINK}) -ef ${1} ]] -} - -# is_updateable -# returns true if ${YACC_SYMLINK} could be updated -# That means it does either is symlink or does not exist -is_updateable() { - [[ -L ${YACC_SYMLINK} || ! -a ${YACC_SYMLINK} ]] -} - -# safe_set_symlink $target -# does some safety checks and points $YACC_SYMLINK to $target -safe_set_symlink() { - [[ ${#@} -eq 1 ]] || die "Need exactly 1 argument!" - [[ -x ${1} ]] || die "${1} is not executable!" - is_updateable || die "${YACC_SYMLINK} exists but is not symlink!" - ln -sf "${1}" "${YACC_SYMLINK}" || \ - die "Failed to set symlink! How could this happen? :(" -} - -### list action ### - -describe_list() { - echo "List available targets for ${YACC_SYMLINK} symlink can point to" -} - -do_list() { - local targets i=0 active - - targets=( $(find_targets) ) - - write_list_start "Available possibilities for ${YACC_SYMLINK} symlink can point to:" - write_list_start "( $(highlight '*') - designates where symlink points now)" - if [[ -n ${targets[@]} ]] ; then - for (( i = 0 ; i < ${#targets[@]} ; i = i + 1 )) ; do - active='' - is_active "${targets[${i}]}" && active=' *' - write_numbered_list_entry ${i} "${targets[${i}]}$(highlight "${active}")" - done - else - write_kv_list_entry "(none found)" "" - fi - - return 0 -} - -### show action ### - -describe_show() { - echo "Show where ${YACC_SYMLINK} currently points to" -} - -do_show() { - if [[ -L ${YACC_SYMLINK} ]]; then - echo $(canonicalise "${YACC_SYMLINK}") - else - write_warning_msg "${YACC_SYMLINK} is not a symlink!" - fi -} - -### set action ### - -describe_set() { - echo "Set ${YACC_SYMLINK} symlink" -} - -describe_set_parameters() { - echo "<target>" -} - -describe_set_options() { - echo "<target> : Target name or number (from 'list' action)" -} - -do_set() { - [[ ${#@} == 1 ]] || \ - die -q "Please specify exactly one version to activate!" - - local target targets i=0 - - targets=( $(find_targets) ) - - if is_number "${1}"; then - target=${targets[${1}]} - else - for (( i = 0 ; i < ${#targets[@]} ; i = i + 1 )) ; do - [[ ${targets[${i}]} == ${1} ]] && \ - target=${1} - done - fi - - [[ -z "${target}" ]] && \ - die -q "Target \"${target}\" doesn't appear to be valid!" - - safe_set_symlink ${target} -} - -### update action ### - -describe_update() { - echo "Atomaticaly detect providers for ${YACC_SYMLINK} symlink and set it" -} - -do_update() { - local target targets i=0 - - targets=( $(find_targets) ) - if [[ -n ${targets[@]} ]] ; then - for (( i = 0 ; i < ${#targets[@]} ; i = i + 1 )) ; do - [[ ${targets[${i}]} -ef $(canonicalise "${YACC_SYMLINK}") ]] && \ - return 0 - done - safe_set_symlink ${targets[0]} - else - write_warning_msg "No targets exist to update symlink. Removing ${YACC_SYMLINK} if exist." - write_warning_msg "Ignore this warning if you removed all yacc providers." - is_updateable || \ - die -q "${YACC_SYMLINK} is not symlink. I'd better not remove it!" - [[ -L ${YACC_SYMLINK} ]] && rm -r ${YACC_SYMLINK} - fi -} - -# vim: set ft=eselect : diff --git a/app-laptop/hdapsd/ChangeLog b/app-laptop/hdapsd/ChangeLog deleted file mode 100644 index 326950c..0000000 --- a/app-laptop/hdapsd/ChangeLog +++ /dev/null @@ -1,39 +0,0 @@ -# ChangeLog for app-laptop/hdapsd -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/hdapsd/ChangeLog,v 1.7 2007/08/29 18:55:52 genstef Exp $ - -*hdapsd-20060409-r1.ebuild (29 Aug 2007) -*hdapsd-20060409.ebuild (29 Aug 2007) - - 29 Aug 2007; Stefan Schweizer <genstef@gentoo.org> hdapsd-20060409.ebuild, - hdapsd-20060409-r1.ebuild: - Fix config checks, thanks jieryn <jieryn@gmail.com> in bug 190047 - - 19 Apr 2007; Tony Vroon <chainsaw@gentoo.org> metadata.xml: - Taking maintainership. - - 23 Jan 2007; Marius Mauch <genone@gentoo.org> hdapsd-20060409.ebuild, - hdapsd-20060409-r1.ebuild: - Replacing einfo with elog - -*hdapsd-20060409-r1 (05 Dec 2006) - - 05 Dec 2006; Roy Marples <uberlord@gentoo.org> files/hdapsd.init, - +hdapsd-20060409-r1.ebuild: - Bump for a new patchset, works on 2.6.18 and 2.6.19 kernels. - Fixes #142376 and #148423 - - 28 Jun 2006; Roy Marples <uberlord@gentoo.org> hdapsd-20060409.ebuild: - Remove syslog stuff as it was invalid for scsi/sata systems. - Detect patched kernel via /sys in pkg_postinst as kernel sources may not be - installed and the warning may be in error. - - 27 Jun 2006; Roy Marples <uberlord@gentoo.org> +files/hdaps-Z60m.patch, - hdapsd-20060409.ebuild: - Added a kernel patch so --config can enable hdaps on my Z60m - -*hdapsd-20060409 (26 Jun 2006) - - 26 Jun 2006; Roy Marples <uberlord@gentoo.org> +files/hdapsd.conf, - +files/hdapsd.init, +metadata.xml, +hdapsd-20060409.ebuild: - Initial import based on the work by Michael Gaber and Jeff Grafton, #119845. diff --git a/app-laptop/hdapsd/Manifest b/app-laptop/hdapsd/Manifest deleted file mode 100644 index 6b3de3c..0000000 --- a/app-laptop/hdapsd/Manifest +++ /dev/null @@ -1,29 +0,0 @@ -AUX hdaps-Z60m.patch 352 RMD160 963be45785af235fa3e0d74d68d2e75fad663396 SHA1 317de158fdacdd379a94b0652b54ed48525a71bc SHA256 05b0def085f637bae8561a825d7ff3ffc51bdd33609b1520e2d30aa807f00016 -MD5 d2dc49b9cfea10c6e8b09fc8a3077bc4 files/hdaps-Z60m.patch 352 -RMD160 963be45785af235fa3e0d74d68d2e75fad663396 files/hdaps-Z60m.patch 352 -SHA256 05b0def085f637bae8561a825d7ff3ffc51bdd33609b1520e2d30aa807f00016 files/hdaps-Z60m.patch 352 -AUX hdapsd.conf 321 RMD160 5bb760d34bca3f5a12aeb057b78de7e2a9065bc3 SHA1 ade013dab6278a385b4658aad7e871b743380689 SHA256 22e1acf385427052a12858db005fd73d42d9f6818fb253b032cd326101df2e34 -MD5 ef4095f13d4c1a5363c3ed2e0528bd08 files/hdapsd.conf 321 -RMD160 5bb760d34bca3f5a12aeb057b78de7e2a9065bc3 files/hdapsd.conf 321 -SHA256 22e1acf385427052a12858db005fd73d42d9f6818fb253b032cd326101df2e34 files/hdapsd.conf 321 -AUX hdapsd.init 1267 RMD160 1ae521bcf38ace4904d97d64eedb4d72eaaffa23 SHA1 24bd54b9a322dcfc0c54d82093160a1965a8e118 SHA256 3555618d1613c3d60d5164b9f9e70fd7ac1ccf6f6b1f30d53aac33a901487964 -MD5 5adbdfabe13cf2add3346679d02eb2d2 files/hdapsd.init 1267 -RMD160 1ae521bcf38ace4904d97d64eedb4d72eaaffa23 files/hdapsd.init 1267 -SHA256 3555618d1613c3d60d5164b9f9e70fd7ac1ccf6f6b1f30d53aac33a901487964 files/hdapsd.init 1267 -DIST hdaps_protect-patches-2.tar.bz2 10203 RMD160 899a109b58b7aa4949012cd447275d2f3957951e SHA1 67599f3c1a5daaa298f6f1d30168ab0f6c45f407 SHA256 59cfe2535f3d11d1fe54d3c6acb3d2471c461af7770816aeec02411566d38c4b -DIST hdapsd-20070524.c 16425 RMD160 06a4ef3f1fb9b1ece95a37fc08480c6b63a2b2bb SHA1 bc8f1a41996e365a9d6071546bc7aef97edd2d9a SHA256 3a72755fc66bfaddc52fb7df4ac94308e2fb3ea706ba96684036e68786249784 -EBUILD hdapsd-20070524.ebuild 2435 RMD160 90a1799151c45cb970e009c6b34908b51e6f1efb SHA1 340e0c77084285ff0f7f6761ca0fc10beaf673bd SHA256 312f93a1e470fc4487937de6033f369873b1681bf089877c805a3baddf9548a4 -MD5 141b64ed820d45b19e511140f5840e63 hdapsd-20070524.ebuild 2435 -RMD160 90a1799151c45cb970e009c6b34908b51e6f1efb hdapsd-20070524.ebuild 2435 -SHA256 312f93a1e470fc4487937de6033f369873b1681bf089877c805a3baddf9548a4 hdapsd-20070524.ebuild 2435 -MISC ChangeLog 1572 RMD160 b445fb3578154d8da87d4c7c7f96882248dbc19f SHA1 c720473a0aee835d0f62b6336838b26b495804a8 SHA256 45c81b6f6f8233742db0ba727b06242c7898c9a8d2595ff55eb7f04da2860d0e -MD5 87743bcc068c8efbe4e5498bd376bfe6 ChangeLog 1572 -RMD160 b445fb3578154d8da87d4c7c7f96882248dbc19f ChangeLog 1572 -SHA256 45c81b6f6f8233742db0ba727b06242c7898c9a8d2595ff55eb7f04da2860d0e ChangeLog 1572 -MISC metadata.xml 355 RMD160 5ca3ed157f7f031a97030b1911fe673ead73b9a5 SHA1 5a27f7151d0cd8f43380b8566f3602e3de423c62 SHA256 44de2fade812b9761d1a27833d5cf9db55dd3838db60788c91cce773ddf1f536 -MD5 3c417f6e4af8066f1ec3381359f78e75 metadata.xml 355 -RMD160 5ca3ed157f7f031a97030b1911fe673ead73b9a5 metadata.xml 355 -SHA256 44de2fade812b9761d1a27833d5cf9db55dd3838db60788c91cce773ddf1f536 metadata.xml 355 -MD5 75dfc04c7d383b290b125f026e889093 files/digest-hdapsd-20070524 500 -RMD160 dc3ef40189e7262b336df2e65f29c394cca61589 files/digest-hdapsd-20070524 500 -SHA256 6b70cfacd0023b252dc4cecc0fafa5b9de4c8a6efd0d8302687f018b2ae1225e files/digest-hdapsd-20070524 500 diff --git a/app-laptop/hdapsd/files/digest-hdapsd-20070524 b/app-laptop/hdapsd/files/digest-hdapsd-20070524 deleted file mode 100644 index b455691..0000000 --- a/app-laptop/hdapsd/files/digest-hdapsd-20070524 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 b7503b856a64783b8920a7c8d48eb3a3 hdaps_protect-patches-2.tar.bz2 10203 -RMD160 899a109b58b7aa4949012cd447275d2f3957951e hdaps_protect-patches-2.tar.bz2 10203 -SHA256 59cfe2535f3d11d1fe54d3c6acb3d2471c461af7770816aeec02411566d38c4b hdaps_protect-patches-2.tar.bz2 10203 -MD5 0332b6bef17424291cafb242ddd97d7c hdapsd-20070524.c 16425 -RMD160 06a4ef3f1fb9b1ece95a37fc08480c6b63a2b2bb hdapsd-20070524.c 16425 -SHA256 3a72755fc66bfaddc52fb7df4ac94308e2fb3ea706ba96684036e68786249784 hdapsd-20070524.c 16425 diff --git a/app-laptop/hdapsd/files/hdaps-Z60m.patch b/app-laptop/hdapsd/files/hdaps-Z60m.patch deleted file mode 100644 index 57c723c..0000000 --- a/app-laptop/hdapsd/files/hdaps-Z60m.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- drivers/hwmon/hdaps.c 2006-06-26 09:37:31.131424200 +0100 -+++ drivers/hwmon/hdaps.c 2006-06-26 09:39:49.000000000 +0100 -@@ -539,6 +539,7 @@ - HDAPS_DMI_MATCH_NORMAL("ThinkPad X41 Tablet"), - HDAPS_DMI_MATCH_NORMAL("ThinkPad X41"), - HDAPS_DMI_MATCH_LENOVO("ThinkPad X60"), -+ HDAPS_DMI_MATCH_NORMAL("ThinkPad Z60m"), - { .ident = NULL } - }; - diff --git a/app-laptop/hdapsd/files/hdapsd.conf b/app-laptop/hdapsd/files/hdapsd.conf deleted file mode 100644 index 6221909..0000000 --- a/app-laptop/hdapsd/files/hdapsd.conf +++ /dev/null @@ -1,11 +0,0 @@ -# The name of the disk device that hdapsd should monitor. -# Usually this is 'hda' or 'sda' the primary master. -DISK="sda" - -# hdapsd sensitivity -# The lower the threshold is the earlier -# the heads are parked when the laptop is shaked -THRESHOLD="10" - -# Set any extra options here, like -a for Adaptive mode -OPTIONS="-a" diff --git a/app-laptop/hdapsd/files/hdapsd.init b/app-laptop/hdapsd/files/hdapsd.init deleted file mode 100644 index a413490..0000000 --- a/app-laptop/hdapsd/files/hdapsd.init +++ /dev/null @@ -1,49 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License, v2 - -depend() { - need localmount -} - -checkconfig() { - if [[ -z ${DISK} || -z ${THRESHOLD} ]] ; then - eerror "You should setup DISK and THRESHOLD in /etc/conf.d/hdapsd." - return 1 - fi - - if [[ ! -e /sys/block/${DISK}/queue/protect ]] ; then - eerror "No protect entry for ${DISK}!" - eerror "Make sure your kernel is patched with the blk_freeze patch" - return 1 - fi - - # Load the tp_smapi module first - # This is not a requirement, but it helps hdapsd adaptive mode - if [[ ! -e /sys/devices/platorm/smapi ]] ; then - modprobe tp_smapi 2>/dev/null - fi - - if [[ ! -d /sys/devices/platform/hdaps ]]; then - ebegin "Loading hdaps module" - modprobe hdaps - eend $? || return 1 - fi -} - -start() { - checkconfig || return 1 - - ebegin "Starting Hard Drive Active Protection System daemon" - start-stop-daemon --start --exec /usr/sbin/hdapsd \ - --pidfile /var/run/hdapsd.pid \ - -- -b -p -d "${DISK}" -s "${THRESHOLD}" ${OPTIONS} - eend $? -} - -stop() { - ebegin "Stopping Hard Drive Active Protection System daemon" - start-stop-daemon --stop --exec /usr/sbin/hdapsd \ - --pidfile /var/run/hdapsd.pid - eend $? -} diff --git a/app-laptop/hdapsd/hdapsd-20070524.ebuild b/app-laptop/hdapsd/hdapsd-20070524.ebuild deleted file mode 100644 index f5b9d33..0000000 --- a/app-laptop/hdapsd/hdapsd-20070524.ebuild +++ /dev/null @@ -1,94 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/hdapsd/hdapsd-20060409-r1.ebuild,v 1.3 2007/08/29 18:55:52 genstef Exp $ - -inherit eutils linux-info toolchain-funcs - -PROTECT_VER="2" - -DESCRIPTION="IBM ThinkPad Harddrive Active Protection disk head parking daemon" -HOMEPAGE="http://hdaps.sourceforge.net/" -SRC_URI="http://www.dresco.co.uk/hdaps/${P}.c - mirror://gentoo/hdaps_protect-patches-${PROTECT_VER}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86" - -IUSE="" -RDEPEND="" - -S=${WORKDIR} - -CONFIG_CHECK="SENSORS_HDAPS" -ERROR_SENSORS_HDAPS="${P} requires support for HDAPS (CONFIG_SENSORS_HDAPS)" - -src_unpack() { - cp "${DISTDIR}"/${P}.c . - unpack hdaps_protect-patches-${PROTECT_VER}.tar.bz2 -} -src_compile() { - $(tc-getCC) ${CFLAGS} "${P}".c -o hdapsd || die "failed to compile" -} - -src_install() { - dosbin hdapsd - newconfd "${FILESDIR}"/hdapsd.conf hdapsd - newinitd "${FILESDIR}"/hdapsd.init hdapsd - - # Install our kernel patches - dodoc *.patch "${FILESDIR}"/hdaps-Z60m.patch -} - -# Yes, this sucks as the source location may change, kernel sources may not be -# installed, but we try our best anyway -kernel_patched() { - get_version - - if grep -qs "blk_protect_register" "${KERNEL_DIR}"/block/ll_rw_blk.c ; then - einfo "Your kernel has already been patched for blk_freeze" - return 0 - fi - - return 1 -} - -pkg_config() { - kernel_patched && return 0 - - local docdir="${ROOT}/usr/share/doc/${PF}/" - local p="hdaps_protect-${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}.patch.gz" - - # We need to find our FILESDIR as it's now lost - if [[ ! -e ${docdir}/${p} ]] ; then - eerror "We don't have a patch for kernel ${KV_MAJOR}.${KV_MINOR}.${KV_PATCH} yet" - return 1 - fi - - if [[ ! -d ${KERNEL_DIR} ]] ; then - eerror "Kernel sources not found!" - return 1 - fi - - cd "${KERNEL_DIR}" - epatch "${docdir}/${p}" - - # This is just a nice to have for me as I use a Z60m myself - if ! grep -q "Z60m" "${KERNEL_DIR}"/drivers/hwmon/hdaps.c ; then - epatch "${docdir}"/hdaps-Z60m.patch.gz - fi - - echo - einfo "Now you should rebuild your kernel, its modules" - einfo "and then install them." -} - -pkg_postinst(){ - [[ -n $(ls "${ROOT}"/sys/block/*/queue/protect 2>/dev/null) ]] && return 0 - - if ! kernel_patched ; then - ewarn "Your kernel has NOT been patched for blk_freeze" - elog "The ebuild can attempt to patch your kernel like so" - elog " emerge --config =${PF}" - fi -} diff --git a/app-laptop/hdapsd/metadata.xml b/app-laptop/hdapsd/metadata.xml deleted file mode 100644 index 38eab06..0000000 --- a/app-laptop/hdapsd/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version='1.0' encoding='UTF-8'?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <herd>mobile</herd> - <maintainer> - <email>chainsaw@gentoo.org</email> - <name>Tony Vroon</name> - </maintainer> - <longdescription>IBM ThinkPad Harddrive Active Protection disk head parking - daemon</longdescription> -</pkgmetadata> diff --git a/app-text/languagetool/Manifest b/app-text/languagetool/Manifest deleted file mode 100644 index 83d0a2d..0000000 --- a/app-text/languagetool/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -AUX languagetool-0.9.5-build.xml.patch 2000 RMD160 412071941f9b1f03295bb076ee6eb2f1b16ed513 SHA1 df577d68c78bcfd299152f63910a50c03b008860 SHA256 a49802d85865eac423f7a34a7ced594e5b1094ee085e7b1ea1d315e78d7cce96 -DIST languagetool-0.9.5.tar.bz2 12835625 RMD160 1dc607b38388c3b5e0f0b57c21ad3e2295137d1b SHA1 5523f7922905b02ec1cb618eed94b39c31037efd SHA256 f179cc75768cd73c3bd7ad34b0f25e05af32d97d08184f750e2ac883b31f0742 -EBUILD languagetool-0.9.5-r1.ebuild 1810 RMD160 37d0dab12651a87fbfac3bd5bcfaf9ca25794279 SHA1 5f3b2c785e270874242e6faaf129a8c71b9cd701 SHA256 55b31141449402bfd33c93ebf11e2fc5afbe64114ded1d74d5fd6d46863ae924 diff --git a/app-text/languagetool/files/languagetool-0.9.5-build.xml.patch b/app-text/languagetool/files/languagetool-0.9.5-build.xml.patch deleted file mode 100644 index 50dc67b..0000000 --- a/app-text/languagetool/files/languagetool-0.9.5-build.xml.patch +++ /dev/null @@ -1,44 +0,0 @@ ---- build.xml 2008-10-30 00:30:07.000000000 +0200 -+++ build.xml.fixed 2008-11-12 06:27:09.000000000 +0200 -@@ -78,7 +78,7 @@ - <!-- TEST --> - <!-- ================================================================== --> - -- <target name="test" depends="clean,init,build" description="Runs unit tests"> -+ <target name="test" description="Runs unit tests"> - - <mkdir dir="${junit.classes.dir}"/> - <mkdir dir="${dist.dir}/report/tests"/> -@@ -239,14 +239,6 @@ - debug="${debug}"> - <classpath refid="classpath"/> - </javac> -- <javac encoding="${encoding}" -- srcdir="${src.test.dir}" -- includes="de/danielnaber/languagetool/rules/patterns/PatternRuleTest.java" -- destdir="${build.classes}" -- target="${target}" -- debug="${debug}"> -- <classpath refid="classpath"/> -- </javac> - - </target> - -@@ -267,7 +259,7 @@ - excludes="**/*.java"> - <manifest> - <attribute name="Main-Class" value="de.danielnaber.languagetool.Main" /> -- <attribute name="Class-Path" value="./ ./rules ./resource ./${stempelator.lib} ./jdic.jar ./jaminid.jar ./jWordSplitter.jar" /> -+ <attribute name="Class-Path" value="./ ../rules ../resource ./${stempelator.lib} ./jdic.jar ./jaminid.jar ./jWordSplitter.jar" /> - <attribute name="Implementation-Version" value="${version}" /> - <attribute name="Implementation-Date" value="${date}" /> - </manifest> -@@ -279,7 +271,7 @@ - includes="de/danielnaber/languagetool/gui/*.class"> - <manifest> - <attribute name="Main-Class" value="de.danielnaber.languagetool.gui.Main" /> -- <attribute name="Class-Path" value="./LanguageTool.jar ./ ./resource ./rules ./${stempelator.lib} ./jdic.jar ./jaminid.jar ./jWordSplitter.jar" /> -+ <attribute name="Class-Path" value="./LanguageTool.jar ../ ../resource ../rules ./${stempelator.lib} ./jdic.jar ./jaminid.jar ./jWordSplitter.jar" /> - <attribute name="Implementation-Version" value="${version}" /> - <attribute name="Implementation-Date" value="${date}" /> - </manifest> diff --git a/app-text/languagetool/languagetool-0.9.5-r1.ebuild b/app-text/languagetool/languagetool-0.9.5-r1.ebuild deleted file mode 100644 index f5297df..0000000 --- a/app-text/languagetool/languagetool-0.9.5-r1.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=1 -JAVA_PKG_IUSE="doc source test" - -inherit eutils java-pkg-2 java-ant-2 - -DESCRIPTION="An Open Source language checker for English, German, Polish, Dutch, and other languages." -HOMEPAGE="http://www.languagetool.org/" -SRC_URI="http://dev.gentoo.org/~serkan/distfiles/${P}.tar.bz2" -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~x86 ~amd64" -IUSE="" - -COMMON_DEPEND="dev-java/jdictrayapi:0 - dev-java/jaminid:0 - dev-java/morfologik-stemming:0 - >=dev-java/jwordsplitter-2.2:0" - -DEPEND=">=virtual/jdk-1.5 - test? ( dev-java/ant-junit:0 ) - ${COMMON_DEPEND}" - -RDEPEND=">=virtual/jre-1.5 - ${COMMON_DEPEND}" - -EANT_GENTOO_CLASSPATH="jdictrayapi,jaminid,morfologik-stemming,jwordsplitter" -EANT_BUILD_TARGET="init build" -JAVA_ANT_REWRITE_CLASSPATH="true" - -src_unpack() { - unpack ${A} - cd "${S}" || die - epatch "${FILESDIR}"/${P}-build.xml.patch - rm -vr src/test/de/danielnaber/languagetool/server/HTTPServerTest.java || die "failed removing HTTPServerTest" -} - -src_test() { - ANT_TASKS="ant-junit" \ - eant -Dgentoo.classpath="$(java-pkg_getjars jdictrayapi,jaminid,morfologik-stemming,jwordsplitter):$(java-pkg_getjars --build-only junit)" test -} - -src_install() { - java-pkg_dojar dist/LanguageTool.jar - java-pkg_dojar dist/LanguageToolGUI.jar - - java-pkg_dolauncher ${PN} --main de.danielnaber.languagetool.Main - java-pkg_dolauncher ${PN}-gui --main de.danielnaber.languagetool.gui.Main - - use doc && java-pkg_dojavadoc dist/docs/api - use source && java-pkg_dosrc src/java/de - dodoc {README,CHANGES}.txt || die "dodoc failed" - insinto /usr/share/languagetool - doins -r src/{rules,resource} || die "doins failed" -} - -pkg_postinst() { - ewarn "HTTPServer of LanguageTool works unexpectedly with ASCII encoding." -} diff --git a/dev-util/abi-compliance-checker/Manifest b/dev-util/abi-compliance-checker/Manifest deleted file mode 100644 index 37b6879..0000000 --- a/dev-util/abi-compliance-checker/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST abi-compliance-checker-1.23.3.tar.gz 144011 RMD160 b38222c160d99abdb80fa8f961e77532357e176f SHA1 cdd14412ca1a2b521a5766a595d16d13b13a97fd SHA256 0a0088f911538f782f6a17517a2600365bf8f8a74710aed006cb1f3b88354c87 -EBUILD abi-compliance-checker-1.23.3.ebuild 533 RMD160 8e02b2b4a8592bd12b000ed921d3b945163ec56c SHA1 a24b940d44555ba22299db3c9676cfd368f4098f SHA256 f26e089aa7bfc64e2677b30e4cb6f50dfee9e268379ba2d7d29c8dc69354d218 diff --git a/dev-util/abi-compliance-checker/abi-compliance-checker-1.23.3.ebuild b/dev-util/abi-compliance-checker/abi-compliance-checker-1.23.3.ebuild deleted file mode 100644 index 056d7e4..0000000 --- a/dev-util/abi-compliance-checker/abi-compliance-checker-1.23.3.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI="4" - -DESCRIPTION="lightweight tool for checking backward binary compatibility of shared C/C++ libraries" -HOMEPAGE="http://ispras.linux-foundation.org/index.php/ABI_compliance_checker" -SRC_URI="http://linuxtesting.org/downloads/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="" -RDEPEND="dev-lang/perl" - -src_install() { - dobin abi-compliance-checker.pl || die - dohtml -r doc/ -} diff --git a/dev-util/silentbob/Manifest b/dev-util/silentbob/Manifest deleted file mode 100644 index 45cc0c1..0000000 --- a/dev-util/silentbob/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST silentbob-1.7.4.tar.gz 73415 RMD160 c679f93b3acbec8fb1d1d6efa0595b126b3c8468 SHA1 adebacde740756d6ace273fcc407fb4c609394e7 SHA256 0c9917716e41b621cf5d25265ad037d6be5c838f9c1061a36ef7053d238c3ca0 -EBUILD silentbob-1.7.4.ebuild 974 RMD160 6f33e6b71625faa62c5b7ea8437d4b5cad39e8af SHA1 e7167bdc7ddcda5e8db4963fd2b0dc8d0ce1cc3e SHA256 a45a635b0ebb86abf6d92c34192af6ac89e8aceb38a48994de1213b8923942cb -MISC metadata.xml 728 RMD160 01a410b140fa1eec6beacf0d40ff35c442d3c8d0 SHA1 c09d6757d72fd5cf7da0b42f608c3b81b19ac86b SHA256 a6848185b205a3736156539f43144a31d4bb5489848038e9dd3b5a71cc8bb16b diff --git a/dev-util/silentbob/metadata.xml b/dev-util/silentbob/metadata.xml deleted file mode 100644 index 1d8a23c..0000000 --- a/dev-util/silentbob/metadata.xml +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<herd>maintainer-wanted</herd> -<!--<use> - <flag name='plugins'>Enable build and install of plugins for other languages - (perl, python, ...) (experimental!)</flag> -</use> --> -<longdescription> - The SilentBob is yet another indexing tool helping you to find your way - through the software source code. Although SilentBob is also able to index - sources in many popular programming languages, currently C/C++ is the most - functional back-end. Main features are: code indexing, function call - traverse, call backtrace, file searching, and fast searching in the source - code. -</longdescription> -</pkgmetadata> diff --git a/dev-util/silentbob/silentbob-1.7.4.ebuild b/dev-util/silentbob/silentbob-1.7.4.ebuild deleted file mode 100644 index b8a3c54..0000000 --- a/dev-util/silentbob/silentbob-1.7.4.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=2 -inherit cmake-utils multilib - -DESCRIPTION="Yet another indexing tool." -HOMEPAGE="http://silentbob.sourceforge.net" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86" -# Note plugins support is disabled at sources... -#IUSE="plugins" -IUSE="" - -RDEPEND="" -DEPEND="${RDEPEND} - >=dev-util/cmake-2.6" - -DOCS="AUTHORS README" - -src_prepare() { -# if ! use plugins; then - sed '/^add_library.*plugins\/.*$/d' -i CMakeLists.txt -# else -# sed "s:/usr/lib/silent_bob/:/usr/$(get_libdir)/silent_bob/:" -i src/init.cxx -# fi -} - -src_install() { - cmake-utils_src_install - newdoc doc/FAQ_utf8 FAQ-ru_utf8 || die -# _check_build_dir -# pushd "${CMAKE_BUILD_DIR}" > /dev/null -# if use plugins; then -# insinto /usr/$(get_libdir)/silent_bob/ -# for lib in libplugin_*.so; do -# doins ${lib} || die -# done -# fi -# popd > /dev/null -} diff --git a/dev-util/yacc/ChangeLog b/dev-util/yacc/ChangeLog deleted file mode 100644 index e25bca9..0000000 --- a/dev-util/yacc/ChangeLog +++ /dev/null @@ -1,62 +0,0 @@ -# ChangeLog for dev-util/yacc -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/yacc/ChangeLog,v 1.18 2007/05/15 09:10:31 bangert Exp $ - - 14 May 2007; Thilo Bangert <bangert@gentoo.org> metadata.xml: - add <herd>no-herd</herd> - -*yacc-1.9.1-r3 (17 Jan 2007) - - 17 Jan 2007; Harald van Dijk <truedfx@gentoo.org> -yacc-1.9.1-r2.ebuild, - +yacc-1.9.1-r3.ebuild: - Create correct /usr/bin/yacc symlink after removing yacc - - 18 Aug 2005; MATSUU Takuto <matsuu@gentoo.org> yacc-1.9.1-r2.ebuild: - Stable on sh. - - 07 May 2005; Elfyn McBratney <beu@gentoo.org> yacc-1.9.1-r2.ebuild: - Add a more descriptive, er, DESCRIPTION - bug #85712. - - 01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> yacc-1.9.1-r1.ebuild, - yacc-1.9.1-r2.ebuild: - virtual/glibc -> virtual/libc - -*yacc-1.9.1-r2 (05 Apr 2004) - - 05 Apr 2004; Aron Griffis <agriffis@gentoo.org> yacc-1.9.1-r2.ebuild: - I should have bumped the rev for the previous change... doing it now. - - 05 Apr 2004; Aron Griffis <agriffis@gentoo.org> yacc-1.9.1-r1.ebuild, - files/mkstemp.patch, files/yacc-1.9.1-ia64.patch: - Propogate CFLAGS to Makefile in a sed-safe way. Use 64-bit patch from bug - 46233 (also applied to byacc) - - 05 Mar 2004; Tom Gall <tgall@gentoo.org> yacc-1.9.1-r1.ebuild: - Stable on ppc64 - - 03 Oct 2003; Aron Griffis <agriffis@gentoo.org> yacc-1.9.1-r1.ebuild: - Stable on alpha - - 23 Feb 2003; Guy Martin <gmsoft@gentoo.org> yacc-1.9.1-r1.ebuild : - Added hppa to keywords. - - 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords - -*yacc-1.9.1-r1 (1 Feb 2002) - - 25 Mar 2003; Aron Griffis <agriffis@gentoo.org> yacc-1.9.1-r1.ebuild: - Add ~alpha to KEYWORDS - - 15 Mar 2003; Jan Seidel <tuxus@gentoo.org> : - Added mips to KEYWORDS - - 05 Mar 2003; Will Woods <wwoods@gentoo.org> yacc-1.9.1-r1.ebuild: - Added alpha to KEYWORDS (skipped ~alpha, yacc is known-good on other distros) - - 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : - - Added initial ChangeLog which should be updated whenever the package is - updated in any way. This changelog is targetted to users. This means that the - comments should well explained and written in clean English. The details about - writing correct changelogs are explained in the skel.ChangeLog file which you - can find in the root directory of the portage repository. diff --git a/dev-util/yacc/Manifest b/dev-util/yacc/Manifest deleted file mode 100644 index 2ac5638..0000000 --- a/dev-util/yacc/Manifest +++ /dev/null @@ -1,6 +0,0 @@ -AUX mkstemp.patch 413 RMD160 abab4e18a574ca158dd31519fb40892ee4537e12 SHA1 fc18a93f2a8494e7cba7dfdb313b27670e2ba639 SHA256 4c73ba7bc0f4a2e012cdb030d0e727e266791f586297c3aabbf247bad5e697c6 -AUX yacc-1.9.1-ia64.patch 504 RMD160 afad61c65df5450e397731ea014456c9edefaa13 SHA1 6e18724b95643a21f845a98e542b031721a3f8ad SHA256 8bea1acbb1a2b225376df4c7b382dad05751b5fd073d1a3483a2c83e4ae4295a -DIST yacc-1.9.1.tar.Z 64805 RMD160 f0efe89f6c6d7137f1191dd5aa2c91456ff20a3b SHA1 697ea853533e325f47b6b13401d05e7c97012729 SHA256 8a0f3faf78d0ada00eea5ffd1e141bb7a979d5d570a4c8a9a6ea57e5f3751477 -EBUILD yacc-1.9.1-r4.ebuild 1205 RMD160 5094e006858d7151109ddfe508df1fbe9ae723d6 SHA1 ca6ba5791e56958fb7282296dae8f513e2efe0a3 SHA256 01d948eb1850bd070d8bcbc0db4a8fd17ed6719ada14370d1450f6f0f1527402 -MISC ChangeLog 2375 RMD160 8d7a9a66dfd541ce11358721af11f6ccf3fc31ce SHA1 c433e0078d22e8e18ba68cd0681b01f1d06d96f1 SHA256 bc89814d2ddb72be0bbada0f4d986a3b7a23284c8e96287d7b5dbed74ca4c05c -MISC metadata.xml 231 RMD160 c13056229989c3d4f448a7c7abcff3f4ee7ce13c SHA1 2d63dfb700b223f8f37c078692a81b2237896bce SHA256 4595c2615fd7c9095517949b1a920d4457f92801eb9d46307b18aafe58ec2a8a diff --git a/dev-util/yacc/files/mkstemp.patch b/dev-util/yacc/files/mkstemp.patch deleted file mode 100644 index f037e33..0000000 --- a/dev-util/yacc/files/mkstemp.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- main.c.orig 2002-12-17 14:28:54.000000000 -0500 -+++ main.c 2002-12-17 14:29:31.000000000 -0500 -@@ -264,9 +264,9 @@ - text_file_name[len + 5] = 't'; - union_file_name[len + 5] = 'u'; - -- mktemp(action_file_name); -- mktemp(text_file_name); -- mktemp(union_file_name); -+ mkstemp(action_file_name); -+ mkstemp(text_file_name); -+ mkstemp(union_file_name); - - len = strlen(file_prefix); - diff --git a/dev-util/yacc/files/yacc-1.9.1-ia64.patch b/dev-util/yacc/files/yacc-1.9.1-ia64.patch deleted file mode 100644 index c10e885..0000000 --- a/dev-util/yacc/files/yacc-1.9.1-ia64.patch +++ /dev/null @@ -1,24 +0,0 @@ ---- byacc-1.9/defs.h.busted Sat May 6 21:10:56 2000 -+++ byacc-1.9/defs.h Sat May 6 21:11:22 2000 -@@ -1,7 +1,8 @@ - #include <assert.h> - #include <ctype.h> - #include <stdio.h> -- -+#include <string.h> -+#include <stdlib.h> - - /* machine-dependent definitions */ - /* the following definitions are for the Tahoe */ -@@ -280,10 +281,3 @@ - extern int errno; - - --/* system functions */ -- --extern void free(); --extern char *calloc(); --extern char *malloc(); --extern char *realloc(); --extern char *strcpy(); - diff --git a/dev-util/yacc/metadata.xml b/dev-util/yacc/metadata.xml deleted file mode 100644 index 54494c4..0000000 --- a/dev-util/yacc/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<herd>no-herd</herd> -<maintainer> -<email>maintainer-needed@gentoo.org</email> -</maintainer> -</pkgmetadata> diff --git a/dev-util/yacc/yacc-1.9.1-r4.ebuild b/dev-util/yacc/yacc-1.9.1-r4.ebuild deleted file mode 100644 index 2a3cb8b..0000000 --- a/dev-util/yacc/yacc-1.9.1-r4.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/yacc/yacc-1.9.1-r3.ebuild,v 1.2 2007/06/26 02:06:19 mr_bones_ Exp $ - -inherit eutils toolchain-funcs - -DESCRIPTION="Yacc: Yet Another Compiler-Compiler" -HOMEPAGE="http://dinosaur.compilertools.net/#yacc" -SRC_URI="ftp://metalab.unc.edu/pub/Linux/devel/compiler-tools/${P}.tar.Z" - -LICENSE="as-is" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="app-admin/eselect-yacc" - -src_unpack() { - unpack ${A} - cd "${S}" - - # Use our CFLAGS - sed -i -e 's: -O : $(CFLAGS) :' Makefile || die 'sed failed' - - # mkstemp patch from byacc ebuild - epatch "${FILESDIR}"/mkstemp.patch - - # The following patch fixes yacc to run correctly on ia64 (and - # other 64-bit arches). See bug 46233 - epatch "${FILESDIR}"/yacc-1.9.1-ia64.patch -} - -src_compile() { - make clean || die - emake -j1 CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die -} - -src_install() { - newbin yacc yacc.yacc || die - doman yacc.1 - dodoc 00README* ACKNOWLEDGEMENTS NEW_FEATURES NO_WARRANTY NOTES README* -} - -pkg_postinst() { - "${ROOT}"/usr/bin/eselect yacc update -} - -pkg_postrm() { - "${ROOT}"/usr/bin/eselect yacc update -} diff --git a/games-emulation/dgen-sdl/ChangeLog b/games-emulation/dgen-sdl/ChangeLog deleted file mode 100644 index 4ef532c..0000000 --- a/games-emulation/dgen-sdl/ChangeLog +++ /dev/null @@ -1,43 +0,0 @@ -# ChangeLog for games-emulation/dgen-sdl -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/dgen-sdl/ChangeLog,v 1.12 2009/10/20 00:51:19 mr_bones_ Exp $ - - 20 Oct 2009; Michael Sterrett <mr_bones_@gentoo.org> dgen-sdl-1.23.ebuild: - EAPI=2; fix parallel build - - 05 Oct 2006; Michael Sterrett <mr_bones_@gentoo.org> - files/dgen-sdl-1.23-gcc34.patch, +files/dgen-sdl-1.23-gcc4.patch, - dgen-sdl-1.23.ebuild: - fix gcc4 compiling with patch from Stephen Bridges (bug #133203) - - 10 Feb 2006; Chris Gianelloni <wolf31o2@gentoo.org> dgen-sdl-1.23.ebuild: - Added RDEPEND to DEPEND so we pull in libsdl for building. - - 10 Feb 2006; Chris Gianelloni <wolf31o2@gentoo.org> dgen-sdl-1.23.ebuild: - Added modular X dependencies and closing bug #121522. - - 25 Dec 2005; Michael Sterrett <mr_bones_@gentoo.org> - +files/dgen-sdl-1.23-gcc34.patch, dgen-sdl-1.23.ebuild: - patch for gcc-3.4 (bug #116113) - - 09 Jan 2005; Sven Wegener <swegener@gentoo.org> dgen-sdl-1.23.ebuild: - Added missing parentheses in SRC_URI/*DEPEND/LICENSE. - - 18 Jul 2004; Daniel Ahlberg <aliz@gentoo.org> dgen-sdl-1.23.ebuild: - Adding amd64 keyword and gnuconfig_update, closing #53464. - - 30 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> dgen-sdl-1.23.ebuild: - don't rdepend on nasm - - 28 Sep 2003; Michael Sterrett <mr_bones_@gentoo.org> dgen-sdl-1.23.ebuild: - use games eclass; use use_with; added more docs - -*dgen-sdl-1.23 (1 Aug 2002) - - 1 Aug 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : - - Added initial ChangeLog which should be updated whenever the package is - updated in any way. This changelog is targetted to users. This means that the - comments should well explained and written in clean English. The details about - writing correct changelogs are explained in the skel.ChangeLog file which you - can find in the root directory of the portage repository. diff --git a/games-emulation/dgen-sdl/Manifest b/games-emulation/dgen-sdl/Manifest deleted file mode 100644 index efe7a3c..0000000 --- a/games-emulation/dgen-sdl/Manifest +++ /dev/null @@ -1,6 +0,0 @@ -AUX dgen-sdl-1.23-gcc34.patch 235 RMD160 850948e590db34b2fb380368ea8bdf4fb1aa0f92 SHA1 46751208f465d3d1a0deb75da3f34aa82eb6f909 SHA256 30f9411fb7e088787cfbd3e265b8176ab7d7d6fd5786f487875cdb0b0c184d99 -AUX dgen-sdl-1.23-gcc4.patch 737 RMD160 f0dd8940f6675c58592ca0f35ce57833c9f3e5cf SHA1 ab942826a7c2f3684e3f80adf2714c7f72b2e3ea SHA256 4672abe262033c8bc3e50a0679cf17e15ace3df265ec6aef7fc67f8ef141334a -DIST dgen-sdl-1.23.tar.gz 340556 RMD160 ca5ac81b4c8436a63e8d776b182735ad63ffa77a SHA1 c37096e5dd7c9f2c2c75496769d6d2b610a3a488 SHA256 44396b3b324433187cf7082d1059cd9f519f02accddd667e627a57ff8514d436 -EBUILD dgen-sdl-1.23-r1.ebuild 1265 RMD160 2c9636e663df57f8ff6465e553f344c399577fb7 SHA1 b8ea9ffd70af9e365dbde2fd5d05ebc9f2182b81 SHA256 9495039fb6da7ecedddc9afefa03c298ce760522b7a85ee29a7a6c321a272704 -MISC ChangeLog 1927 RMD160 280a270c8340601273e797b5e6e02438a6fef818 SHA1 f551377b491f75d9359b323b8db7781369d2a13e SHA256 9be6253428a5a894121fd3f3df377541d40502deb33fdadfd917eeb9b241c346 -MISC metadata.xml 158 RMD160 cbd9984bb6b426c8c9cee5022fe0a26261612fea SHA1 be5251fa1dacef5c41b74761bb1c8c54fb633b9e SHA256 1423a4fdd4a79b1728a2056d9e300f7e1074253095d82726218d9e9b953888a3 diff --git a/games-emulation/dgen-sdl/dgen-sdl-1.23-r1.ebuild b/games-emulation/dgen-sdl/dgen-sdl-1.23-r1.ebuild deleted file mode 100644 index 7c33b1b..0000000 --- a/games-emulation/dgen-sdl/dgen-sdl-1.23-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/dgen-sdl/dgen-sdl-1.23.ebuild,v 1.13 2009/10/20 00:51:19 mr_bones_ Exp $ - -EAPI=2 -inherit eutils games - -DESCRIPTION="A Linux/SDL-Port of the famous DGen MegaDrive/Genesis-Emulator" -HOMEPAGE="http://tamentis.com/projects/dgen/" -SRC_URI="http://tamentis.com/projects/dgen/files/${P}.tar.gz" - -LICENSE="dgen-sdl" -SLOT="0" -KEYWORDS="x86" -IUSE="X mmx opengl" - -RDEPEND="media-libs/libsdl - opengl? ( virtual/opengl )" -DEPEND="${RDEPEND} - X? ( x11-misc/imake ) - dev-lang/nasm" - -PATCHES=( - # gcc34.patch for bug #116113 - # gcc4.patch for bug #133203 - "${FILESDIR}/${P}-gcc34.patch" - "${FILESDIR}/${P}-gcc4.patch" -) - -src_prepare() { - base_src_prepare - # Collision with fondu - sed "s:tobin:tobin-dgen:" -i Makefile.{am,in} tobin.1 || die - mv tobin.1 tobin-dgen.1 || die - mv tobin.c tobin-dgen.c || die -} - -src_configure() { - egamesconf \ - $(use_with opengl) \ - $(use_with X x) \ - $(use_with mmx) -} - -src_compile() { - emake -C musa m68kops.h || die - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog README sample.dgenrc - prepgamesdirs -} diff --git a/games-emulation/dgen-sdl/files/dgen-sdl-1.23-gcc34.patch b/games-emulation/dgen-sdl/files/dgen-sdl-1.23-gcc34.patch deleted file mode 100644 index 4c0f1d4..0000000 --- a/games-emulation/dgen-sdl/files/dgen-sdl-1.23-gcc34.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- star/star.c.orig 2005-12-24 22:08:06.000000000 -0500 -+++ star/star.c 2005-12-24 22:08:18.000000000 -0500 -@@ -1931,7 +1931,7 @@ - case aind: case ainc: case adec: - case adsp: case axdp: - usereg(); -- default: -+ default:; - } - } - diff --git a/games-emulation/dgen-sdl/files/dgen-sdl-1.23-gcc4.patch b/games-emulation/dgen-sdl/files/dgen-sdl-1.23-gcc4.patch deleted file mode 100644 index 7b3c525..0000000 --- a/games-emulation/dgen-sdl/files/dgen-sdl-1.23-gcc4.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- musa/m68kmake.c.orig 2006-05-13 12:52:38.000000000 +0100 -+++ musa/m68kmake.c 2006-05-13 12:53:05.000000000 +0100 -@@ -1029,10 +1029,10 @@ - fprintf(filep, "/* ========================= OPCODE TABLE BUILDER ========================= */\n"); - fprintf(filep, "/* ======================================================================== */\n\n"); - -- fprintf(filep, "#include \"m68kops.h\"\n"); -- fprintf(filep, "#include \"m68kcpu.h\"\n"); - fprintf(filep, "#include <stdlib.h>\n\n"); - fprintf(filep, "#include <string.h>\n\n"); -+ fprintf(filep, "#include \"m68kops.h\"\n"); -+ fprintf(filep, "#include \"m68kcpu.h\"\n"); - - fprintf(filep, "extern void (*m68k_instruction_jump_table[])(void); /* opcode handler jump table */\n\n"); - diff --git a/games-emulation/dgen-sdl/metadata.xml b/games-emulation/dgen-sdl/metadata.xml deleted file mode 100644 index d3c2cc9..0000000 --- a/games-emulation/dgen-sdl/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<herd>games</herd> -</pkgmetadata> diff --git a/media-fonts/sil-gentium/Manifest b/media-fonts/sil-gentium/Manifest deleted file mode 100644 index f112862..0000000 --- a/media-fonts/sil-gentium/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST sil-gentium-1.1.0.zip 868259 RMD160 91d12ea4d56d5d2f401110e04b9b293827d3685d SHA1 bcb0522013275398eecdaf4c68dca2ded55292f6 SHA256 7f03ab68349253e520a3e716069bd8d628381f7b8001b3d984e85ac4da75a035 -EBUILD sil-gentium-1.1.0.ebuild 899 RMD160 cb14b394c96204e7863d555b07ba80c26503bea2 SHA1 6949f2b527461f5781337d2f7afd19be254be536 SHA256 fe2f24ee5f2d9d4deff0d89605446200b5199cc15ac98ce0832e9a21efadee73 -MISC metadata.xml 158 RMD160 e563fdca0707ee5927deab77f2e5ef79816384ca SHA1 8e4ca6d183e52cdbea8cfba08b7a7910e648fc84 SHA256 9a8722fb0b5a1992b3942e85f23df4e08f10cabc2d783ca887479abe115b3ea8 diff --git a/media-fonts/sil-gentium/metadata.xml b/media-fonts/sil-gentium/metadata.xml deleted file mode 100644 index 696065e..0000000 --- a/media-fonts/sil-gentium/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<herd>fonts</herd> -</pkgmetadata> diff --git a/media-fonts/sil-gentium/sil-gentium-1.1.0.ebuild b/media-fonts/sil-gentium/sil-gentium-1.1.0.ebuild deleted file mode 100644 index ced0233..0000000 --- a/media-fonts/sil-gentium/sil-gentium-1.1.0.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-fonts/sil-gentium/sil-gentium-1.0.2.ebuild,v 1.5 2009/04/06 17:10:43 armin76 Exp $ - -EAPI="2" -inherit font versionator - -SIL_PV=${PV//.} -MY_PV=$(get_version_component_range 1-2) -MY_P="Gentium Basic ${MY_PV}" - -DESCRIPTION="SIL Gentium Unicode font for Latin and Greek languages." -HOMEPAGE="http://scripts.sil.org/gentium" -SRC_URI="http://scripts.sil.org/cms/scripts/render_download.php?site_id=nrsi&format=file&media_id=GentiumBasic_${SIL_PV}&filename=GentiumBasic_${SIL_PV}.zip -> ${P}.zip" - -LICENSE="OFL" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" -IUSE="" - -DEPEND="|| ( app-arch/unzip app-arch/zip )" -RDEPEND="" - -DOCS="FONTLOG.txt GENTIUM-FAQ.txt" -FONT_SUFFIX="ttf" - -S=${WORKDIR}/${MY_P} -FONT_S=${S} diff --git a/media-gfx/qgfe/ChangeLog b/media-gfx/qgfe/ChangeLog deleted file mode 100644 index d9b5bde..0000000 --- a/media-gfx/qgfe/ChangeLog +++ /dev/null @@ -1,18 +0,0 @@ -# ChangeLog for media-gfx/qgfe -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: $ - - 31 Aug 2007; Peter Volkov <pva@gentoo.org> qgfe-1.0.0.ebuild: - Fixed compilation problem reported by Michael Siebert in bug #96084. - - 14 Apr 2007; Peter Volkov <pva@gentoo.org> qgfe-1.0.0.ebuild: - Another time fixed dependency. qgfe does work with qt-3*. - - 30 Aug 2006; Peter Volkov <pva@gentoo.org> qgfe-1.0.0.ebuild: - Fixed dependency. qgfe does not work with qt-4*. - -*qgfe-1.0.0.ebuild (30 Aug 2006) - - 30 Aug 2006; Peter Volkov <pva@gentoo.org> +qgfe-1.0.0.ebuild: - Initial import. - diff --git a/media-gfx/qgfe/Manifest b/media-gfx/qgfe/Manifest deleted file mode 100644 index 722f2ce..0000000 --- a/media-gfx/qgfe/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST qgfe-1.0.tar.bz2 69711 RMD160 9e991c73f71386cb7dfa604023365801404b0224 SHA1 96be3d3c929d6ca395292edb767d8b693523ded2 SHA256 19cacd8f196241ba11fcfe851c3f33b4b6d670d2cb3e275340523bfc52083798 -EBUILD qgfe-1.0.ebuild 720 RMD160 d38c43854e7413d300e59baeafd1d07af6813e38 SHA1 cfbf76b98c2754639fbd45a83488a8e4628f6429 SHA256 0f04ecb03d84a03d9d39a0e2859954a04bd63e20f6df682d6501b28f25d8e561 -MISC ChangeLog 610 RMD160 61172de095d2fd3765d754092feabb572a0271a4 SHA1 a49c13501290c83454a06d94c8ce30c5049e92fc SHA256 b079c7a57fe88ca2f902b14bda65f08aec6016fca4bebfa3ca917251fc444a83 diff --git a/media-gfx/qgfe/qgfe-1.0.ebuild b/media-gfx/qgfe/qgfe-1.0.ebuild deleted file mode 100644 index 487d26a..0000000 --- a/media-gfx/qgfe/qgfe-1.0.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -inherit qt3 eutils - -DESCRIPTION="Qgfe is a graphical interface to the gnuplot" -HOMEPAGE="http://www.xm1math.net/qgfe/" -SRC_URI="http://www.xm1math.net/qgfe/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="sci-visualization/gnuplot - x11-libs/qt:3" - -DEPEND="$RDEPEND" - -src_compile() { - eqmake3 qgfe.pro -unix PREFIX=/usr - emake || die "make failed" -} - -src_install() { - dodoc utilities/AUTHORS - rm utilities/{COPYING,AUTHORS} - make install INSTALL_ROOT="${D}" || die "install failed" - - make_desktop_entry qgfe qgfe /usr/share/qgfe/qgfe48x48.png 'Graphics;2DGraphics;' -} diff --git a/media-libs/jpeg/Manifest b/media-libs/jpeg/Manifest deleted file mode 100644 index df21572..0000000 --- a/media-libs/jpeg/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -AUX jdhuff_add.c 1808 RMD160 93810fef55e020c434a58a30c13673c2f177e40f SHA1 392d31e86e1d7d61fdbead43b79aba36b2c52a82 SHA256 3ff061fe033ae4a161c89736b65d512cbf50e60215c47bb3d302d1a12047ccff -DIST jpeg-6b-patches-1.6.tar.bz2 22573 RMD160 21290e71c116d8e543737ffd5e26b96f34e30f93 SHA1 b66629ad0380a318442be5b5b4ba945bf98035ff SHA256 23a07581f336a1e8c33f0efdb4b3ef728fe278459811b3b89258f8525dbbbcca -DIST jpegsrc.v6b.tar.gz 613261 RMD160 18892206014fbb8cae2a44e281f4ed53feaf7882 SHA1 7079f0d6c42fad0cfba382cf6ad322add1ace8f9 SHA256 75c3ec241e9996504fe02a9ed4d12f16b74ade713972f3db9e65ce95cd27e35d -EBUILD jpeg-6b-r7.ebuild 1281 RMD160 1df1fa2f54f7bf2c5303520e6dfedb9f22c8b4b4 SHA1 4eb34e6c2b8f8c24bad5cb3f04ee3a9667555b53 SHA256 a5786a5e3ded173453a0440533c8f45fa9f3657306a049e04ab846a87c50fb1f -MISC README 759 RMD160 540dab2a48f8be186900f91a3af3cfa6bd6e3c63 SHA1 a8dfd5db327b7e403b55c606881cbe2d67876403 SHA256 0e9af210899d01bff08c8f03020855b55c211cbcc9ffc6e9249ebb0693ac762c diff --git a/media-libs/jpeg/README b/media-libs/jpeg/README deleted file mode 100644 index b017aa0..0000000 --- a/media-libs/jpeg/README +++ /dev/null @@ -1,14 +0,0 @@ -jpeg with patch (jdhuff_add.c) from libtiff to enable old jpeg support. I -though this helps me to read M$ tiff files, but I was wrong. Even after -patching I receive the following error: - -convert: some.tif: unknown field with tag 37679 (0x932f) encountered. `TIFFReadDirectory'. -convert: some.tif: unknown field with tag 37680 (0x9330) encountered. `TIFFReadDirectory'. -convert: some.tif: unknown field with tag 37681 (0x9331) encountered. `TIFFReadDirectory'. -convert: Invalid YCbCr subsampling. `some.tif'. -convert: some.tif: cannot handle zero strip size. `TIFFReadDirectory'. -convert: missing an image filename `some.png'. - - -This ebuild is based on media-libs/jpeg-6b-r8 but changed revision to smaller -to avoid any possible or impossible updates of it... diff --git a/media-libs/jpeg/files/jdhuff_add.c b/media-libs/jpeg/files/jdhuff_add.c deleted file mode 100644 index 8d4221b..0000000 --- a/media-libs/jpeg/files/jdhuff_add.c +++ /dev/null @@ -1,32 +0,0 @@ -/* - * BEWARE OF KLUDGE: This subroutine is a hack for decoding illegal JPEG-in- - * TIFF encapsulations produced by Microsoft's Wang Imaging - * for Windows application with the public-domain TIFF Library. Based upon an - * examination of selected output files, this program apparently divides a JPEG - * bit-stream into consecutive horizontal TIFF "strips", such that the JPEG - * encoder's/decoder's DC coefficients for each image component are reset before - * each "strip". Moreover, a "strip" is not necessarily encoded in a multiple - * of 8 bits, so one must sometimes discard 1-7 bits at the end of each "strip" - * for alignment to the next input-Byte storage boundary. IJG JPEG Library - * decoder state is not normally exposed to client applications, so this sub- - * routine provides the TIFF Library with a "hook" to make these corrections. - * It should be called after "jpeg_start_decompress()" and before - * "jpeg_finish_decompress()", just before decoding each "strip" using - * "jpeg_read_raw_data()" or "jpeg_read_scanlines()". - * - * This kludge is not sanctioned or supported by the Independent JPEG Group, and - * future changes to the IJG JPEG Library might invalidate it. Do not send bug - * reports about this code to IJG developers. Instead, contact the author for - * advice: Scott B. Marovich <marovich@hpl.hp.com>, Hewlett-Packard Labs, 6/01. - */ -GLOBAL(void) -jpeg_reset_huff_decode (register j_decompress_ptr cinfo,register float *refbw) -{ register huff_entropy_ptr entropy = (huff_entropy_ptr)cinfo->entropy; - register int ci = 0; - - /* Re-initialize DC predictions */ - do entropy->saved.last_dc_val[ci] = -refbw[ci << 1]; - while (++ci < cinfo->comps_in_scan); - /* Discard encoded input bits, up to the next Byte boundary */ - entropy->bitstate.bits_left &= ~7; -} diff --git a/media-libs/jpeg/jpeg-6b-r7.ebuild b/media-libs/jpeg/jpeg-6b-r7.ebuild deleted file mode 100644 index 9ad0b65..0000000 --- a/media-libs/jpeg/jpeg-6b-r7.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/jpeg-6b-r7.ebuild,v 1.15 2006/09/04 03:59:21 kumba Exp $ - -inherit libtool eutils toolchain-funcs - -PATCH_VER="1.6" -DESCRIPTION="Library to load, handle and manipulate images in the JPEG format" -HOMEPAGE="http://www.ijg.org/" -SRC_URI="ftp://ftp.uu.net/graphics/jpeg/${PN}src.v${PV}.tar.gz - mirror://gentoo/${P}-patches-${PATCH_VER}.tar.bz2" - -LICENSE="as-is" -SLOT="0" -KEYWORDS="" -IUSE="" - -RDEPEND="" -DEPEND="${RDEPEND} - >=sys-devel/libtool-1.5.10-r4" - -src_unpack() { - unpack ${A} - cd "${S}" - EPATCH_SUFFIX="patch" epatch "${WORKDIR}"/patch - cat "${FILESDIR}/jdhuff_add.c" >> jdhuff.c || die "oldjpeg support failed." - elibtoolize -} - -src_compile() { - tc-export CC RANLIB AR - econf \ - --enable-shared \ - --enable-static \ - --enable-maxmem=64 \ - || die "econf failed" - emake || die "make failed" - emake -C "${WORKDIR}"/extra || die "make extra failed" -} - -src_install() { - emake install DESTDIR="${D}" || die "install" - emake -C "${WORKDIR}"/extra install DESTDIR="${D}" || die "install extra" - - dodoc README install.doc usage.doc wizard.doc change.log \ - libjpeg.doc example.c structure.doc filelist.doc \ - coderules.doc -} diff --git a/media-libs/tiff/Manifest b/media-libs/tiff/Manifest deleted file mode 100644 index f2ebdef..0000000 --- a/media-libs/tiff/Manifest +++ /dev/null @@ -1,8 +0,0 @@ -AUX tiff-3.8.2-goo-sec.patch 23249 RMD160 088a2dae843d8b29b8d45a3dbac6ff744053b270 SHA1 85dc50a60a10025757e249d869dab7eb73ba6e3c SHA256 a39643c732afbe11b7dbdc64db352f172a549c0f0bf47b08e598c231909240aa -AUX tiff-3.8.2-tiffsplit.patch 646 RMD160 14633a8b89b71f6c9aa027c25233854331d8633f SHA1 445b7bbdeaadf8362127173a4908f7e5f31ac30d SHA256 79f88d303634d52478fe36fff972aa133d3bf1d23ab4c8ad35d3baba40461a48 -AUX tiff-buffer.patch 461 RMD160 d3cfd4c59d51c8eacf1bde2b3d840dec1be6294d SHA1 7efceeec3d93a4a8b4a3cbb256b5bbc274a30f39 SHA256 c312510be0f5f77008b3eab627733fbb175b869cf9d3bc6d6b424b7117d70548 -AUX tiff-jbig.patch 14636 RMD160 88f8069cda0e1a897961e2c69e6b787a7776124d SHA1 293c174bd1137c63a85dbfc761616752d2f3644f SHA256 73e70f6cf3e63abfd7b5569e2aae0a6811020c883065dfc36d563ca2e547ccd1 -DIST tiff-3.8.2-tiff2pdf.patch.bz2 8469 RMD160 735c468464fcd4662ac571ae4a92ae1e20a4736e SHA1 c121f0ba43cde1eb9b667ae55b9cab94f1fb83ff SHA256 1811b0ea3a7e1b09b398731a60aded50cea48a80347b3196fdbfe75cf9e878b9 -DIST tiff-3.8.2.tar.gz 1336295 RMD160 1b4d825e3be08764e953fc58246d0c25ab4dd17d SHA1 549e67b6a15b42bfcd72fe17cda7c9a198a393eb SHA256 be88f037080b93ce0a337b2b3ca5e8195f76885deb6c558cc3aa872ee848fc76 -EBUILD tiff-3.8.2-r3.ebuild 1637 RMD160 2c7d9614f0dfcfa271ffacb044a42ef14c056a57 SHA1 3503526cb266e72f769b7d79bbe87fdbe75a33bd SHA256 865a980bed5e628041cf30cd6c5643366a1dcdc86df4c58932398b75de480f3a -MISC README 3065 RMD160 01bff30f33944bdea33eef27a97770ebe90a8f50 SHA1 9a77c2aa4edeba4fcdbc188b26a4373f9e62ac02 SHA256 325e14fdffe2798675672b12c24e6c8ce12092f81e532277520d5044a3decb20 diff --git a/media-libs/tiff/README b/media-libs/tiff/README deleted file mode 100644 index 85f41ea..0000000 --- a/media-libs/tiff/README +++ /dev/null @@ -1,65 +0,0 @@ -tiff with enabled old-jpeg support. Do not forgive recompile jpeg with patch -(jdhuff_add.c) from tiff. - -I though this helps me to read M$ tiff files, but I was wrong. Even after -patching I receive the following error: - -unknown field with tag 37679 (0x932f) encountered. `TIFFReadDirectory'. -unknown field with tag 37680 (0x9330) encountered. `TIFFReadDirectory'. -unknown field with tag 37681 (0x9331) encountered. `TIFFReadDirectory'. - -Well. Just found some other information, that may be of interest for somebody -reading this README file. - -From Ubuntu Bugzilla: - - -Re: crash in tiff loader from Michael R. Head at 2006-09-21 00:00:59 UTC - -My brother emails me tiffs of magazine articles from work generated by the -scanning system they have in place there. They always have this problem. He's -not very tech-savvy, so he may not be able to configure the system to generate -proper tiffs. - -Anyway, I've gone through the trouble of compiling libtiff with the "old jpeg" -support after patching and recompiling libjpeg. After doing this, I still can't -view the file: - -burner@firefighter:/tmp$ /tmp/jpg/bin/tiffinfo ~/Desktop/WELL\ LET\ ME.tif -TIFFReadDirectory: Warning, /home/burner/Desktop/WELL LET ME.tif: unknown field with tag 37679 (0x932f) encountered. -TIFFReadDirectory: Warning, /home/burner/Desktop/WELL LET ME.tif: unknown field with tag 37680 (0x9330) encountered. -TIFFReadDirectory: Warning, /home/burner/Desktop/WELL LET ME.tif: unknown field with tag 37681 (0x9331) encountered. -/home/burner/Desktop/WELL LET ME.tif: Invalid YCbCr subsampling. -TIFFReadDirectory: /home/burner/Desktop/WELL LET ME.tif: cannot handle zero strip size. - -As you can see, the last 3 unknown fields are present, but I've managed to get -libtiff to understand the takes 513 and 514. Sadly, I still can't get the data -out. - -I've collected information on this from the following links (for those that may -find this bug report in the future): -http://bugzilla.remotesensing.org/show_bug.cgi?id=156 -http://www.awaresystems.be/imaging/tiff/tifftags/jpeginterchangeformat.html -http://www.remotesensing.org/libtiff/TIFFTechNote2.html - -I've gone so far as to run Windows' own tiff viewer, and that still couldn't -extract the image data. - -End result: if you get your hands on one of these "old style jpeg in tiff" -files, you're pretty much out of luck. You'll have to negotiate with the file -supplier to provide it in a different format. - - -Re: crash in tiff loader from Michael R. Head at 2006-09-22 06:53:28 UTC - -OK, maybe you won't be out of luck. After reading Pete Savage's blog post about -recovering data, I was able to extract the jpeg living inside my tiff and -finally view the image as intended. Others may find the "foremost" program -helpful: https://launchpad.net/distros/ubuntu/+source/foremost - -foremost was able to discover 2 jpegs (one thumbnail as well as the original -scan) and an OLE document inside the evil TIFF, and it extracted them into -their own files. Just run it like so: "foremost evil.tiff" and it'll put all -the files it finds underneath and "output" directory. - - diff --git a/media-libs/tiff/files/tiff-3.8.2-goo-sec.patch b/media-libs/tiff/files/tiff-3.8.2-goo-sec.patch deleted file mode 100644 index cb55b03..0000000 --- a/media-libs/tiff/files/tiff-3.8.2-goo-sec.patch +++ /dev/null @@ -1,669 +0,0 @@ -diff -ru tiff-3.8.2/libtiff/tif_dir.c tiff-3.8.2-goo/libtiff/tif_dir.c ---- tiff-3.8.2/libtiff/tif_dir.c 2006-03-21 16:42:50.000000000 +0000 -+++ tiff-3.8.2-goo/libtiff/tif_dir.c 2006-07-14 13:52:01.027562000 +0100 -@@ -122,6 +122,7 @@ - { - static const char module[] = "_TIFFVSetField"; - -+ const TIFFFieldInfo* fip = _TIFFFindFieldInfo(tif, tag, TIFF_ANY); - TIFFDirectory* td = &tif->tif_dir; - int status = 1; - uint32 v32, i, v; -@@ -195,10 +196,12 @@ - break; - case TIFFTAG_ORIENTATION: - v = va_arg(ap, uint32); -+ const TIFFFieldInfo* fip; - if (v < ORIENTATION_TOPLEFT || ORIENTATION_LEFTBOT < v) { -+ fip = _TIFFFieldWithTag(tif, tag); - TIFFWarningExt(tif->tif_clientdata, tif->tif_name, - "Bad value %lu for \"%s\" tag ignored", -- v, _TIFFFieldWithTag(tif, tag)->field_name); -+ v, fip ? fip->field_name : "Unknown"); - } else - td->td_orientation = (uint16) v; - break; -@@ -387,11 +390,15 @@ - * happens, for example, when tiffcp is used to convert between - * compression schemes and codec-specific tags are blindly copied. - */ -+ /* -+ * better not dereference fip if it is NULL. -+ * -- taviso@google.com 15 Jun 2006 -+ */ - if(fip == NULL || fip->field_bit != FIELD_CUSTOM) { - TIFFErrorExt(tif->tif_clientdata, module, - "%s: Invalid %stag \"%s\" (not supported by codec)", - tif->tif_name, isPseudoTag(tag) ? "pseudo-" : "", -- _TIFFFieldWithTag(tif, tag)->field_name); -+ fip ? fip->field_name : "Unknown"); - status = 0; - break; - } -@@ -468,7 +475,7 @@ - if (fip->field_type == TIFF_ASCII) - _TIFFsetString((char **)&tv->value, va_arg(ap, char *)); - else { -- tv->value = _TIFFmalloc(tv_size * tv->count); -+ tv->value = _TIFFCheckMalloc(tif, tv_size, tv->count, "Tag Value"); - if (!tv->value) { - status = 0; - goto end; -@@ -563,7 +570,7 @@ - } - } - if (status) { -- TIFFSetFieldBit(tif, _TIFFFieldWithTag(tif, tag)->field_bit); -+ TIFFSetFieldBit(tif, fip->field_bit); - tif->tif_flags |= TIFF_DIRTYDIRECT; - } - -@@ -572,12 +579,12 @@ - return (status); - badvalue: - TIFFErrorExt(tif->tif_clientdata, module, "%s: Bad value %d for \"%s\"", -- tif->tif_name, v, _TIFFFieldWithTag(tif, tag)->field_name); -+ tif->tif_name, v, fip ? fip->field_name : "Unknown"); - va_end(ap); - return (0); - badvalue32: - TIFFErrorExt(tif->tif_clientdata, module, "%s: Bad value %ld for \"%s\"", -- tif->tif_name, v32, _TIFFFieldWithTag(tif, tag)->field_name); -+ tif->tif_name, v32, fip ? fip->field_name : "Unknown"); - va_end(ap); - return (0); - } -@@ -813,12 +820,16 @@ - * If the client tries to get a tag that is not valid - * for the image's codec then we'll arrive here. - */ -+ /* -+ * dont dereference fip if it's NULL. -+ * -- taviso@google.com 15 Jun 2006 -+ */ - if( fip == NULL || fip->field_bit != FIELD_CUSTOM ) - { - TIFFErrorExt(tif->tif_clientdata, "_TIFFVGetField", - "%s: Invalid %stag \"%s\" (not supported by codec)", - tif->tif_name, isPseudoTag(tag) ? "pseudo-" : "", -- _TIFFFieldWithTag(tif, tag)->field_name); -+ fip ? fip->field_name : "Unknown"); - ret_val = 0; - break; - } -diff -ru tiff-3.8.2/libtiff/tif_dirinfo.c tiff-3.8.2-goo/libtiff/tif_dirinfo.c ---- tiff-3.8.2/libtiff/tif_dirinfo.c 2006-02-07 13:51:03.000000000 +0000 -+++ tiff-3.8.2-goo/libtiff/tif_dirinfo.c 2006-07-14 13:52:00.953558000 +0100 -@@ -775,7 +775,8 @@ - TIFFErrorExt(tif->tif_clientdata, "TIFFFieldWithTag", - "Internal error, unknown tag 0x%x", - (unsigned int) tag); -- assert(fip != NULL); -+ /* assert(fip != NULL); */ -+ - /*NOTREACHED*/ - } - return (fip); -@@ -789,7 +790,8 @@ - if (!fip) { - TIFFErrorExt(tif->tif_clientdata, "TIFFFieldWithName", - "Internal error, unknown tag %s", field_name); -- assert(fip != NULL); -+ /* assert(fip != NULL); */ -+ - /*NOTREACHED*/ - } - return (fip); -diff -ru tiff-3.8.2/libtiff/tif_dirread.c tiff-3.8.2-goo/libtiff/tif_dirread.c ---- tiff-3.8.2/libtiff/tif_dirread.c 2006-03-21 16:42:50.000000000 +0000 -+++ tiff-3.8.2-goo/libtiff/tif_dirread.c 2006-07-14 13:52:00.842557000 +0100 -@@ -29,6 +29,9 @@ - * - * Directory Read Support Routines. - */ -+ -+#include <limits.h> -+ - #include "tiffiop.h" - - #define IGNORE 0 /* tag placeholder used below */ -@@ -81,6 +84,7 @@ - uint16 dircount; - toff_t nextdiroff; - int diroutoforderwarning = 0; -+ int compressionknown = 0; - toff_t* new_dirlist; - - tif->tif_diroff = tif->tif_nextdiroff; -@@ -147,13 +151,20 @@ - } else { - toff_t off = tif->tif_diroff; - -- if (off + sizeof (uint16) > tif->tif_size) { -- TIFFErrorExt(tif->tif_clientdata, module, -- "%s: Can not read TIFF directory count", -- tif->tif_name); -- return (0); -+ /* -+ * Check for integer overflow when validating the dir_off, otherwise -+ * a very high offset may cause an OOB read and crash the client. -+ * -- taviso@google.com, 14 Jun 2006. -+ */ -+ if (off + sizeof (uint16) > tif->tif_size || -+ off > (UINT_MAX - sizeof(uint16))) { -+ TIFFErrorExt(tif->tif_clientdata, module, -+ "%s: Can not read TIFF directory count", -+ tif->tif_name); -+ return (0); - } else -- _TIFFmemcpy(&dircount, tif->tif_base + off, sizeof (uint16)); -+ _TIFFmemcpy(&dircount, tif->tif_base + off, -+ sizeof (uint16)); - off += sizeof (uint16); - if (tif->tif_flags & TIFF_SWAB) - TIFFSwabShort(&dircount); -@@ -254,6 +265,7 @@ - while (fix < tif->tif_nfields && - tif->tif_fieldinfo[fix]->field_tag < dp->tdir_tag) - fix++; -+ - if (fix >= tif->tif_nfields || - tif->tif_fieldinfo[fix]->field_tag != dp->tdir_tag) { - -@@ -264,17 +276,23 @@ - dp->tdir_tag, - dp->tdir_tag, - dp->tdir_type); -- -- TIFFMergeFieldInfo(tif, -- _TIFFCreateAnonFieldInfo(tif, -- dp->tdir_tag, -- (TIFFDataType) dp->tdir_type), -- 1 ); -+ /* -+ * creating anonymous fields prior to knowing the compression -+ * algorithm (ie, when the field info has been merged) could cause -+ * crashes with pathological directories. -+ * -- taviso@google.com 15 Jun 2006 -+ */ -+ if (compressionknown) -+ TIFFMergeFieldInfo(tif, _TIFFCreateAnonFieldInfo(tif, dp->tdir_tag, -+ (TIFFDataType) dp->tdir_type), 1 ); -+ else goto ignore; -+ - fix = 0; - while (fix < tif->tif_nfields && - tif->tif_fieldinfo[fix]->field_tag < dp->tdir_tag) - fix++; - } -+ - /* - * Null out old tags that we ignore. - */ -@@ -326,6 +344,7 @@ - dp->tdir_type, dp->tdir_offset); - if (!TIFFSetField(tif, dp->tdir_tag, (uint16)v)) - goto bad; -+ else compressionknown++; - break; - /* XXX: workaround for broken TIFFs */ - } else if (dp->tdir_type == TIFF_LONG) { -@@ -540,6 +559,7 @@ - * Attempt to deal with a missing StripByteCounts tag. - */ - if (!TIFFFieldSet(tif, FIELD_STRIPBYTECOUNTS)) { -+ const TIFFFieldInfo* fip = _TIFFFieldWithTag(tif, TIFFTAG_STRIPBYTECOUNTS); - /* - * Some manufacturers violate the spec by not giving - * the size of the strips. In this case, assume there -@@ -556,7 +576,7 @@ - "%s: TIFF directory is missing required " - "\"%s\" field, calculating from imagelength", - tif->tif_name, -- _TIFFFieldWithTag(tif,TIFFTAG_STRIPBYTECOUNTS)->field_name); -+ fip ? fip->field_name : "Unknown"); - if (EstimateStripByteCounts(tif, dir, dircount) < 0) - goto bad; - /* -@@ -580,6 +600,7 @@ - } else if (td->td_nstrips == 1 - && td->td_stripoffset[0] != 0 - && BYTECOUNTLOOKSBAD) { -+ const TIFFFieldInfo* fip = _TIFFFieldWithTag(tif, TIFFTAG_STRIPBYTECOUNTS); - /* - * XXX: Plexus (and others) sometimes give a value of zero for - * a tag when they don't know what the correct value is! Try -@@ -589,13 +610,14 @@ - TIFFWarningExt(tif->tif_clientdata, module, - "%s: Bogus \"%s\" field, ignoring and calculating from imagelength", - tif->tif_name, -- _TIFFFieldWithTag(tif,TIFFTAG_STRIPBYTECOUNTS)->field_name); -+ fip ? fip->field_name : "Unknown"); - if(EstimateStripByteCounts(tif, dir, dircount) < 0) - goto bad; - } else if (td->td_planarconfig == PLANARCONFIG_CONTIG - && td->td_nstrips > 2 - && td->td_compression == COMPRESSION_NONE - && td->td_stripbytecount[0] != td->td_stripbytecount[1]) { -+ const TIFFFieldInfo* fip = _TIFFFieldWithTag(tif, TIFFTAG_STRIPBYTECOUNTS); - /* - * XXX: Some vendors fill StripByteCount array with absolutely - * wrong values (it can be equal to StripOffset array, for -@@ -604,7 +626,7 @@ - TIFFWarningExt(tif->tif_clientdata, module, - "%s: Wrong \"%s\" field, ignoring and calculating from imagelength", - tif->tif_name, -- _TIFFFieldWithTag(tif,TIFFTAG_STRIPBYTECOUNTS)->field_name); -+ fip ? fip->field_name : "Unknown"); - if (EstimateStripByteCounts(tif, dir, dircount) < 0) - goto bad; - } -@@ -870,7 +892,13 @@ - - register TIFFDirEntry *dp; - register TIFFDirectory *td = &tif->tif_dir; -- uint16 i; -+ -+ /* i is used to iterate over td->td_nstrips, so must be -+ * at least the same width. -+ * -- taviso@google.com 15 Jun 2006 -+ */ -+ -+ uint32 i; - - if (td->td_stripbytecount) - _TIFFfree(td->td_stripbytecount); -@@ -947,16 +975,18 @@ - static int - CheckDirCount(TIFF* tif, TIFFDirEntry* dir, uint32 count) - { -+ const TIFFFieldInfo* fip = _TIFFFieldWithTag(tif, dir->tdir_tag); -+ - if (count > dir->tdir_count) { - TIFFWarningExt(tif->tif_clientdata, tif->tif_name, - "incorrect count for field \"%s\" (%lu, expecting %lu); tag ignored", -- _TIFFFieldWithTag(tif, dir->tdir_tag)->field_name, -+ fip ? fip->field_name : "Unknown", - dir->tdir_count, count); - return (0); - } else if (count < dir->tdir_count) { - TIFFWarningExt(tif->tif_clientdata, tif->tif_name, - "incorrect count for field \"%s\" (%lu, expecting %lu); tag trimmed", -- _TIFFFieldWithTag(tif, dir->tdir_tag)->field_name, -+ fip ? fip->field_name : "Unknown", - dir->tdir_count, count); - return (1); - } -@@ -970,6 +1000,7 @@ - TIFFFetchData(TIFF* tif, TIFFDirEntry* dir, char* cp) - { - int w = TIFFDataWidth((TIFFDataType) dir->tdir_type); -+ const TIFFFieldInfo* fip = _TIFFFieldWithTag(tif, dir->tdir_tag); - tsize_t cc = dir->tdir_count * w; - - /* Check for overflow. */ -@@ -1013,7 +1044,7 @@ - bad: - TIFFErrorExt(tif->tif_clientdata, tif->tif_name, - "Error fetching data for field \"%s\"", -- _TIFFFieldWithTag(tif, dir->tdir_tag)->field_name); -+ fip ? fip->field_name : "Unknown"); - return (tsize_t) 0; - } - -@@ -1039,10 +1070,12 @@ - static int - cvtRational(TIFF* tif, TIFFDirEntry* dir, uint32 num, uint32 denom, float* rv) - { -+ const TIFFFieldInfo* fip; - if (denom == 0) { -+ fip = _TIFFFieldWithTag(tif, dir->tdir_tag); - TIFFErrorExt(tif->tif_clientdata, tif->tif_name, - "%s: Rational with zero denominator (num = %lu)", -- _TIFFFieldWithTag(tif, dir->tdir_tag)->field_name, num); -+ fip ? fip->field_name : "Unknown", num); - return (0); - } else { - if (dir->tdir_type == TIFF_RATIONAL) -@@ -1159,6 +1192,20 @@ - static int - TIFFFetchShortPair(TIFF* tif, TIFFDirEntry* dir) - { -+ /* -+ * Prevent overflowing the v stack arrays below by performing a sanity -+ * check on tdir_count, this should never be greater than two. -+ * -- taviso@google.com 14 Jun 2006. -+ */ -+ if (dir->tdir_count > 2) { -+ const TIFFFieldInfo* fip = _TIFFFieldWithTag(tif, dir->tdir_tag); -+ TIFFWarningExt(tif->tif_clientdata, tif->tif_name, -+ "unexpected count for field \"%s\", %lu, expected 2; ignored.", -+ fip ? fip->field_name : "Unknown", -+ dir->tdir_count); -+ return 0; -+ } -+ - switch (dir->tdir_type) { - case TIFF_BYTE: - case TIFF_SBYTE: -@@ -1329,14 +1376,15 @@ - case TIFF_DOUBLE: - return (TIFFFetchDoubleArray(tif, dir, (double*) v)); - default: -+ { const TIFFFieldInfo* fip = _TIFFFieldWithTag(tif, dir->tdir_tag); - /* TIFF_NOTYPE */ - /* TIFF_ASCII */ - /* TIFF_UNDEFINED */ - TIFFErrorExt(tif->tif_clientdata, tif->tif_name, - "cannot read TIFF_ANY type %d for field \"%s\"", - dir->tdir_type, -- _TIFFFieldWithTag(tif, dir->tdir_tag)->field_name); -- return (0); -+ fip ? fip->field_name : "Unknown"); -+ return (0); } - } - return (1); - } -@@ -1351,6 +1399,9 @@ - int ok = 0; - const TIFFFieldInfo* fip = _TIFFFieldWithTag(tif, dp->tdir_tag); - -+ if (fip == NULL) { -+ return (0); -+ } - if (dp->tdir_count > 1) { /* array of values */ - char* cp = NULL; - -@@ -1493,6 +1544,7 @@ - TIFFFetchPerSampleShorts(TIFF* tif, TIFFDirEntry* dir, uint16* pl) - { - uint16 samples = tif->tif_dir.td_samplesperpixel; -+ const TIFFFieldInfo* fip; - int status = 0; - - if (CheckDirCount(tif, dir, (uint32) samples)) { -@@ -1510,9 +1562,10 @@ - - for (i = 1; i < check_count; i++) - if (v[i] != v[0]) { -+ fip = _TIFFFieldWithTag(tif, dir->tdir_tag); - TIFFErrorExt(tif->tif_clientdata, tif->tif_name, - "Cannot handle different per-sample values for field \"%s\"", -- _TIFFFieldWithTag(tif, dir->tdir_tag)->field_name); -+ fip ? fip->field_name : "Unknown"); - goto bad; - } - *pl = v[0]; -@@ -1534,6 +1587,7 @@ - TIFFFetchPerSampleLongs(TIFF* tif, TIFFDirEntry* dir, uint32* pl) - { - uint16 samples = tif->tif_dir.td_samplesperpixel; -+ const TIFFFieldInfo* fip; - int status = 0; - - if (CheckDirCount(tif, dir, (uint32) samples)) { -@@ -1551,9 +1605,10 @@ - check_count = samples; - for (i = 1; i < check_count; i++) - if (v[i] != v[0]) { -+ fip = _TIFFFieldWithTag(tif, dir->tdir_tag); - TIFFErrorExt(tif->tif_clientdata, tif->tif_name, - "Cannot handle different per-sample values for field \"%s\"", -- _TIFFFieldWithTag(tif, dir->tdir_tag)->field_name); -+ fip ? fip->field_name : "Unknown"); - goto bad; - } - *pl = v[0]; -@@ -1574,6 +1629,7 @@ - TIFFFetchPerSampleAnys(TIFF* tif, TIFFDirEntry* dir, double* pl) - { - uint16 samples = tif->tif_dir.td_samplesperpixel; -+ const TIFFFieldInfo* fip; - int status = 0; - - if (CheckDirCount(tif, dir, (uint32) samples)) { -@@ -1591,9 +1647,10 @@ - - for (i = 1; i < check_count; i++) - if (v[i] != v[0]) { -+ fip = _TIFFFieldWithTag(tif, dir->tdir_tag); - TIFFErrorExt(tif->tif_clientdata, tif->tif_name, - "Cannot handle different per-sample values for field \"%s\"", -- _TIFFFieldWithTag(tif, dir->tdir_tag)->field_name); -+ fip ? fip->field_name : "Unknown"); - goto bad; - } - *pl = v[0]; -diff -ru tiff-3.8.2/libtiff/tif_fax3.c tiff-3.8.2-goo/libtiff/tif_fax3.c ---- tiff-3.8.2/libtiff/tif_fax3.c 2006-03-21 16:42:50.000000000 +0000 -+++ tiff-3.8.2-goo/libtiff/tif_fax3.c 2006-07-14 13:52:00.669557000 +0100 -@@ -1136,6 +1136,7 @@ - Fax3VSetField(TIFF* tif, ttag_t tag, va_list ap) - { - Fax3BaseState* sp = Fax3State(tif); -+ const TIFFFieldInfo* fip; - - assert(sp != 0); - assert(sp->vsetparent != 0); -@@ -1181,7 +1182,13 @@ - default: - return (*sp->vsetparent)(tif, tag, ap); - } -- TIFFSetFieldBit(tif, _TIFFFieldWithTag(tif, tag)->field_bit); -+ -+ if ((fip = _TIFFFieldWithTag(tif, tag))) { -+ TIFFSetFieldBit(tif, fip->field_bit); -+ } else { -+ return (0); -+ } -+ - tif->tif_flags |= TIFF_DIRTYDIRECT; - return (1); - } -diff -ru tiff-3.8.2/libtiff/tif_jpeg.c tiff-3.8.2-goo/libtiff/tif_jpeg.c ---- tiff-3.8.2/libtiff/tif_jpeg.c 2006-03-21 16:42:50.000000000 +0000 -+++ tiff-3.8.2-goo/libtiff/tif_jpeg.c 2006-07-14 13:52:00.655560000 +0100 -@@ -722,15 +722,31 @@ - segment_width = TIFFhowmany(segment_width, sp->h_sampling); - segment_height = TIFFhowmany(segment_height, sp->v_sampling); - } -- if (sp->cinfo.d.image_width != segment_width || -- sp->cinfo.d.image_height != segment_height) { -+ if (sp->cinfo.d.image_width < segment_width || -+ sp->cinfo.d.image_height < segment_height) { - TIFFWarningExt(tif->tif_clientdata, module, - "Improper JPEG strip/tile size, expected %dx%d, got %dx%d", - segment_width, - segment_height, - sp->cinfo.d.image_width, - sp->cinfo.d.image_height); -+ } -+ -+ if (sp->cinfo.d.image_width > segment_width || -+ sp->cinfo.d.image_height > segment_height) { -+ /* -+ * This case could be dangerous, if the strip or tile size has been -+ * reported as less than the amount of data jpeg will return, some -+ * potential security issues arise. Catch this case and error out. -+ * -- taviso@google.com 14 Jun 2006 -+ */ -+ TIFFErrorExt(tif->tif_clientdata, module, -+ "JPEG strip/tile size exceeds expected dimensions," -+ "expected %dx%d, got %dx%d", segment_width, segment_height, -+ sp->cinfo.d.image_width, sp->cinfo.d.image_height); -+ return (0); - } -+ - if (sp->cinfo.d.num_components != - (td->td_planarconfig == PLANARCONFIG_CONTIG ? - td->td_samplesperpixel : 1)) { -@@ -761,6 +777,22 @@ - sp->cinfo.d.comp_info[0].v_samp_factor, - sp->h_sampling, sp->v_sampling); - -+ /* -+ * There are potential security issues here for decoders that -+ * have already allocated buffers based on the expected sampling -+ * factors. Lets check the sampling factors dont exceed what -+ * we were expecting. -+ * -- taviso@google.com 14 June 2006 -+ */ -+ if (sp->cinfo.d.comp_info[0].h_samp_factor > sp->h_sampling || -+ sp->cinfo.d.comp_info[0].v_samp_factor > sp->v_sampling) { -+ TIFFErrorExt(tif->tif_clientdata, module, -+ "Cannot honour JPEG sampling factors that" -+ " exceed those specified."); -+ return (0); -+ } -+ -+ - /* - * XXX: Files written by the Intergraph software - * has different sampling factors stored in the -@@ -1521,15 +1553,18 @@ - { - JPEGState *sp = JState(tif); - -- assert(sp != 0); -+ /* assert(sp != 0); */ - - tif->tif_tagmethods.vgetfield = sp->vgetparent; - tif->tif_tagmethods.vsetfield = sp->vsetparent; - -- if( sp->cinfo_initialized ) -- TIFFjpeg_destroy(sp); /* release libjpeg resources */ -- if (sp->jpegtables) /* tag value */ -- _TIFFfree(sp->jpegtables); -+ if (sp != NULL) { -+ if( sp->cinfo_initialized ) -+ TIFFjpeg_destroy(sp); /* release libjpeg resources */ -+ if (sp->jpegtables) /* tag value */ -+ _TIFFfree(sp->jpegtables); -+ } -+ - _TIFFfree(tif->tif_data); /* release local state */ - tif->tif_data = NULL; - -@@ -1541,6 +1576,7 @@ - { - JPEGState* sp = JState(tif); - TIFFDirectory* td = &tif->tif_dir; -+ const TIFFFieldInfo* fip; - uint32 v32; - - assert(sp != NULL); -@@ -1606,7 +1642,13 @@ - default: - return (*sp->vsetparent)(tif, tag, ap); - } -- TIFFSetFieldBit(tif, _TIFFFieldWithTag(tif, tag)->field_bit); -+ -+ if ((fip = _TIFFFieldWithTag(tif, tag))) { -+ TIFFSetFieldBit(tif, fip->field_bit); -+ } else { -+ return (0); -+ } -+ - tif->tif_flags |= TIFF_DIRTYDIRECT; - return (1); - } -@@ -1726,7 +1768,11 @@ - { - JPEGState* sp = JState(tif); - -- assert(sp != NULL); -+ /* assert(sp != NULL); */ -+ if (sp == NULL) { -+ TIFFWarningExt(tif->tif_clientdata, "JPEGPrintDir", "Unknown JPEGState"); -+ return; -+ } - - (void) flags; - if (TIFFFieldSet(tif,FIELD_JPEGTABLES)) -diff -ru tiff-3.8.2/libtiff/tif_next.c tiff-3.8.2-goo/libtiff/tif_next.c ---- tiff-3.8.2/libtiff/tif_next.c 2005-12-21 12:33:56.000000000 +0000 -+++ tiff-3.8.2-goo/libtiff/tif_next.c 2006-07-14 13:52:00.556567000 +0100 -@@ -105,11 +105,16 @@ - * as codes of the form <color><npixels> - * until we've filled the scanline. - */ -+ /* -+ * Ensure the run does not exceed the scanline -+ * bounds, potentially resulting in a security issue. -+ * -- taviso@google.com 14 Jun 2006. -+ */ - op = row; - for (;;) { - grey = (n>>6) & 0x3; - n &= 0x3f; -- while (n-- > 0) -+ while (n-- > 0 && npixels < imagewidth) - SETPIXEL(op, grey); - if (npixels >= (int) imagewidth) - break; -diff -ru tiff-3.8.2/libtiff/tif_pixarlog.c tiff-3.8.2-goo/libtiff/tif_pixarlog.c ---- tiff-3.8.2/libtiff/tif_pixarlog.c 2006-03-21 16:42:50.000000000 +0000 -+++ tiff-3.8.2-goo/libtiff/tif_pixarlog.c 2006-07-14 13:52:00.483557000 +0100 -@@ -768,7 +768,19 @@ - if (tif->tif_flags & TIFF_SWAB) - TIFFSwabArrayOfShort(up, nsamples); - -- for (i = 0; i < nsamples; i += llen, up += llen) { -+ /* -+ * if llen is not an exact multiple of nsamples, the decode operation -+ * may overflow the output buffer, so truncate it enough to prevent that -+ * but still salvage as much data as possible. -+ * -- taviso@google.com 14th June 2006 -+ */ -+ if (nsamples % llen) -+ TIFFWarningExt(tif->tif_clientdata, module, -+ "%s: stride %lu is not a multiple of sample count, " -+ "%lu, data truncated.", tif->tif_name, llen, nsamples); -+ -+ -+ for (i = 0; i < nsamples - (nsamples % llen); i += llen, up += llen) { - switch (sp->user_datafmt) { - case PIXARLOGDATAFMT_FLOAT: - horizontalAccumulateF(up, llen, sp->stride, -diff -ru tiff-3.8.2/libtiff/tif_read.c tiff-3.8.2-goo/libtiff/tif_read.c ---- tiff-3.8.2/libtiff/tif_read.c 2005-12-21 12:33:56.000000000 +0000 -+++ tiff-3.8.2-goo/libtiff/tif_read.c 2006-07-14 13:52:00.467568000 +0100 -@@ -31,6 +31,8 @@ - #include "tiffiop.h" - #include <stdio.h> - -+#include <limits.h> -+ - int TIFFFillStrip(TIFF*, tstrip_t); - int TIFFFillTile(TIFF*, ttile_t); - static int TIFFStartStrip(TIFF*, tstrip_t); -@@ -272,7 +274,13 @@ - if ((tif->tif_flags & TIFF_MYBUFFER) && tif->tif_rawdata) - _TIFFfree(tif->tif_rawdata); - tif->tif_flags &= ~TIFF_MYBUFFER; -- if ( td->td_stripoffset[strip] + bytecount > tif->tif_size) { -+ /* -+ * This sanity check could potentially overflow, causing an OOB read. -+ * verify that offset + bytecount is > offset. -+ * -- taviso@google.com 14 Jun 2006 -+ */ -+ if ( td->td_stripoffset[strip] + bytecount > tif->tif_size || -+ bytecount > (UINT_MAX - td->td_stripoffset[strip])) { - /* - * This error message might seem strange, but it's - * what would happen if a read were done instead. -@@ -470,7 +478,13 @@ - if ((tif->tif_flags & TIFF_MYBUFFER) && tif->tif_rawdata) - _TIFFfree(tif->tif_rawdata); - tif->tif_flags &= ~TIFF_MYBUFFER; -- if ( td->td_stripoffset[tile] + bytecount > tif->tif_size) { -+ /* -+ * We must check this calculation doesnt overflow, potentially -+ * causing an OOB read. -+ * -- taviso@google.com 15 Jun 2006 -+ */ -+ if (td->td_stripoffset[tile] + bytecount > tif->tif_size || -+ bytecount > (UINT_MAX - td->td_stripoffset[tile])) { - tif->tif_curtile = NOTILE; - return (0); - } diff --git a/media-libs/tiff/files/tiff-3.8.2-tiffsplit.patch b/media-libs/tiff/files/tiff-3.8.2-tiffsplit.patch deleted file mode 100644 index 5422e74..0000000 --- a/media-libs/tiff/files/tiff-3.8.2-tiffsplit.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff -ruN tiff-3.7.4-old/tools/tiffsplit.c tiff-3.7.4/tools/tiffsplit.c ---- tiff-3.7.4-old/tools/tiffsplit.c 2005-05-26 20:38:48.000000000 +0200 -+++ tiff-3.7.4/tools/tiffsplit.c 2006-06-01 16:00:11.000000000 +0200 -@@ -60,14 +60,13 @@ - return (-3); - } - if (argc > 2) -- strcpy(fname, argv[2]); -+ snprintf(fname, sizeof(fname), "%s", argv[2]); - in = TIFFOpen(argv[1], "r"); - if (in != NULL) { - do { - char path[1024+1]; - newfilename(); -- strcpy(path, fname); -- strcat(path, ".tif"); -+ snprintf(path, sizeof(path), "%s.tif", fname); - out = TIFFOpen(path, TIFFIsBigEndian(in)?"wb":"wl"); - if (out == NULL) - return (-2); diff --git a/media-libs/tiff/files/tiff-buffer.patch b/media-libs/tiff/files/tiff-buffer.patch deleted file mode 100644 index b5ff2ee..0000000 --- a/media-libs/tiff/files/tiff-buffer.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- tools/tiff2pdf.c.orig 2006-06-04 18:26:40.000000000 -0700 -+++ tools/tiff2pdf.c 2006-06-04 18:27:22.000000000 -0700 -@@ -3668,7 +3668,7 @@ - written += TIFFWriteFile(output, (tdata_t) "(", 1); - for (i=0;i<len;i++){ - if((pdfstr[i]&0x80) || (pdfstr[i]==127) || (pdfstr[i]<32)){ -- sprintf(buffer, "\\%.3o", pdfstr[i]); -+ snprintf(buffer, "\\%.3o", pdfstr[i]); - written += TIFFWriteFile(output, (tdata_t) buffer, 4); - } else { - switch (pdfstr[i]){ diff --git a/media-libs/tiff/files/tiff-jbig.patch b/media-libs/tiff/files/tiff-jbig.patch deleted file mode 100644 index 58d079d..0000000 --- a/media-libs/tiff/files/tiff-jbig.patch +++ /dev/null @@ -1,510 +0,0 @@ ---- configure.orig 2005-09-12 06:52:41.000000000 -0700 -+++ configure 2006-06-06 19:41:22.000000000 -0700 -@@ -23648,6 +23648,25 @@ - fi - - -+HAVE_JBIG=no -+# Check whether --enable-jbig or --disable-jbig was given. -+if test "${enable_jbig+set}" = set; then -+ enableval="$enable_jbig" -+ HAVE_JBIG=$enableval -+else -+ HAVE_JBIG=no -+fi; -+ -+if test "$HAVE_JBIG" = "yes" ; then -+ -+cat >>confdefs.h <<\_ACEOF -+#define JBIG_SUPPORT 1 -+_ACEOF -+ -+ LIBS="-ljbig $LIBS" -+fi -+ -+ - # Check whether --enable-cxx or --disable-cxx was given. - if test "${enable_cxx+set}" = set; then - enableval="$enable_cxx" -@@ -27680,6 +27699,7 @@ - echo " Pixar log-format algorithm: ${HAVE_PIXARLOG}" - echo " JPEG support: ${HAVE_JPEG}" - echo " Old JPEG support: ${HAVE_OJPEG}" -+echo " JBIG support: ${HAVE_JBIG}" - echo "" - echo " C++ support: ${HAVE_CXX}" - echo "" ---- configure.ac.orig 2005-09-12 06:52:41.000000000 -0700 -+++ configure.ac 2006-06-06 19:35:23.000000000 -0700 -@@ -387,6 +387,22 @@ - fi - - dnl --------------------------------------------------------------------------- -+dnl Check for JBIG. -+dnl --------------------------------------------------------------------------- -+ -+HAVE_JBIG=no -+AC_ARG_ENABLE(jbig, -+ AS_HELP_STRING([--disable-jbig], -+ [disable support for JBIG]), -+ [HAVE_JBIG=$enableval], [HAVE_JBIG=no]) -+ -+if test "$HAVE_JBIG" = "yes" ; then -+ AC_DEFINE(JBIG_SUPPORT, 1, -+ [Support JBIG]) -+ LIBS="-ljbig $LIBS" -+fi -+ -+dnl --------------------------------------------------------------------------- - dnl Check for C++. - dnl --------------------------------------------------------------------------- - ---- libtiff/Makefile.in.orig 2005-09-12 09:33:05.000000000 -0700 -+++ libtiff/Makefile.in 2006-06-06 19:35:23.000000000 -0700 -@@ -97,7 +97,7 @@ - tif_compress.lo tif_dir.lo tif_dirinfo.lo tif_dirread.lo \ - tif_dirwrite.lo tif_dumpmode.lo tif_error.lo tif_extension.lo \ - tif_fax3.lo tif_fax3sm.lo tif_flush.lo tif_getimage.lo \ -- tif_jpeg.lo tif_luv.lo tif_lzw.lo tif_next.lo tif_ojpeg.lo \ -+ tif_jpeg.lo tif_jbig.lo tif_luv.lo tif_lzw.lo tif_next.lo tif_ojpeg.lo \ - tif_open.lo tif_packbits.lo tif_pixarlog.lo tif_predict.lo \ - tif_print.lo tif_read.lo tif_strip.lo tif_swab.lo \ - tif_thunder.lo tif_tile.lo tif_unix.lo tif_version.lo \ -@@ -306,6 +306,7 @@ - tif_flush.c \ - tif_getimage.c \ - tif_jpeg.c \ -+ tif_jbig.c \ - tif_luv.c \ - tif_lzw.c \ - tif_next.c \ -@@ -480,6 +481,7 @@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tif_flush.Plo@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tif_getimage.Plo@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tif_jpeg.Plo@am__quote@ -+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tif_jbig.Plo@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tif_luv.Plo@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tif_lzw.Plo@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tif_next.Plo@am__quote@ ---- libtiff/tif_config.h.in.orig 2005-07-12 09:02:04.000000000 -0700 -+++ libtiff/tif_config.h.in 2006-06-06 19:35:23.000000000 -0700 -@@ -146,6 +146,9 @@ - /* Support JPEG compression (requires IJG JPEG library) */ - #undef JPEG_SUPPORT - -+/* Support JBIG compression (requires JBIG-KIT library) */ -+#undef JBIG_SUPPORT -+ - /* Support LogLuv high dynamic range encoding */ - #undef LOGLUV_SUPPORT - ---- libtiff/tif_jbig.c.orig 2006-06-06 19:32:40.000000000 -0700 -+++ libtiff/tif_jbig.c 2006-06-06 19:35:23.000000000 -0700 -@@ -0,0 +1,340 @@ -+/* -+ * Copyright (c) 1988-1997 Sam Leffler -+ * Copyright (c) 1991-1997 Silicon Graphics, Inc. -+ * -+ * Permission to use, copy, modify, distribute, and sell this software and -+ * its documentation for any purpose is hereby granted without fee, provided -+ * that (i) the above copyright notices and this permission notice appear in -+ * all copies of the software and related documentation, and (ii) the names of -+ * Sam Leffler and Silicon Graphics may not be used in any advertising or -+ * publicity relating to the software without the specific, prior written -+ * permission of Sam Leffler and Silicon Graphics. -+ * -+ * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, -+ * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY -+ * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. -+ * -+ * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR -+ * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, -+ * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -+ * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF -+ * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE -+ * OF THIS SOFTWARE. -+ */ -+ -+/* -+ * TIFF Library. -+ * -+ * JBIG Compression Algorithm Support. -+ */ -+ -+#include "tiffio.h" -+#include "tiffiop.h" -+ -+#ifdef JBIG_SUPPORT -+#include "jbig.h" -+ -+struct JBIGState -+{ -+ uint32 recvparams; /* encoded Class 2 session params */ -+ char* subaddress; /* subaddress string */ -+ uint32 recvtime; /* time spend receiving in seconds */ -+ char* faxdcs; /* encoded fax parameters (DCS, Table 2/T.30) */ -+ -+ TIFFVGetMethod vgetparent; -+ TIFFVSetMethod vsetparent; -+}; -+ -+#define GetJBIGState(tif) ((struct JBIGState*)(tif)->tif_data) -+#define N(a) (sizeof (a) / sizeof (a[0])) -+ -+#define FIELD_RECVPARAMS (FIELD_CODEC+0) -+#define FIELD_SUBADDRESS (FIELD_CODEC+1) -+#define FIELD_RECVTIME (FIELD_CODEC+2) -+#define FIELD_FAXDCS (FIELD_CODEC+3) -+ -+static const TIFFFieldInfo jbigFieldInfo[] = -+{ -+ {TIFFTAG_FAXRECVPARAMS, 1, 1, TIFF_LONG, FIELD_RECVPARAMS, TRUE, FALSE, "FaxRecvParams"}, -+ {TIFFTAG_FAXSUBADDRESS, -1, -1, TIFF_ASCII, FIELD_SUBADDRESS, TRUE, FALSE, "FaxSubAddress"}, -+ {TIFFTAG_FAXRECVTIME, 1, 1, TIFF_LONG, FIELD_RECVTIME, TRUE, FALSE, "FaxRecvTime"}, -+ {TIFFTAG_FAXDCS, -1, -1, TIFF_ASCII, FIELD_FAXDCS, TRUE, FALSE, "FaxDcs"}, -+}; -+ -+static int JBIGSetupDecode(TIFF* tif) -+{ -+ if (TIFFNumberOfStrips(tif) != 1) -+ { -+ TIFFError("JBIG", "Multistrip images not supported in decoder"); -+ return 0; -+ } -+ -+ return 1; -+} -+ -+static int JBIGDecode(TIFF* tif, tidata_t buffer, tsize_t size, tsample_t s) -+{ -+ struct jbg_dec_state decoder; -+ int decodeStatus = 0; -+ unsigned char* pImage = NULL; -+ -+ if (isFillOrder(tif, tif->tif_dir.td_fillorder)) -+ { -+ TIFFReverseBits(tif->tif_rawdata, tif->tif_rawdatasize); -+ } -+ -+ jbg_dec_init(&decoder); -+ jbg_newlen(tif->tif_rawdata, tif->tif_rawdatasize); -+ /* -+ * I do not check the return status of jbg_newlen because even if this function -+ * fails it does not necessarily mean that decoding the image will fail. It is -+ * generally only needed for received fax images that do not contain the actual -+ * length of the image in the BIE header. I do not log when an error occurs -+ * because that will cause problems when converting JBIG encoded TIFF's to -+ * PostScript. As long as the actual image length is contained in the BIE header -+ * jbg_dec_in should succeed. -+ */ -+ -+ decodeStatus = jbg_dec_in(&decoder, tif->tif_rawdata, tif->tif_rawdatasize, NULL); -+ if (JBG_EOK != decodeStatus) -+ { -+ TIFFError("JBIG", "Error (%d) decoding: %s", decodeStatus, jbg_strerror(decodeStatus, JBG_EN)); -+ return 0; -+ } -+ -+ pImage = jbg_dec_getimage(&decoder, 0); -+ _TIFFmemcpy(buffer, pImage, jbg_dec_getsize(&decoder)); -+ jbg_dec_free(&decoder); -+ return 1; -+} -+ -+static int JBIGSetupEncode(TIFF* tif) -+{ -+ TIFFDirectory* dir = &tif->tif_dir; -+ -+ if (TIFFNumberOfStrips(tif) != 1) -+ { -+ TIFFError("JBIG", "Multistrip images not supported in encoder"); -+ return 0; -+ } -+ -+ return 1; -+} -+ -+static int JBIGCopyEncodedData(TIFF* tif, tidata_t pp, tsize_t cc, tsample_t s) -+{ -+ (void) s; -+ while (cc > 0) -+ { -+ tsize_t n = cc; -+ -+ if (tif->tif_rawcc + n > tif->tif_rawdatasize) -+ { -+ n = tif->tif_rawdatasize - tif->tif_rawcc; -+ } -+ -+ assert(n > 0); -+ _TIFFmemcpy(tif->tif_rawcp, pp, n); -+ tif->tif_rawcp += n; -+ tif->tif_rawcc += n; -+ pp += n; -+ cc -= n; -+ if (tif->tif_rawcc >= tif->tif_rawdatasize && -+ !TIFFFlushData1(tif)) -+ { -+ return (-1); -+ } -+ } -+ -+ return (1); -+} -+ -+static void JBIGOutputBie(unsigned char* buffer, size_t len, void *userData) -+{ -+ TIFF* tif = (TIFF*)userData; -+ -+ if (isFillOrder(tif, tif->tif_dir.td_fillorder)) -+ { -+ TIFFReverseBits(buffer, len); -+ } -+ -+ JBIGCopyEncodedData(tif, buffer, len, 0); -+} -+ -+static int JBIGEncode(TIFF* tif, tidata_t buffer, tsize_t size, tsample_t s) -+{ -+ TIFFDirectory* dir = &tif->tif_dir; -+ struct jbg_enc_state encoder; -+ -+ jbg_enc_init(&encoder, -+ dir->td_imagewidth, -+ dir->td_imagelength, -+ 1, -+ &buffer, -+ JBIGOutputBie, -+ tif); -+ /* -+ * jbg_enc_out does the "real" encoding. As data is encoded, JBIGOutputBie -+ * is called, which writes the data to the directory. -+ */ -+ jbg_enc_out(&encoder); -+ jbg_enc_free(&encoder); -+ -+ return 1; -+} -+ -+static void JBIGCleanup(TIFF* tif) -+{ -+ if (NULL != tif->tif_data) -+ { -+ _TIFFfree(tif->tif_data); -+ tif->tif_data = NULL; -+ } -+} -+ -+static void JBIGPrintDir(TIFF* tif, FILE* fd, long flags) -+{ -+ struct JBIGState* codec = GetJBIGState(tif); -+ (void)flags; -+ -+ if (TIFFFieldSet(tif, FIELD_RECVPARAMS)) -+ { -+ fprintf(fd, -+ " Fax Receive Parameters: %08lx\n", -+ (unsigned long)codec->recvparams); -+ } -+ -+ if (TIFFFieldSet(tif, FIELD_SUBADDRESS)) -+ { -+ fprintf(fd, -+ " Fax SubAddress: %s\n", -+ codec->subaddress); -+ } -+ -+ if (TIFFFieldSet(tif, FIELD_RECVTIME)) -+ { -+ fprintf(fd, -+ " Fax Receive Time: %lu secs\n", -+ (unsigned long)codec->recvtime); -+ } -+ -+ if (TIFFFieldSet(tif, FIELD_FAXDCS)) -+ { -+ fprintf(fd, -+ " Fax DCS: %s\n", -+ codec->faxdcs); -+ } -+} -+ -+static int JBIGVGetField(TIFF* tif, ttag_t tag, va_list ap) -+{ -+ struct JBIGState* codec = GetJBIGState(tif); -+ -+ switch (tag) -+ { -+ case TIFFTAG_FAXRECVPARAMS: -+ *va_arg(ap, uint32*) = codec->recvparams; -+ break; -+ -+ case TIFFTAG_FAXSUBADDRESS: -+ *va_arg(ap, char**) = codec->subaddress; -+ break; -+ -+ case TIFFTAG_FAXRECVTIME: -+ *va_arg(ap, uint32*) = codec->recvtime; -+ break; -+ -+ case TIFFTAG_FAXDCS: -+ *va_arg(ap, char**) = codec->faxdcs; -+ break; -+ -+ default: -+ return (*codec->vgetparent)(tif, tag, ap); -+ } -+ -+ return 1; -+} -+ -+static int JBIGVSetField(TIFF* tif, ttag_t tag, va_list ap) -+{ -+ struct JBIGState* codec = GetJBIGState(tif); -+ -+ switch (tag) -+ { -+ case TIFFTAG_FAXRECVPARAMS: -+ codec->recvparams = va_arg(ap, uint32); -+ break; -+ -+ case TIFFTAG_FAXSUBADDRESS: -+ _TIFFsetString(&codec->subaddress, va_arg(ap, char*)); -+ break; -+ -+ case TIFFTAG_FAXRECVTIME: -+ codec->recvtime = va_arg(ap, uint32); -+ break; -+ -+ case TIFFTAG_FAXDCS: -+ _TIFFsetString(&codec->faxdcs, va_arg(ap, char*)); -+ break; -+ -+ default: -+ return (*codec->vsetparent)(tif, tag, ap); -+ } -+ -+ TIFFSetFieldBit(tif, _TIFFFieldWithTag(tif, tag)->field_bit); -+ tif->tif_flags |= TIFF_DIRTYDIRECT; -+ return 1; -+} -+ -+int TIFFInitJBIG(TIFF* tif, int scheme) -+{ -+ struct JBIGState* codec = NULL; -+ -+ /* Allocate memory for the JBIGState structure.*/ -+ tif->tif_data = (tdata_t)_TIFFmalloc(sizeof(struct JBIGState)); -+ if (tif->tif_data == NULL) -+ { -+ TIFFError("TIFFInitJBIG", "Not enough memory for JBIGState"); -+ return 0; -+ } -+ _TIFFmemset(tif->tif_data, 0, sizeof(struct JBIGState)); -+ codec = GetJBIGState(tif); -+ -+ /* Initialize codec private fields */ -+ codec->recvparams = 0; -+ codec->subaddress = NULL; -+ codec->faxdcs = NULL; -+ codec->recvtime = 0; -+ -+ /* Register codec private fields with libtiff and setup function pointers*/ -+ _TIFFMergeFieldInfo(tif, jbigFieldInfo, N(jbigFieldInfo)); -+ -+ codec->vgetparent = tif->tif_tagmethods.vgetfield; -+ codec->vsetparent = tif->tif_tagmethods.vsetfield; -+ -+ tif->tif_tagmethods.vgetfield = JBIGVGetField; -+ tif->tif_tagmethods.vsetfield = JBIGVSetField; -+ tif->tif_tagmethods.printdir = JBIGPrintDir; -+ -+ -+ /* -+ * These flags are set so the JBIG Codec can control when to reverse bits and when -+ * not to and to allow the jbig decoder and bit reverser to write to memory -+ * when necessary. -+ */ -+ tif->tif_flags |= TIFF_NOBITREV; -+ tif->tif_flags &= ~TIFF_MAPPED; -+ -+ /* Setup the function pointers for encode, decode, and cleanup. */ -+ tif->tif_setupdecode = JBIGSetupDecode; -+ tif->tif_decodestrip = JBIGDecode; -+ -+ tif->tif_setupencode = JBIGSetupEncode; -+ tif->tif_encodestrip = JBIGEncode; -+ -+ tif->tif_cleanup = JBIGCleanup; -+ -+ return 1; -+} -+ -+#endif /* JBIG_SUPPORT */ ---- libtiff/tiffconf.h.in.orig 2005-07-28 01:49:24.000000000 -0700 -+++ libtiff/tiffconf.h.in 2006-06-06 19:35:23.000000000 -0700 -@@ -40,6 +40,9 @@ - /* Support JPEG compression (requires IJG JPEG library) */ - #undef JPEG_SUPPORT - -+/* Support JBIG compression (requires JBIG-KIT library) */ -+#undef JBIG_SUPPORT -+ - /* Support LogLuv high dynamic range encoding */ - #undef LOGLUV_SUPPORT - ---- libtiff/tiffconf.h.vc.orig 2005-07-28 01:49:24.000000000 -0700 -+++ libtiff/tiffconf.h.vc 2006-06-06 19:35:23.000000000 -0700 -@@ -41,6 +41,9 @@ - /* Support JPEG compression (requires IJG JPEG library) */ - /* #undef JPEG_SUPPORT */ - -+/* Support JBIG compression (requires JBIG-KIT library) */ -+#undef JBIG_SUPPORT -+ - /* Support LogLuv high dynamic range encoding */ - #define LOGLUV_SUPPORT 1 - ---- tools/tiffcp.c.orig 2005-07-08 02:03:49.000000000 -0700 -+++ tools/tiffcp.c 2006-06-06 19:44:44.000000000 -0700 -@@ -349,6 +349,8 @@ - if (cp) - defpredictor = atoi(cp+1); - defcompression = COMPRESSION_ADOBE_DEFLATE; -+ } else if (strneq(opt, "jbig", 4)) { -+ defcompression = COMPRESSION_JBIG; - } else - return (0); - return (1); -@@ -648,6 +650,12 @@ - TIFFSetField(out, TIFFTAG_JPEGQUALITY, quality); - TIFFSetField(out, TIFFTAG_JPEGCOLORMODE, jpegcolormode); - break; -+ case COMPRESSION_JBIG: -+ CopyTag(TIFFTAG_FAXRECVPARAMS, 1, TIFF_LONG); -+ CopyTag(TIFFTAG_FAXRECVTIME, 1, TIFF_LONG); -+ CopyTag(TIFFTAG_FAXSUBADDRESS, 1, TIFF_ASCII); -+ CopyTag(TIFFTAG_FAXDCS, 1, TIFF_ASCII); -+ break; - case COMPRESSION_LZW: - case COMPRESSION_ADOBE_DEFLATE: - case COMPRESSION_DEFLATE: ---- libtiff/Makefile.vc.orig 2006-06-06 19:58:40.000000000 -0700 -+++ libtiff/Makefile.vc 2006-06-06 19:59:32.000000000 -0700 -@@ -29,7 +29,7 @@ - - !INCLUDE ..\nmake.opt - --INCL = -I. $(JPEG_INCLUDE) $(ZLIB_INCLUDE) -+INCL = -I. $(JPEG_INCLUDE) $(ZLIB_INCLUDE) $(JBIG_INCLUDE) - - !IFDEF USE_WIN_CRT_LIB - OBJ_SYSDEP_MODULE = tif_unix.obj -@@ -74,6 +74,7 @@ - tif_warning.obj \ - tif_write.obj \ - tif_zip.obj \ -+ tif_jbig.obj \ - $(OBJ_SYSDEP_MODULE) - - all: libtiff.lib $(DLLNAME) diff --git a/media-libs/tiff/tiff-3.8.2-r3.ebuild b/media-libs/tiff/tiff-3.8.2-r3.ebuild deleted file mode 100644 index b3fac53..0000000 --- a/media-libs/tiff/tiff-3.8.2-r3.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-3.8.2-r2.ebuild,v 1.3 2006/09/01 12:49:03 exg Exp $ - -inherit eutils libtool - -DESCRIPTION="Library for manipulation of TIFF (Tag Image File Format) images" -HOMEPAGE="http://www.libtiff.org/" -SRC_URI="ftp://ftp.remotesensing.org/pub/libtiff/${P}.tar.gz - mirror://gentoo/${P}-tiff2pdf.patch.bz2" - -LICENSE="as-is" -SLOT="0" -KEYWORDS="" -IUSE="jpeg jbig nocxx zlib" - -DEPEND="jpeg? ( >=media-libs/jpeg-6b ) - jbig? ( >=media-libs/jbigkit-1.6-r1 ) - zlib? ( >=sys-libs/zlib-1.1.3-r2 )" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch ${WORKDIR}/${P}-tiff2pdf.patch || die "epatch tiff2pdf failed" - epatch ${FILESDIR}/${P}-tiffsplit.patch || die "epatch tiffsplit failed" - if use jbig; then - epatch "${FILESDIR}"/${PN}-jbig.patch || die "epatch jbig failed" - fi - epatch ${FILESDIR}/${P}-goo-sec.patch || die "epatch goo-sec failed" - elibtoolize -} - -src_compile() { - econf \ - $(use_enable !nocxx cxx) \ - $(use_enable zlib) \ - $(use_enable jpeg) \ - $(use_enable jpeg old-jpeg) \ - $(use_enable jbig) \ - --with-pic --without-x \ - || die "econf failed" - emake || die "emake failed" -} - -src_install() { - make install DESTDIR="${D}" || die "make install failed" - dodoc README TODO VERSION -} - -pkg_postinst() { - echo - einfo "JBIG support is intended for Hylafax fax compression, so we" - einfo "really need more feedback in other areas (most testing has" - einfo "been done with fax). Be sure to recompile anything linked" - einfo "against tiff if you rebuild it with jbig support." - echo -} diff --git a/net-p2p/xbtt/Manifest b/net-p2p/xbtt/Manifest deleted file mode 100644 index c9009fe..0000000 --- a/net-p2p/xbtt/Manifest +++ /dev/null @@ -1 +0,0 @@ -EBUILD xbtt-0_p1924.ebuild 1333 RMD160 952ba859c624532c22f80cb25ef1e667fe4db9ba SHA1 8cb39f6e5ce99d715aefa871be46bfcfd75ae965 SHA256 68674a602afdabd9f438eb9e9904e709c1b66acf005fb5fac30f42aac8e76ea3 diff --git a/net-p2p/xbtt/xbtt-0_p1924.ebuild b/net-p2p/xbtt/xbtt-0_p1924.ebuild deleted file mode 100644 index f79a614..0000000 --- a/net-p2p/xbtt/xbtt-0_p1924.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -inherit subversion toolchain-funcs cmake-utils - -DESCRIPTION="BitTorrent tracker designed to offer high performance while consuming little resources." -HOMEPAGE="http://xbtt.sourceforge.net/tracker/" -SRC_URI="" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86 ~amd64" -IUSE="" - -RDEPEND="dev-db/mysql" -DEPEND="${RDEPEND} - dev-libs/boost" - -src_unpack() { - if [[ "${PV}" =~ (_p)([0-9]+) ]] ; then - MTSLPT_REV=${BASH_REMATCH[2]} - else - MTSLPT_REV=HEAD - fi - subversion_fetch "https://xbtt.svn.sourceforge.net/svnroot/xbtt/trunk/xbt/misc/@${MTSLPT_REV}" misc \ - || die "${ESVN}: unknown problem occurred in subversion_fetch." - subversion_fetch "https://xbtt.svn.sourceforge.net/svnroot/xbtt/trunk/xbt/Tracker/@${MTSLPT_REV}" Tracker \ - || die "${ESVN}: unknown problem occurred in subversion_fetch." -} - -src_compile() { - cd Tracker && \ - cmake . || die "Cmake failed" - emake || die "build failed" -} - -src_install() { - cd Tracker && \ - dosbin xbt_tracker || die "No binary was built." - insinto /etc - newins xbt_tracker.conf.default xbt_tracker.conf || die "Default config absent." - insinto /usr/share/doc/${PF} - doins *.sql || die "Failed to install *.sql files." -} - -pkg_preinst() { - : # Avoid call to subversion_pkg_preinst -} diff --git a/net-wireless/btsco-kernel/Manifest b/net-wireless/btsco-kernel/Manifest deleted file mode 100644 index d90435c..0000000 --- a/net-wireless/btsco-kernel/Manifest +++ /dev/null @@ -1,16 +0,0 @@ -AUX btsco-0.41-kernel.patch 7527 RMD160 86be5595014832c5de655816f21357cb063bbc1e SHA1 8937eb87c8bb44bc5a682ec645253ab5583dbeab SHA256 2430f3c38b88b23fa557f52ebc45bf7f0c29c37a44053cebcd3e2ca2141e4a97 -MD5 80ab5702cb961f7005609243001c2e73 files/btsco-0.41-kernel.patch 7527 -RMD160 86be5595014832c5de655816f21357cb063bbc1e files/btsco-0.41-kernel.patch 7527 -SHA256 2430f3c38b88b23fa557f52ebc45bf7f0c29c37a44053cebcd3e2ca2141e4a97 files/btsco-0.41-kernel.patch 7527 -DIST btsco-0.41.tar.gz 528364 RMD160 4474925c1d64461290ec5d6fd4bb1fdeb32a8fa0 SHA1 9c419f2eefd9e1ae423df99e98aae1e9fb2b6527 SHA256 47d206a511347f0762f4fe02c71d5b3a6122dcf3947947723cdde1d91ebad01b -EBUILD btsco-kernel-0.41.ebuild 1498 RMD160 509c0aae5b6f2908a10fb0a09a9c8b14666ae9ab SHA1 77c9c7a7165ea65e91191a078ba6ce07ab78cb88 SHA256 b16bd77e61faed8160818375ff135c8f3c0c9bf2d4d782b6b1edb297bd3cf033 -MD5 83a5dca956088a27238a464b53e8c150 btsco-kernel-0.41.ebuild 1498 -RMD160 509c0aae5b6f2908a10fb0a09a9c8b14666ae9ab btsco-kernel-0.41.ebuild 1498 -SHA256 b16bd77e61faed8160818375ff135c8f3c0c9bf2d4d782b6b1edb297bd3cf033 btsco-kernel-0.41.ebuild 1498 -MISC bug_91558 0 RMD160 9c1185a5c5e9fc54612808977ee8f548b2258d31 SHA1 da39a3ee5e6b4b0d3255bfef95601890afd80709 SHA256 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 -MD5 d41d8cd98f00b204e9800998ecf8427e bug_91558 0 -RMD160 9c1185a5c5e9fc54612808977ee8f548b2258d31 bug_91558 0 -SHA256 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 bug_91558 0 -MD5 2d097a219ae9f4d9b6f184a26453422a files/digest-btsco-kernel-0.41 232 -RMD160 05b85d78751061c00dca956ced6a449125ca9ff1 files/digest-btsco-kernel-0.41 232 -SHA256 1704f9ce103b9f01f60603b9f66f6fb5117d58576a8ee8362c477c99556a39b0 files/digest-btsco-kernel-0.41 232 diff --git a/net-wireless/btsco-kernel/btsco-kernel-0.41.ebuild b/net-wireless/btsco-kernel/btsco-kernel-0.41.ebuild deleted file mode 100644 index e78f301..0000000 --- a/net-wireless/btsco-kernel/btsco-kernel-0.41.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -inherit eutils linux-info linux-mod - -SPKG="btsco" - -DESCRIPTION="BlueTooth headset driver for ALSA (snd-bt-sco)" -HOMEPAGE="http://bluetooth-alsa.sourceforge.net/" -SRC_URI="mirror://sourceforge/bluetooth-alsa/${SPKG}-${PV}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="-* ~x86" -IUSE="" - -DEPEND="" - -S=${WORKDIR}/${SPKG}-${PV}/kernel - -MODULE_NAMES="snd-bt-sco()" -BUILD_PARAMS="-j1" -BUILD_TARGETS="default" - -pkg_setup() { - - if kernel_is 2 4; then - die "${P} does not support building against kernel 2.4.x" - fi - - # The wording below is checked for linux-2.6.14.4 - CONFIG_CHECK="BT_SCO BT_HCIUSB_SCO SND_HWDEP" - ERROR_BT_SCO="BT_SCO is not set! \n\ - Please select 'L2CAP protocol support' and 'SCO links support' under \n\ - Networking|Bluetooth subsystem support|SCO links support" - ERROR_BT_HCIUSB_SCO="BT_HCIUSB_SCO is not set! \n\ - Please select 'HCI USB driver' under \n\ - Networking|Bluetooth subsystem support|Bluetooth device drivers|SCO (voice) support" - ERROR_SND_HWDEP="SND_HWDEP is not set! \n\ - Please select a config like SND_USB_AUDIO or SND_EMU10K1; \n\ - look under Device drivers|Sound|ALSA|PCI" - - linux-mod_pkg_setup -} - -src_unpack() { - unpack ${A} - cd ${S} - einfo "Patching ${S}/Makefile to use '${KV_DIR}'" - sed -i ${S}/Makefile -e "s,/lib/modules/\`uname -r\`/build,${KV_DIR},g" || die "Unable to patch Makefile" - epatch "${FILESDIR}"/btsco-0.41-kernel.patch -} diff --git a/net-wireless/btsco-kernel/bug_91558 b/net-wireless/btsco-kernel/bug_91558 deleted file mode 100644 index e69de29..0000000 --- a/net-wireless/btsco-kernel/bug_91558 +++ /dev/null diff --git a/net-wireless/btsco-kernel/files/btsco-0.41-kernel.patch b/net-wireless/btsco-kernel/files/btsco-0.41-kernel.patch deleted file mode 100644 index 617ac37..0000000 --- a/net-wireless/btsco-kernel/files/btsco-0.41-kernel.patch +++ /dev/null @@ -1,188 +0,0 @@ -diff -Naur btsco-0.41.orig/kernel/btsco.c btsco-0.41/kernel/btsco.c ---- btsco-0.41.orig/kernel/btsco.c 2005-09-03 23:06:58.000000000 +0400 -+++ btsco-0.41/kernel/btsco.c 2008-01-10 15:01:54.000000000 +0300 -@@ -58,6 +58,7 @@ - #include <net/bluetooth/bluetooth.h> - - #include <sound/core.h> -+#include "typedefs.h" - #include <sound/control.h> - #include <sound/pcm.h> - #include <sound/rawmidi.h> -diff -Naur btsco-0.41.orig/kernel/typedefs.h btsco-0.41/kernel/typedefs.h ---- btsco-0.41.orig/kernel/typedefs.h 1970-01-01 03:00:00.000000000 +0300 -+++ btsco-0.41/kernel/typedefs.h 2008-01-10 15:03:17.000000000 +0300 -@@ -0,0 +1,173 @@ -+/* -+ * Typedef's for backward compatibility (for out-of-kernel drivers) -+ * -+ * This file will be removed soon in future -+ */ -+ -+/* core stuff */ -+typedef struct snd_card snd_card_t; -+typedef struct snd_device snd_device_t; -+typedef struct snd_device_ops snd_device_ops_t; -+typedef enum snd_card_type snd_card_type_t; -+typedef struct snd_minor snd_minor_t; -+ -+/* info */ -+typedef struct snd_info_entry snd_info_entry_t; -+typedef struct snd_info_buffer snd_info_buffer_t; -+ -+/* control */ -+typedef struct snd_ctl_file snd_ctl_file_t; -+typedef struct snd_kcontrol snd_kcontrol_t; -+typedef struct snd_kcontrol_new snd_kcontrol_new_t; -+typedef struct snd_kcontrol_volatile snd_kcontrol_volatile_t; -+typedef struct snd_kctl_event snd_kctl_event_t; -+typedef struct snd_aes_iec958 snd_aes_iec958_t; -+typedef struct snd_ctl_card_info snd_ctl_card_info_t; -+typedef struct snd_ctl_elem_id snd_ctl_elem_id_t; -+typedef struct snd_ctl_elem_list snd_ctl_elem_list_t; -+typedef struct snd_ctl_elem_info snd_ctl_elem_info_t; -+typedef struct snd_ctl_elem_value snd_ctl_elem_value_t; -+typedef struct snd_ctl_event snd_ctl_event_t; -+#if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE) -+typedef struct snd_mixer_oss snd_mixer_oss_t; -+#endif -+ -+/* timer */ -+typedef struct snd_timer snd_timer_t; -+typedef struct snd_timer_instance snd_timer_instance_t; -+typedef struct snd_timer_id snd_timer_id_t; -+typedef struct snd_timer_ginfo snd_timer_ginfo_t; -+typedef struct snd_timer_gparams snd_timer_gparams_t; -+typedef struct snd_timer_gstatus snd_timer_gstatus_t; -+typedef struct snd_timer_select snd_timer_select_t; -+typedef struct snd_timer_info snd_timer_info_t; -+typedef struct snd_timer_params snd_timer_params_t; -+typedef struct snd_timer_status snd_timer_status_t; -+typedef struct snd_timer_read snd_timer_read_t; -+typedef struct snd_timer_tread snd_timer_tread_t; -+ -+/* PCM */ -+typedef struct snd_pcm snd_pcm_t; -+typedef struct snd_pcm_str snd_pcm_str_t; -+typedef struct snd_pcm_substream snd_pcm_substream_t; -+typedef struct snd_pcm_info snd_pcm_info_t; -+typedef struct snd_pcm_hw_params snd_pcm_hw_params_t; -+typedef struct snd_pcm_sw_params snd_pcm_sw_params_t; -+typedef struct snd_pcm_channel_info snd_pcm_channel_info_t; -+typedef struct snd_pcm_status snd_pcm_status_t; -+typedef struct snd_pcm_mmap_status snd_pcm_mmap_status_t; -+typedef struct snd_pcm_mmap_control snd_pcm_mmap_control_t; -+typedef struct snd_mask snd_mask_t; -+typedef struct snd_sg_buf snd_pcm_sgbuf_t; -+ -+typedef struct snd_interval snd_interval_t; -+typedef struct snd_xferi snd_xferi_t; -+typedef struct snd_xfern snd_xfern_t; -+typedef struct snd_xferv snd_xferv_t; -+ -+typedef struct snd_pcm_file snd_pcm_file_t; -+typedef struct snd_pcm_runtime snd_pcm_runtime_t; -+typedef struct snd_pcm_hardware snd_pcm_hardware_t; -+typedef struct snd_pcm_ops snd_pcm_ops_t; -+typedef struct snd_pcm_hw_rule snd_pcm_hw_rule_t; -+typedef struct snd_pcm_hw_constraints snd_pcm_hw_constraints_t; -+typedef struct snd_ratnum ratnum_t; -+typedef struct snd_ratden ratden_t; -+typedef struct snd_pcm_hw_constraint_ratnums snd_pcm_hw_constraint_ratnums_t; -+typedef struct snd_pcm_hw_constraint_ratdens snd_pcm_hw_constraint_ratdens_t; -+typedef struct snd_pcm_hw_constraint_list snd_pcm_hw_constraint_list_t; -+typedef struct snd_pcm_group snd_pcm_group_t; -+typedef struct snd_pcm_notify snd_pcm_notify_t; -+ -+/* rawmidi */ -+typedef struct snd_rawmidi snd_rawmidi_t; -+typedef struct snd_rawmidi_info snd_rawmidi_info_t; -+typedef struct snd_rawmidi_params snd_rawmidi_params_t; -+typedef struct snd_rawmidi_status snd_rawmidi_status_t; -+typedef struct snd_rawmidi_runtime snd_rawmidi_runtime_t; -+typedef struct snd_rawmidi_substream snd_rawmidi_substream_t; -+typedef struct snd_rawmidi_str snd_rawmidi_str_t; -+typedef struct snd_rawmidi_ops snd_rawmidi_ops_t; -+typedef struct snd_rawmidi_global_ops snd_rawmidi_global_ops_t; -+typedef struct snd_rawmidi_file snd_rawmidi_file_t; -+ -+/* hwdep */ -+typedef struct snd_hwdep snd_hwdep_t; -+typedef struct snd_hwdep_info snd_hwdep_info_t; -+typedef struct snd_hwdep_dsp_status snd_hwdep_dsp_status_t; -+typedef struct snd_hwdep_dsp_image snd_hwdep_dsp_image_t; -+typedef struct snd_hwdep_ops snd_hwdep_ops_t; -+ -+/* sequencer */ -+typedef struct snd_seq_port_info snd_seq_port_info_t; -+typedef struct snd_seq_port_subscribe snd_seq_port_subscribe_t; -+typedef struct snd_seq_event snd_seq_event_t; -+typedef struct snd_seq_addr snd_seq_addr_t; -+typedef struct snd_seq_ev_volume snd_seq_ev_volume_t; -+typedef struct snd_seq_ev_loop snd_seq_ev_loop_t; -+typedef struct snd_seq_remove_events snd_seq_remove_events_t; -+typedef struct snd_seq_query_subs snd_seq_query_subs_t; -+typedef struct snd_seq_system_info snd_seq_system_info_t; -+typedef struct snd_seq_client_info snd_seq_client_info_t; -+typedef struct snd_seq_queue_info snd_seq_queue_info_t; -+typedef struct snd_seq_queue_status snd_seq_queue_status_t; -+typedef struct snd_seq_queue_tempo snd_seq_queue_tempo_t; -+typedef struct snd_seq_queue_owner snd_seq_queue_owner_t; -+typedef struct snd_seq_queue_timer snd_seq_queue_timer_t; -+typedef struct snd_seq_queue_client snd_seq_queue_client_t; -+typedef struct snd_seq_client_pool snd_seq_client_pool_t; -+typedef struct snd_seq_instr snd_seq_instr_t; -+typedef struct snd_seq_instr_data snd_seq_instr_data_t; -+typedef struct snd_seq_instr_header snd_seq_instr_header_t; -+ -+typedef struct snd_seq_user_client user_client_t; -+typedef struct snd_seq_kernel_client kernel_client_t; -+typedef struct snd_seq_client client_t; -+typedef struct snd_seq_queue queue_t; -+ -+/* seq_device */ -+typedef struct snd_seq_device snd_seq_device_t; -+typedef struct snd_seq_dev_ops snd_seq_dev_ops_t; -+ -+/* seq_midi */ -+typedef struct snd_midi_event snd_midi_event_t; -+ -+/* seq_midi_emul */ -+typedef struct snd_midi_channel snd_midi_channel_t; -+typedef struct snd_midi_channel_set snd_midi_channel_set_t; -+typedef struct snd_midi_op snd_midi_op_t; -+ -+/* seq_oss */ -+typedef struct snd_seq_oss_arg snd_seq_oss_arg_t; -+typedef struct snd_seq_oss_callback snd_seq_oss_callback_t; -+typedef struct snd_seq_oss_reg snd_seq_oss_reg_t; -+ -+/* virmidi */ -+typedef struct snd_virmidi_dev snd_virmidi_dev_t; -+typedef struct snd_virmidi snd_virmidi_t; -+ -+/* seq_instr */ -+typedef struct snd_seq_kcluster snd_seq_kcluster_t; -+typedef struct snd_seq_kinstr_ops snd_seq_kinstr_ops_t; -+typedef struct snd_seq_kinstr snd_seq_kinstr_t; -+typedef struct snd_seq_kinstr_list snd_seq_kinstr_list_t; -+ -+/* ac97 */ -+typedef struct snd_ac97_bus ac97_bus_t; -+typedef struct snd_ac97_bus_ops ac97_bus_ops_t; -+typedef struct snd_ac97_template ac97_template_t; -+typedef struct snd_ac97 ac97_t; -+ -+/* opl3/4 */ -+typedef struct snd_opl3 opl3_t; -+typedef struct snd_opl4 opl4_t; -+ -+/* mpu401 */ -+typedef struct snd_mpu401 mpu401_t; -+ -+/* i2c */ -+typedef struct snd_i2c_device snd_i2c_device_t; -+typedef struct snd_i2c_bus snd_i2c_bus_t; -+ -+typedef struct snd_ak4531 ak4531_t; -+ diff --git a/net-wireless/btsco-kernel/files/digest-btsco-kernel-0.41 b/net-wireless/btsco-kernel/files/digest-btsco-kernel-0.41 deleted file mode 100644 index eca27a4..0000000 --- a/net-wireless/btsco-kernel/files/digest-btsco-kernel-0.41 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 111efb0f7092c92c4dd376eec96aa2e7 btsco-0.41.tar.gz 528364 -RMD160 4474925c1d64461290ec5d6fd4bb1fdeb32a8fa0 btsco-0.41.tar.gz 528364 -SHA256 47d206a511347f0762f4fe02c71d5b3a6122dcf3947947723cdde1d91ebad01b btsco-0.41.tar.gz 528364 diff --git a/net-wireless/btsco/Manifest b/net-wireless/btsco/Manifest deleted file mode 100644 index aab1183..0000000 --- a/net-wireless/btsco/Manifest +++ /dev/null @@ -1,16 +0,0 @@ -AUX rc.headset 1018 RMD160 f07b8e2f1ee91978387a3ff15140bc758733c87e SHA1 8c7e681fe3e23c17cab27c0c445339e5e633166e SHA256 3fc8401d69288f1b6c28491a5960c038041ea2bfa3d46418853ce27d919d781f -MD5 f4dd6ba390aca08f13c690264b62889d files/rc.headset 1018 -RMD160 f07b8e2f1ee91978387a3ff15140bc758733c87e files/rc.headset 1018 -SHA256 3fc8401d69288f1b6c28491a5960c038041ea2bfa3d46418853ce27d919d781f files/rc.headset 1018 -DIST btsco-0.41.tar.gz 528364 RMD160 4474925c1d64461290ec5d6fd4bb1fdeb32a8fa0 SHA1 9c419f2eefd9e1ae423df99e98aae1e9fb2b6527 SHA256 47d206a511347f0762f4fe02c71d5b3a6122dcf3947947723cdde1d91ebad01b -EBUILD btsco-0.41.ebuild 1561 RMD160 d6e51e77e7aaab6780022f5f5e433c96f2488243 SHA1 e6fe4c66684555e2595bce1e131684510159f65f SHA256 1420a6ed453d00b5cc96aed50d1d208162e47470fe29a9681b46595841f0a774 -MD5 a84c510b318de3855aad2823a876b1de btsco-0.41.ebuild 1561 -RMD160 d6e51e77e7aaab6780022f5f5e433c96f2488243 btsco-0.41.ebuild 1561 -SHA256 1420a6ed453d00b5cc96aed50d1d208162e47470fe29a9681b46595841f0a774 btsco-0.41.ebuild 1561 -MISC bug_91558 0 RMD160 9c1185a5c5e9fc54612808977ee8f548b2258d31 SHA1 da39a3ee5e6b4b0d3255bfef95601890afd80709 SHA256 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 -MD5 d41d8cd98f00b204e9800998ecf8427e bug_91558 0 -RMD160 9c1185a5c5e9fc54612808977ee8f548b2258d31 bug_91558 0 -SHA256 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 bug_91558 0 -MD5 2d097a219ae9f4d9b6f184a26453422a files/digest-btsco-0.41 232 -RMD160 05b85d78751061c00dca956ced6a449125ca9ff1 files/digest-btsco-0.41 232 -SHA256 1704f9ce103b9f01f60603b9f66f6fb5117d58576a8ee8362c477c99556a39b0 files/digest-btsco-0.41 232 diff --git a/net-wireless/btsco/btsco-0.41.ebuild b/net-wireless/btsco/btsco-0.41.ebuild deleted file mode 100644 index d29969e..0000000 --- a/net-wireless/btsco/btsco-0.41.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -inherit autotools - -SPKG="btsco" -DESCRIPTION="A userspace daemon to send audio to a BT headset via ALSA" -HOMEPAGE="http://bluetooth-alsa.sourceforge.net/" -SRC_URI="mirror://sourceforge/bluetooth-alsa/${SPKG}-${PV}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="-* ~x86" -IUSE="alsa ao skype" - -RDEPEND=">=net-wireless/bluez-utils-2.19 - alsa? ( media-sound/alsa-utils ) - ao? ( >=media-libs/libao-0.8.5 ) - skype? ( net-im/skype - sys-apps/dbus ) - >=net-wireless/btsco-kernel-${PV}" - -DEPEND="sys-apps/gawk - ${RDEPEND}" - -S=${WORKDIR}/${SPKG}-${PV} -MY_S_SKYPE=${S}/contrib/skype_bt_hijacker -MY_D_SKYPE=/usr/libexec/${PN} - -src_compile() { - local myconf - - export WANT_AUTOMAKE="1.9.6" - eautoreconf || die "autotools failed" - - econf \ - $(use_enable alsa alsaplugin) \ - $(use_enable ao ) || die "econf failed" - emake || die "emake failed" - - if use skype; then - cd ${MY_S_SKYPE} - emake || die "emake failed" - fi -} - -src_install() { - cd ${S} - make install DESTDIR="${D}" || die "make install failed" - - dobin btsco btsco2 a2play a2recv avrecv avsnd \ - sbc/rcplay sbc/sbcdec sbc/sbcenc sbc/sbcinfo - - dodoc AUTHORS COPYING* ChangeLog NEWS README - - use ao && dobin sbc/sbcdec_ao - use alsa && newdoc bt/BUILD README.alsaplugin - - if use skype; then - cd ${MY_S_SKYPE} - dodir ${MY_D_SKYPE} - - make install PREFIX=${D}/${MY_D_SKYPE} - dosym ${MY_D_SKYPE}/skype_bt_hijacker /usr/bin - - docinto Skype - dodoc ${MY_S_SKYPE}/README ${MY_S_SKYPE}/ChangeLog - fi -} diff --git a/net-wireless/btsco/bug_91558 b/net-wireless/btsco/bug_91558 deleted file mode 100644 index e69de29..0000000 --- a/net-wireless/btsco/bug_91558 +++ /dev/null diff --git a/net-wireless/btsco/files/digest-btsco-0.41 b/net-wireless/btsco/files/digest-btsco-0.41 deleted file mode 100644 index eca27a4..0000000 --- a/net-wireless/btsco/files/digest-btsco-0.41 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 111efb0f7092c92c4dd376eec96aa2e7 btsco-0.41.tar.gz 528364 -RMD160 4474925c1d64461290ec5d6fd4bb1fdeb32a8fa0 btsco-0.41.tar.gz 528364 -SHA256 47d206a511347f0762f4fe02c71d5b3a6122dcf3947947723cdde1d91ebad01b btsco-0.41.tar.gz 528364 diff --git a/net-wireless/btsco/files/rc.headset b/net-wireless/btsco/files/rc.headset deleted file mode 100644 index db275e6..0000000 --- a/net-wireless/btsco/files/rc.headset +++ /dev/null @@ -1,48 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -depend() { - need bluetooth alsasound -} - -checkconfig() { - # check that the configuration file has been configured. - if [ -z "$BDADDR" ]; then - eerror "You should setup BDADDR in /etc/conf.d/headset." - return 1 - fi - - # define BTSCO in /etc/conf.d/headset to be btsco or btsco2 - # defaults to btsco - if [ -z "$BTSCO" ]; then - BTSCO=btsco - fi - - if ! [ -d /sys/module/snd_bt_sco ]; then - ebegin "Loading bluetooth-alsa kernel module (snd_bt_sco)." - /sbin/modprobe snd-bt-sco - eend $? || return 1 - fi -} - -start() { - checkconfig || return 1 - - ebegin "Connecting to headset" - start-stop-daemon --start \ - --make-pidfile --pidfile /var/run/$BTSCO \ - --background --exec /usr/bin/$BTSCO -- $BDADDR - sleep 1 - ps -C $BTSCO >/dev/null - eend $? -} - -stop() { - ebegin "Stopping $BTSCO daemon" - start-stop-daemon --stop --quiet --pidfile /var/run/$BTSCO - eend ${?} - -} - diff --git a/sys-apps/groff/ChangeLog b/sys-apps/groff/ChangeLog deleted file mode 100644 index 6a7aedb..0000000 --- a/sys-apps/groff/ChangeLog +++ /dev/null @@ -1,323 +0,0 @@ -# ChangeLog for sys-apps/groff -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/groff/ChangeLog,v 1.82 2008/06/24 11:02:02 mduft Exp $ - - 24 Jun 2008; Markus Duft <mduft@gentoo.org> groff-1.19.2-r3.ebuild: - added missing dependencies to X11 libraries (bug #219003) - -*groff-1.19.2-r3 (05 May 2008) - - 05 May 2008; Ulrich Mueller <ulm@gentoo.org> -groff-1.19.2-r2.ebuild, - +groff-1.19.2-r3.ebuild: - Install gxditview application defaults under /usr/share, fixes bug 220037. - -*groff-1.19.2-r2 (24 Feb 2008) - - 24 Feb 2008; Mike Frysinger <vapier@gentoo.org> - +files/groff-1.19.2-man-unicode-dashes.patch, +groff-1.19.2-r2.ebuild: - Make sure we forces dashes in unicode to the traditional "-" so that users - dont get confused by the pretty looking versions #121502. - - 30 Dec 2006; Mamoru KOMACHI <usata@gentoo.org> groff-1.19.2-r1.ebuild: - Added eautoreconf and --enable-japanese in order to get cjk patch working - for man-pages-ja. See bug #134377. - - 30 Dec 2006; Mike Frysinger <vapier@gentoo.org> groff-1.19.2-r1.ebuild: - Add support for USE=cjk #134377. - - 29 Dec 2006; Mike Frysinger <vapier@gentoo.org> groff-1.19.2-r1.ebuild: - Fix from Chris Mayo for doc install paths #155073. - - 09 Nov 2006; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org> - groff-1.19.2-r1.ebuild: - Stable on mips - - 17 Oct 2006; Roy Marples <uberlord@gentoo.org> groff-1.19.1-r2.ebuild: - Added ~sparc-fbsd keyword. - - 26 Sep 2006; Gustavo Zacarias <gustavoz@gentoo.org> - groff-1.19.2-r1.ebuild: - Stable on hppa wrt #146509 - - 14 Sep 2006; Gustavo Zacarias <gustavoz@gentoo.org> - groff-1.19.2-r1.ebuild: - Stable on sparc wrt #146509 - - 13 Sep 2006; Aron Griffis <agriffis@gentoo.org> groff-1.19.2-r1.ebuild: - Mark 1.19.2-r1 stable on ia64. #146509 - - 13 Sep 2006; Olivier Crête <tester@gentoo.org> groff-1.19.2-r1.ebuild: - Stable on amd64 per bug #146509 - - 10 Sep 2006; <ticho@gentoo.org> groff-1.19.2-r1.ebuild: - Stable on x86, security bug #146509. - - 10 Sep 2006; Christel Dahlskjaer <christel@gentoo.org> - groff-1.19.2-r1.ebuild: - Alpha stable for bug #146509 - - 08 Sep 2006; Stephanie Lockwood-Childs <wormo@gentoo.org> - groff-1.19.2-r1.ebuild: - stable on ppc (Bug #146509) - - 06 Sep 2006; Markus Rothe <corsair@gentoo.org> groff-1.19.2-r1.ebuild: - Stable on ppc64; bug #146509 - - 23 May 2006; <solar@gentoo.org> -groff-1.18.1-r4.ebuild, - -groff-1.18.1.1.ebuild: - - removed obsolete/vuln ebuilds - - 14 Apr 2006; Mark Loeser <halcy0n@gentoo.org> - +files/groff-1.18.1.1-gcc41.patch, groff-1.18.1.1.ebuild: - Add patch to fix compilation with gcc-4.1, thanks to KIMURA Masaru <hiyuh - DOT root AT gmail DOT com>; bug #125533 - - 30 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> groff-1.19.2-r1.ebuild: - Add ~x86-fbsd keyword. - - 15 Mar 2006; Danny van Dyk <kugelfang@gentoo.org> - +files/groff-1.19.1-gcc-4.1.patch, groff-1.19.1-r2.ebuild: - Added a patch allow compilation with gcc-4.1.0. - -*groff-1.19.2-r1 (03 Mar 2006) - - 03 Mar 2006; Mike Frysinger <vapier@gentoo.org> +groff-1.19.2-r1.ebuild: - Add back in symlinks for man #123674 by Justin Findlay. - -*groff-1.19.2 (18 Nov 2005) - - 18 Nov 2005; Mike Frysinger <vapier@gentoo.org> - +files/groff-1.19.2-infoext.patch, - +files/groff-1.19.2-parallel-make.patch, +groff-1.19.2.ebuild: - Version bump thanks to Christian Heim #112819. - -*groff-1.18.1.1 (29 Oct 2005) - - 29 Oct 2005; Mamoru KOMACHI <usata@gentoo.org> - +files/groff_1.18.1.1-10-fix.patch, +groff-1.18.1.1.ebuild: - Version bumped. Thanks to Atsushi Kobayashi <loudear@iswebnet.com>; - bug #109769. - - 29 Sep 2005; Mamoru KOMACHI <usata@gentoo.org> groff-1.19.1-r2.ebuild: - Block man-pages-ja for groff-1.19 since groff-1.19 doesn't support m17n; - bug #104692. - - 27 Apr 2005; Mike Frysinger <vapier@gentoo.org> - files/groff-1.18-no-netpbm-depend.patch, groff-1.19.1-r2.ebuild: - Update the netpbm to work with shells that suck (like on SunOS) #89174. - - 02 Jan 2005; Ciaran McCreesh <ciaranm@gentoo.org> : - Change encoding to UTF-8 for GLEP 31 compliance - - 13 Dec 2004; Mike Frysinger <vapier@gentoo.org> - +files/groff-1.19.1-parallel-make.patch, groff-1.19.1-r2.ebuild: - Clean up the ebuild. Add support for cross-compiling. Try to fix parallel - build (works for me :D). - - 05 Nov 2004; Hardave Riar <hardave@gentoo.org> groff-1.19.1-r2.ebuild: - Stable on mips, bug #68404. - - 05 Nov 2004; Lars Weiler <pylon@gentoo.org> groff-1.19.1-r2.ebuild: - Stable on ppc, bug #68404. - - 04 Nov 2004; Travis Tilley <lv@gentoo.org> groff-1.19.1-r2.ebuild: - stable on amd64 - - 04 Nov 2004; Markus Rothe <corsair@gentoo.org> groff-1.19.1-r2.ebuild: - Stable on ppc64, bug #68404 - - 04 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org> groff-1.19.1-r2.ebuild: - Stable on sparc wrt #68404 - - 04 Nov 2004; Bryan Østergaard <kloeri@gentoo.org> groff-1.19.1-r2.ebuild: - Stable on alpha, bug 68404. - -*groff-1.19.1-r2 (03 Nov 2004) - - 03 Nov 2004; Mike Frysinger <vapier@gentoo.org> - +files/groff-1.19.1-tmpfile.patch, +groff-1.19.1-r2.ebuild: - Add patch to resolve tempfile access issues #68404. - - 01 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org> groff-1.19.1-r1.ebuild: - Stable on sparc - - 01 Nov 2004; Joshua Kinard <kumba@gentoo.org> groff-1.19.1-r1.ebuild: - Marked stable on mips. - - 03 Oct 2004; Mike Frysinger <vapier@gentoo.org> groff-1.19.1-r1.ebuild: - Fix pic2graph again #36842 by Malte S. Stretz. - -*groff-1.19.1-r1 (19 Sep 2004) - - 19 Sep 2004; Mike Frysinger <vapier@gentoo.org> - +files/groff-1.19.1-stack.patch, +groff-1.19.1-r1.ebuild: - Add patch to fix stack issues with X.org and such #64117 by Matteo Settenvini - and Stephane LOEUILLET. - - 13 Sep 2004; <solar@gentoo.org> groff-1.19.1.ebuild: - minor touchups to the ebuild - -*groff-1.19.1 (13 Sep 2004) - - 13 Sep 2004; <solar@gentoo.org> +groff-1.19.1.ebuild: - version bump. bug 63832 - - 14 Jul 2004; Travis Tilley <lv@gentoo.org> groff-1.19.ebuild: - added filter-flags -fnew-ra, fixes bug 57033 - - 30 Jun 2004; Aron Griffis <agriffis@gentoo.org> groff-1.18.1-r1.ebuild: - sync IUSE (+X), trim trailing whitespace - - 27 Jun 2004; Aron Griffis <agriffis@gentoo.org> groff-1.18.1-r1.ebuild, - groff-1.18.1-r2.ebuild, groff-1.18.1-r3.ebuild, groff-1.18.1-r4.ebuild, - groff-1.19.ebuild: - QA - fix use invocation - - 11 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> groff-1.19.ebuild: - Stable on alpha. - - 17 Apr 2004; Travis Tilley <lv@gentoo.org> groff-1.19.ebuild: - marked stable on amd64 - -*groff-1.19 (29 Feb 2004) - - 29 Feb 2004; Martin Schlemmer <azarah@gentoo.org> groff-1.19.ebuild: - Update version. - -*groff-1.18.1-r4 (06 Jan 2004) - - 06 Jan 2004; Aron Griffis <agriffis@gentoo.org> groff-1.18.1-r4.ebuild: - Fix bug 36008 by replacing -Os with -O on alpha. Additionally make the build - more deterministic by using use_enable for cjk instead of only adding - --enable-multibyte. - - 15 Dec 2003; <agriffis@gentoo.org> groff-1.18.1-r3.ebuild: - ia64 keyword disappeared! Added it to 1.18.1-r3 - - 30 Oct 2003; Brandy Westcott brandy@gentoo.org groff-1.18.1-r3.ebuild: - Fix syntax error in pic2graph. Closes bug #32300. - - 28 Sep 2003; Martin Holzer <mholzer@gentoo.org> groff-1.18-r2.ebuild, - groff-1.18-r3.ebuild, groff-1.18.1-r1.ebuild, groff-1.18.1-r2.ebuild, - groff-1.18.1-r3.ebuild, groff-1.18.1.ebuild: - Changed SRC_URI. Closes #29746. - - 17 Sep 2003; Jon Portnoy <avenj@gentoo.org> groff-1.18.1-r3.ebuild : - ia64 keywords. - -*groff-1.18.1-r3 (04 Aug 2003) - - 04 Aug 2003; Martin Schlemmer <azarah@gentoo.org> groff-1.18.1-r3.ebuild, - files/groff-man-UTF-8.diff: - Fix 'man -t' having a blank page as first (bug #25735), thanks to splite - <splite-gentoo@sigint.cs.purdue.edu>. - - 24 Jun 2003; Aron Griffis <agriffis@gentoo.org> groff-1.18.1-r2.ebuild: - Mark stable on alpha - -*groff-1.18.1-r2 (18 Mar 2003) - - 23 Jun 2003; Masatomo Nakano <nakano@gentoo.org> : - Fixed digest file for CJK - - 22 Jun 2003; Joshua Kinard <kumba@gentoo.org> groff-1.18.1-r2.ebuild: - Changed ~sparc to sparc in KEYWORDS - - 19 Jun 2003; Masatomo Nakano <nakano@gentoo.org> groff-1.18.1-r2.ebuild, - files/groff_1.18.1-7-fix.patch: - Added Japanese support. #22899. Thanks to MATSUU Takuto <matsuu@7501.net> - - 18 May 2003; Tavis Ormandy <taviso@gentoo.org> groff-1.18.1-r1.ebuild: - stripping some flags if cxx is being used. - - 09 May 2003; Guy Martin <gmsoft@gentoo.org> groff-1.18.1-r2.ebuild : - Filter the -march=2.0 on hppa because it gave a b0rked groff. - Added hppa to KEYWORDS. - - 18 Mar 2003; Markus Bertheau <ska-fan@gentoo.org> groff-1.18.1-r2.ebuild, - files/groff-man-UTF-8.diff: - Add a patch that fixes display of man pages in UTF-8 locales - - 13 Mar 2003; Olivier Reisch <doctomoe@gentoo.org> groff-1.18.1-r1.ebuild : - Marked ppc stable - -*groff-1.18.1-r1 (08 Feb 2003) - - 18 Mar 2003; Christian Birchinger <joker@gentoo.org> groff-1.18.1-r1.ebuild: - Mark as stable for sparc. - - 24 Feb 2003; Nicholas Wourms <dragon@gentoo.org> groff-1.18.1-r1.ebuild : - Mark as stable for mips. - - 24 Feb 2003; Martin Schlemmer <azarah@gentoo.org> groff-1.18.1-r1.ebuild : - Add =sys-apps/texinfo-4.0 to DEPEND, closing bug #16186. - - 20 Feb 2003; Zach Welch <zwelch@gentoo.org> groff-1.18.1.ebuild : - Added arm to keywords. - - 08 Feb 2003; Martin Schlemmer <azarah@gentoo.org> groff-1.18.1-r1.ebuild : - Do not segfault if no color is defined in input, bug #14329. - - 07 Feb 2003; Guy Martin <gmsoft@gentoo.org> groff-1.18.1.ebuild : - Added hppa to keywords. - - 08 Jan 2003; Martin Schlemmer <azarah@gentoo.org> groff-1.18-r3.ebuild : - Mark stable for x86. - -*groff-1.18-r3 (27 Dec 2002) - - 27 Dec 2002; Martin Schlemmer <azarah@gentoo.org> groff-1.18-r3.ebuild : - Disable generation of example files requiring us to DEPEND on netpbm. - This closes bug #12803. - -*groff-1.18-r2 (26 Dec 2002) - - 26 Dec 2002; Martin Schlemmer <azarah@gentoo.org> groff-1.18-r2.ebuild : - Changes from Nicholas Wourms <dragon@gentoo.org>, bug #12496. - -*groff-1.17.2-r3 (13 Dez 2002) - - 12 Dec 2002; Jan Seidel <tuxus@gentoo.org> : - Added mips to keywords. - - 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords - -*groff-1.17.2-r3 (19 Oct 2002) - - 19 Oct 2002; Daniel Ahlberg <aliz@gentoo.org> : - Security update. - -*groff-1.18-r1 (29 Jul 2002) -*groff-1.17.2-r2 (29 Jul 2002) - - 29 Jul 2002; Martin Schlemmer <azarah@gentoo.org> groff-1.18-r1, groff-1.17.2-r2 : - Some build Cleanups. Enable build of xditview if "X" in USE, - and X is actually installed. We cannot make it depend on X, as - X depends on perl, which in turn depend on groff and will cause - circular depends. Enable the install of info pages, and also - fix thier extension to .info, else they do not get gzipped. - Also fixed 0.18 to install its docs/examples in the right place. - -*groff-1.18 (24 Jul 2002) - - 24 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> groff-1.18.ebuild : - - New version. - -*groff-1.16.1-r1.ebuild (14 July 2002) - - 14 Jul 2002; phoen][x <phoenix@gentoo.org> groff-1.16.1-r1.ebuild : - Added KEYWORDS, SLOT. - -*groff-1.17.2-r1 (1 Feb 2002) - - 14 Jul 2002; phoen][x <phoenix@gentoo.org> groff-1.17.2-r1.ebuild : - Added KEYWORDS, SLOT. - - 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : - - Added initial ChangeLog which should be updated whenever the package is - updated in any way. This changelog is targetted to users. This means that the - comments should well explained and written in clean English. The details about - writing correct changelogs are explained in the skel.ChangeLog file which you - can find in the root directory of the portage repository. diff --git a/sys-apps/groff/Manifest b/sys-apps/groff/Manifest deleted file mode 100644 index eb0c049..0000000 --- a/sys-apps/groff/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -AUX groff-1.19.2-man-unicode-dashes.patch 574 RMD160 759b9822f6950eeaac78ac16cfc8ebf58a77be38 SHA1 a7859ebef38fc0e2d73c1bc500e716c77ce8dc47 SHA256 e8fa93d3536bb6053ec104b567444cec7da8f101e24923dc4003efc8b7bf5bbe -DIST groff-20081222.tar.gz 3209474 RMD160 633ca23f7f0ad02a798a6a452ffe752a98bc6bfe SHA1 4d3d50ed68bc90309493327999cc1d36d043180c SHA256 1e8ec91cc1a3e048ecce8a044ba3fa9e077c238f69dc9f50a02067aee486d26f -EBUILD groff-1.19.3_pre20081222.ebuild 2434 RMD160 af925d3c355c5d492fbf48a1603f476da495ccfb SHA1 f34b966e5b090724a01d98bd2c95d9ad99a3884e SHA256 bc56a7c51bf8582416ab013326a9ee4b79297048534688dc98899fd3ecac7321 -MISC ChangeLog 11531 RMD160 8ba80eaaec74f14c0dec6191bcc60c7701eb15eb SHA1 a113c77fb6160123e04eb6a8107f3ab21b97759d SHA256 daa413afdd10f563bf88d40afa590cd3790e497e639b4b81c3637a8b5b6c6d7b -MISC metadata.xml 164 RMD160 f43cbec30b7074319087c9acffdb9354b17b0db3 SHA1 9c213f5803676c56439df3716be07d6692588856 SHA256 f5f2891f2a4791cd31350bb2bb572131ad7235cd0eeb124c9912c187ac10ce92 diff --git a/sys-apps/groff/files/groff-1.19.2-man-unicode-dashes.patch b/sys-apps/groff/files/groff-1.19.2-man-unicode-dashes.patch deleted file mode 100644 index d85a833..0000000 --- a/sys-apps/groff/files/groff-1.19.2-man-unicode-dashes.patch +++ /dev/null @@ -1,24 +0,0 @@ -format dashes as dashes so as to not confuse people - -http://bugs.gentoo.org/16108 -http://bugs.gentoo.org/17580 -http://bugs.gentoo.org/121502 - ---- tmac/man.local -+++ tmac/man.local -@@ -1,2 +1,6 @@ - .\" This file is loaded after an-old.tmac. - .\" Put any local modifications to an-old.tmac here. -+.if '\*[.T]'utf8' \{\ -+. char \- \N'45' -+. char - \N'45' -+.\} ---- tmac/mdoc.local -+++ tmac/mdoc.local -@@ -1,2 +1,6 @@ - .\" This file is loaded after doc.tmac. - .\" Put any local modifications to doc.tmac here. -+.if '\*[.T]'utf8' \{\ -+. char \- \N'45' -+. char - \N'45' -+.\} diff --git a/sys-apps/groff/groff-1.19.3_pre20081222.ebuild b/sys-apps/groff/groff-1.19.3_pre20081222.ebuild deleted file mode 100644 index 7ea7334..0000000 --- a/sys-apps/groff/groff-1.19.3_pre20081222.ebuild +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/groff/groff-1.19.2-r3.ebuild,v 1.3 2008/06/24 16:07:58 mr_bones_ Exp $ - -inherit eutils flag-o-matic toolchain-funcs multilib autotools - -DESCRIPTION="Text formatter used for man pages" -HOMEPAGE="http://www.gnu.org/software/groff/groff.html" -if [[ ${PV} =~ _pre(.*) ]]; then -SRC_URI="http://dev.gentoo.org/~pva/${PN}-${BASH_REMATCH[1]}.tar.gz" -S=${WORKDIR}/groff-current -else -SRC_URI="mirror://gnu/groff/${P}.tar.gz" -fi - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" -IUSE="X" - -DEPEND=">=sys-apps/texinfo-4.7-r1 - X? ( - x11-libs/libX11 - x11-libs/libXt - x11-libs/libXmu - x11-libs/libXaw - x11-libs/libSM - x11-libs/libICE - )" - -src_unpack() { - unpack ${A} - cd "${S}" - - if [[ ${PV} =~ _pre(.*) ]]; then - epatch "${FILESDIR}"/${PN}-1.19.2-man-unicode-dashes.patch #16108 #17580 #121502 - else - # Fix the info pages to have .info extensions, - # else they do not get gzipped. - epatch "${FILESDIR}"/${P}-infoext.patch - epatch "${FILESDIR}"/${P}-man-unicode-dashes.patch #16108 #17580 #121502 - epatch "${FILESDIR}"/${P}-parallel-make.patch - - fi - # Make sure we can cross-compile this puppy - if tc-is-cross-compiler ; then - sed -i \ - -e '/^GROFFBIN=/s:=.*:=/usr/bin/groff:' \ - -e '/^TROFFBIN=/s:=.*:=/usr/bin/troff:' \ - -e '/^GROFF_BIN_PATH=/s:=.*:=:' \ - contrib/mom/Makefile.sub \ - doc/Makefile.in \ - doc/Makefile.sub || die "cross-compile sed failed" - fi -} - -src_compile() { - # Fix problems with not finding g++ - tc-export CC CXX - - # -Os causes segfaults, -O is probably a fine replacement - # (fixes bug 36008, 06 Jan 2004 agriffis) - replace-flags -Os -O - - econf \ - --with-appresdir=/usr/share/X11/app-defaults \ - $(use_with X x) - emake || die -} - -src_install() { - dodir /usr/bin - make \ - prefix="${D}"/usr \ - bindir="${D}"/usr/bin \ - libdir="${D}"/usr/$(get_libdir) \ - appresdir="${D}"/usr/share/X11/app-defaults \ - datadir="${D}"/usr/share \ - mandir="${D}"/usr/share/man \ - infodir="${D}"/usr/share/info \ - docdir="${D}"/usr/share/doc/${PF} \ - install || die - - # The following links are required for man #123674 - dosym eqn /usr/bin/geqn - dosym tbl /usr/bin/gtbl - - dodoc BUG-REPORT ChangeLog FDL MORE.STUFF NEWS \ - PROBLEMS PROJECTS README REVISION TODO VERSION -} diff --git a/sys-apps/groff/metadata.xml b/sys-apps/groff/metadata.xml deleted file mode 100644 index 96a2d58..0000000 --- a/sys-apps/groff/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<herd>base-system</herd> -</pkgmetadata> diff --git a/sys-apps/man-db/ChangeLog b/sys-apps/man-db/ChangeLog deleted file mode 100644 index c19571a..0000000 --- a/sys-apps/man-db/ChangeLog +++ /dev/null @@ -1,35 +0,0 @@ -# ChangeLog for sys-apps/man-db -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-db/ChangeLog,v 1.6 2008/11/17 14:51:07 vapier Exp $ - -*man-db-2.5.3 (17 Nov 2008) - - 17 Nov 2008; Mike Frysinger <vapier@gentoo.org> +man-db-2.5.3.ebuild: - Version bump. - -*man-db-2.5.2 (25 Oct 2008) - - 25 Oct 2008; Mike Frysinger <vapier@gentoo.org> +man-db-2.5.2.ebuild: - Version bump. - -*man-db-2.5.1 (24 Feb 2008) - - 24 Feb 2008; Mike Frysinger <vapier@gentoo.org> +man-db-2.5.1.ebuild: - Version bump. - -*man-db-2.4.4 (13 Apr 2007) - - 13 Apr 2007; Mike Frysinger <vapier@gentoo.org> - +files/man-db-2.4.4-sections.patch, +man-db-2.4.4.ebuild: - Version bump #173919 by Pierre-Yves Rofes. - -*man-db-2.4.3-r1 (06 Oct 2006) - - 06 Oct 2006; Mike Frysinger <vapier@gentoo.org> - +files/man-db-2.4.3-sections.patch, +man-db-2.4.3-r1.ebuild: - Respect more man sections #149857. - -*man-db-2.4.3 (21 Feb 2006) - - 21 Feb 2006; Mike Frysinger <vapier@gentoo.org> : - Initial import. Ebuild submitted by me. diff --git a/sys-apps/man-db/Manifest b/sys-apps/man-db/Manifest deleted file mode 100644 index 33aeb12..0000000 --- a/sys-apps/man-db/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -DIST man-db-2.5.3.tar.gz 1851833 RMD160 9645a6cf996ad29eebcc6193672921db690bbacc SHA1 d3fc901c23b5ecb88afe12733ae93c60c5d2e874 SHA256 c09beb094d2b35f99abed5a6b385863f2d03164416f899b01c8ef97fd1ebf3ef -EBUILD man-db-2.5.3.ebuild 1318 RMD160 e0246a6f1b85a2ea27affc9963bf1bc6476b9f09 SHA1 5d31a6f17d040c1b2a4326734be4893ad0883a1e SHA256 f98902564b80170e72ce860c7bd1bc013a48327c094bdea6023609afc7dc6c74 -MISC ChangeLog 1049 RMD160 548e7f7edb984ac2840c24589d91e8a2d63774fd SHA1 d4b89f236454d19ab02291ecfbad5644ef4ada46 SHA256 dcdd8a166aa61cb826160ff30d124bf2db3e4ce7a1a84457320023f946574c9b -MISC metadata.xml 164 RMD160 f43cbec30b7074319087c9acffdb9354b17b0db3 SHA1 9c213f5803676c56439df3716be07d6692588856 SHA256 f5f2891f2a4791cd31350bb2bb572131ad7235cd0eeb124c9912c187ac10ce92 diff --git a/sys-apps/man-db/man-db-2.5.3.ebuild b/sys-apps/man-db/man-db-2.5.3.ebuild deleted file mode 100644 index abd1361..0000000 --- a/sys-apps/man-db/man-db-2.5.3.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-db/man-db-2.5.3.ebuild,v 1.2 2008/11/17 22:43:38 vapier Exp $ - -inherit eutils - -DESCRIPTION="a man replacement that utilizes berkdb instead of flat files" -HOMEPAGE="http://www.nongnu.org/man-db/" -SRC_URI="http://download.savannah.nongnu.org/releases/man-db/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="berkdb gdbm nls" - -RDEPEND="berkdb? ( sys-libs/db ) - gdbm? ( sys-libs/gdbm ) - !berkdb? ( !gdbm? ( sys-libs/gdbm ) ) - !sys-apps/man" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext )" -PROVIDE="virtual/man" - -pkg_setup() { - enewgroup man 15 - enewuser man 13 -1 /usr/share/man man -} - -src_unpack() { - unpack ${A} - cd "${S}" - sed \ - -e '/directory_entry directory_table/a\ - { "ru", "UTF-8", "UTF-8" }, /* Russian */' \ - -i src/encodings.c -} - -src_compile() { - local db="gdbm" - use berkdb && ! use gdbm && db="db" - econf \ - --with-sections="1 1p 8 2 3 3p 4 5 6 7 9 0p tcl n l p o 1x 2x 3x 4x 5x 6x 7x 8x" \ - $(use_enable nls) \ - --with-db=${db} \ - || die - emake || die -} - -src_install() { - emake install DESTDIR="${D}" || die - dodoc README docs/{ChangeLog,HACKING,NEWS,TODO} -} diff --git a/sys-apps/man-db/metadata.xml b/sys-apps/man-db/metadata.xml deleted file mode 100644 index 96a2d58..0000000 --- a/sys-apps/man-db/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<herd>base-system</herd> -</pkgmetadata> diff --git a/sys-devel/bison/ChangeLog b/sys-devel/bison/ChangeLog deleted file mode 100644 index ac8e629..0000000 --- a/sys-devel/bison/ChangeLog +++ /dev/null @@ -1,267 +0,0 @@ -# ChangeLog for sys-devel/bison -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.71 2007/12/27 19:29:06 vapier Exp $ - - 27 Dec 2007; Mike Frysinger <vapier@gentoo.org> bison-2.3.ebuild: - Fixup dodoc #203390 by Arfrever Frehtes Taifersar Arahesis. - - 28 Jun 2007; Joshua Kinard <kumba@gentoo.org> bison-2.3.ebuild: - Stable on mips, per #183254. - - 27 Jun 2007; Markus Rothe <corsair@gentoo.org> bison-2.3.ebuild: - Stable on ppc64; bug #183254 - - 27 Jun 2007; Jeroen Roovers <jer@gentoo.org> bison-2.3.ebuild: - Stable for HPPA (bug #183254). - - 26 Jun 2007; Lars Weiler <pylon@gentoo.org> bison-2.3.ebuild: - Stable on ppc; bug #183254. - - 26 Jun 2007; Raúl Porcel <armin76@gentoo.org> bison-2.3.ebuild: - alpha/ia64/x86 stable wrt #183254 - - 26 Jun 2007; Gustavo Zacarias <gustavoz@gentoo.org> bison-2.3.ebuild: - Stable on sparc wrt #183254 - - 26 Jun 2007; Christoph Mende <angelos@gentoo.org> bison-2.3.ebuild: - Stable on amd64 wrt bug 183254 - - 05 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> bison-1.875.ebuild, - bison-2.0.ebuild, bison-2.1.ebuild, bison-2.2.ebuild: - Remove gnuconfig inherit. - -*bison-2.3 (26 Oct 2006) - - 26 Oct 2006; Mike Frysinger <vapier@gentoo.org> +bison-2.3.ebuild: - Version bump #152812 by Bernd Buschinski. - - 17 Oct 2006; Roy Marples <uberlord@gentoo.org> bison-2.2.ebuild: - Added ~sparc-fbsd keyword. - - 27 Sep 2006; Fernando J. Pereda <ferdy@gentoo.org> bison-2.2.ebuild: - Stable on alpha as per bug #149049 - - 26 Sep 2006; Gustavo Zacarias <gustavoz@gentoo.org> bison-2.2.ebuild: - Stable on sparc wrt #149049 - - 26 Sep 2006; Gustavo Zacarias <gustavoz@gentoo.org> bison-2.2.ebuild: - Stable on hppa wrt #149049 - - 26 Sep 2006; Simon Stelling <blubb@gentoo.org> bison-2.2.ebuild: - stable on amd64 - - 26 Sep 2006; Joshua Jackson <tsunam@gentoo.org> bison-2.2.ebuild: - Stable x86; bug #149049 - - 25 Sep 2006; <nixnut@gentoo.org> bison-2.2.ebuild: - Stable on ppc wrt bug 149049 - - 25 Sep 2006; Markus Rothe <corsair@gentoo.org> bison-2.2.ebuild: - Stable on ppc64; bug #149048 - - 01 Jun 2006; Joshua Kinard <kumba@gentoo.org> bison-2.1.ebuild, - bison-2.2.ebuild: - Move sys-devel/m4 from DEPEND to RDEPEND so stage1 builds via catalyst pull - it into the stage1root correctly. - -*bison-2.2 (23 May 2006) - - 23 May 2006; Mike Frysinger <vapier@gentoo.org> +bison-2.2.ebuild: - Version bump. - - 29 Apr 2006; Joshua Kinard <kumba@gentoo.org> bison-2.1.ebuild: - Marked stable on mips. - - 30 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> bison-2.1.ebuild: - Add ~x86-fbsd keyword. - - 19 Mar 2006; Luis Medinas <metalgod@gentoo.org> bison-2.1.ebuild: - Stable on amd64. Bug #126364. - - 19 Mar 2006; Fernando J. Pereda <ferdy@gentoo.org> bison-2.1.ebuild: - Stable on alpha wrt bug #126364 - - 17 Mar 2006; Tobias Scherbaum <dertobi123@gentoo.org> bison-2.1.ebuild: - ppc stable, bug #126364 - - 16 Mar 2006; Torsten Veller <tove@gentoo.org> bison-2.1.ebuild: - Stable on x86 (#126364) - - 16 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org> bison-2.1.ebuild: - Stable on sparc wrt #126364 - - 16 Mar 2006; Markus Rothe <corsair@gentoo.org> bison-2.1.ebuild: - Stable on ppc64; bug #126364 - -*bison-2.1 (21 Sep 2005) - - 21 Sep 2005; Mike Frysinger <vapier@gentoo.org> +bison-2.1.ebuild: - Version bump #106803 by Michael Cramer. - - 15 Sep 2005; Mike Frysinger <vapier@gentoo.org> - +files/bison-2.0-token-name-translate.patch, bison-2.0.ebuild: - Fix from upstream for segfault in error reporting #106014 by postmodern. - - 04 Mar 2005; Kito <kito@gentoo.org> bison-1.875d.ebuild: - ~ppc-macos keyword. closes Bug 65957 - - 06 Feb 2005; Joshua Kinard <kumba@gentoo.org> bison-1.875d.ebuild: - Marked stable on mips. - - 13 Jan 2005; Bryan Østergaard <kloeri@gentoo.org> bison-1.875d.ebuild: - Stable on alpha, bug 77437. - - 12 Jan 2005; Karol Wojtaszek <sekretarz@gentoo.org> bison-1.875d.ebuild: - Marked stable on amd64, bug #77438 - - 11 Jan 2005; Markus Rothe <corsair@gentoo.org> bison-1.875d.ebuild: - Stable on ppc64; bug #77434 - - 11 Jan 2005; Luca Barbato <lu_zero@gentoo.org> bison-1.875d.ebuild: - Marked ppc - -*bison-2.0 (10 Jan 2005) - - 10 Jan 2005; Mike Frysinger <vapier@gentoo.org> +bison-2.0.ebuild: - Version bump #77407 by Michael Cramer. - - 10 Jan 2005; Jason Wever <weeve@gentoo.org> bison-1.875d.ebuild: - Marked stable on sparc wrt bug #77435 so Spanky can't spank us - -*bison-1.875d (31 Oct 2004) - - 31 Oct 2004; Aron Griffis <agriffis@gentoo.org> +bison-1.875d.ebuild: - Update to 1.875d for the sake of toolchain.org builds - - 14 Oct 2004; Mike Frysinger <vapier@gentoo.org> bison-1.875.ebuild: - Dont install bison as yacc, but if yacc doesnt exist, create a symlink - #49331 by Bruno Redondi. - - 19 Jul 2004; <solar@gentoo.org> bison-1.875.ebuild: - updated bison to use gnuconfig.eclass. Needed for uclibc and maybe others. - - 23 Jun 2004; Aron Griffis <agriffis@gentoo.org> bison-1.34-r1.ebuild, - bison-1.35.ebuild, bison-1.75.ebuild: - QA - fix use invocation - - 16 Jun 2004; Daniel Black <dragonheart@gentoo.org> bison-1.875.ebuild: - syntax fix on 3.4 compare condition - - 16 Jun 2004; Daniel Black <dragonheart@gentoo.org> bison-1.875.ebuild: - uclibc fixes thanks to Peter S. Mazinger <ps.m@gmx.net> - - 06 Feb 2004; <gustavoz@gentoo.org> bison-1.875.ebuild: - stable on sparc - - 06 Feb 2004; Aron Griffis <agriffis@gentoo.org> bison-1.875.ebuild: - k6 replacement in the ebuild was resulting in -march=i586-3, fix and make more - stringent - - 04 Feb 2004; Aron Griffis <agriffis@gentoo.org> bison-1.875.ebuild: - Fix bug 29017 by replacing -march=k6 and -march=k6-2 with -march=i586. Fix bug - 39842 by restricting optimization on amd64 to -O0. Mark stable on x86. - Remove icc cruft (leftover from 2002) and remove IUSE="build" since it isn't - true. - - 01 Feb 2004; Joshua Kinard <kumba@gentoo.org> bison-1.34-r1.ebuild, - bison-1.35.ebuild, bison-1.75.ebuild, bison-1.875.ebuild: - Bump to mips stable (needed for upcoming stageballs) - - 20 Nov 2003; Aron Griffis <agriffis@gentoo.org> bison-1.875.ebuild: - Stable on alpha - - 17 Sep 2003; Jon Portnoy <avenj@gentoo.org> bison-1.875.ebuild : - ia64 keywords. - - 08 Sep 2003; Martin Schlemmer <azarah@gentoo.org> bison-1.34-r1.ebuild, - bison-1.35.ebuild, bison-1.75.ebuild, bison-1.875.ebuild: - Add m4 DEPEND (bug #28119), with some other cleanups to older - ebuilds than 1.875. - - 07 Sep 2003; Martin Schlemmer <azarah@gentoo.org> bison-1.875.ebuild: - Fix DEPEND for when we have 'build' in USE. - -*bison-1.875 (07 Sep 2003) - - 08 Dec 2003; Guy Martin <gmsoft@gentoo.org> bison-1.875.ebuild : - Marked stable on hppa. - - 07 Sep 2003; Martin Schlemmer <azarah@gentoo.org> bison-1.875.ebuild, - files/bison-1.32-extfix.patch, files/bison-1.875-gccerror.patch: - Update version. - - 02 Sep 2003; Martin Holzer <mholzer@gentoo.org> bison-1.34-r1.ebuild, - bison-1.35.ebuild, bison-1.75.ebuild: - Now uses mirror://gnu. - - 18 Feb 2003; Zach Welch <zwelch@gentoo.org> bison-1.35.ebuild : - Added arm to keywords. - - 09 Feb 2003; Guy Martin <gmsoft@gentoo.org> bison-1.35.ebuild : - Added hppa to keywords. - - 19 Dec 2002; Martin Schlemmer <azarah@gentoo.org> bison-1.35.ebuild : - - Ripp out the icc stuff, as it cause problem, bug #12357. - - 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords - - 20 Oct 2002; Maik Schreiber <blizzy@gentoo.org> bison-1.75.ebuild: - Fixed KEYWORDS. - -*bison-1.75 (20 Oct 2002) - - 20 Oct 2002; Martin Schlemmer <azarah@gentoo.org> : Update version. - - 09 Dec 2002; Jon Portnoy <avenj@gentoo.org> : - - Update to be icc-able with USE=icc. - - 09 Dec 2002; Jon Portnoy <avenj@gentoo.org> : - - Fixed dependencies for USE="icc". - -*bison-1.35 (09 Aug 2002) - - 18 Jan 2003; Jan Seidel <tuxus@gentoo.org> : - Added mips to keywords - - 16 Aug 2002; Seemant Kulleen <seemant@gentoo.org> bison-1.35.ebuild : - - It turns out that yannick.koehler@colubris.com (Yannick Koehler) had - actually submitted the ebuild in bug #5178, and I didn't even see it. - Apologies :( - - 09 Aug 2002; Seemant Kulleen <seemant@gentoo.org> bison-1.35.ebuild - files/digest-bison-1.35 : - - Version bump to newest stable, which fixes issues with the spanish - language environment. - - 09 Dec 2002; Jon Portnoy <avenj@gentoo.org> bison-1.35.ebuild : - - Update to be icc-able with USE=icc. - - 09 Dec 2002; Jon Portnoy <avenj@gentoo.org> : - - Fixed dependencies for USE="icc". - -*bison-1.34-r1 (2 Apr 2002) - - 2 Apr 2002; M.Schlemmer <azarah@gentoo.org> : - - Change "make install" in src_install() to use $DESTDIR and not - $prefix, as some packages have the nasty habit of hardcoding - $prefix in "make install". Hopefully this will fix an invalid - search patch for bison.{hairy,simple} some users experienced - (${D}/usr/...). - -*bison-1.28-r3 (1 Feb 2002) - - 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : - - Added initial ChangeLog which should be updated whenever the package is - updated in any way. This changelog is targetted to users. This means that the - comments should well explained and written in clean English. The details about - writing correct changelogs are explained in the skel.ChangeLog file which you - can find in the root directory of the portage repository. diff --git a/sys-devel/bison/Manifest b/sys-devel/bison/Manifest deleted file mode 100644 index 2bcf306..0000000 --- a/sys-devel/bison/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -AUX bison-1.32-extfix.patch 1170 RMD160 41daa5ee80712e419a15233af15efbd174ac1adf SHA1 a7cab61f53ca9d9d97b99c8687df1f092e1c1dbc SHA256 a47285e1b6f1ee53b8def53380068ad6a86ccd09e3338481f6d3d14c7e8b31c4 -DIST bison-2.3.tar.bz2 1080319 RMD160 c6a116d6b763fad3f4df6e303943e09ed080cb26 SHA1 7e489f35c6d8171f0cb0cad3dda0fb39f2cb0b62 SHA256 b10d7e9e354be72aee4e4911cf19dd27b5c527d4e7200857365b5fcdeea0dffb -EBUILD bison-2.3-r1.ebuild 1027 RMD160 c84358eebd65330556109f6d100f3bdfcbd5e29a SHA1 c09effd667045357fdb1b01b2f02d9a8ad2a863e SHA256 58c5f6409ff576546a77502918d8796d2426888d8a7411ccac8c49524ae76e21 -MISC ChangeLog 9216 RMD160 33f10075f53c25902ee44bb6b8dc93d18d6eb178 SHA1 574aa829b6011245da26b671e6897797c417193c SHA256 993e55f04f7bcaf2ff7856c70e0276966ac7e13819539a5586c73d95a21eaabd -MISC metadata.xml 164 RMD160 f43cbec30b7074319087c9acffdb9354b17b0db3 SHA1 9c213f5803676c56439df3716be07d6692588856 SHA256 f5f2891f2a4791cd31350bb2bb572131ad7235cd0eeb124c9912c187ac10ce92 diff --git a/sys-devel/bison/bison-2.3-r1.ebuild b/sys-devel/bison/bison-2.3-r1.ebuild deleted file mode 100644 index 547b333..0000000 --- a/sys-devel/bison/bison-2.3-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.3.ebuild,v 1.10 2007/12/27 19:29:06 vapier Exp $ - -inherit toolchain-funcs flag-o-matic - -DESCRIPTION="A yacc-compatible parser generator" -HOMEPAGE="http://www.gnu.org/software/bison/bison.html" -SRC_URI="mirror://gnu/bison/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="nls static" - -DEPEND="nls? ( sys-devel/gettext )" - -RDEPEND="sys-devel/m4 - app-admin/eselect-yacc" - -src_compile() { - use static && append-ldflags -static - econf $(use_enable nls) || die - emake || die -} - -src_install() { - emake DESTDIR="${D}" install || die - - # This one is installed by dev-util/yacc - mv "${D}"/usr/bin/yacc{,.bison} || die - - # We do not need this. - rm -r "${D}"/usr/lib* || die - - dodoc AUTHORS NEWS ChangeLog README OChangeLog THANKS TODO -} - -pkg_postinst() { - "${ROOT}"/usr/bin/eselect yacc update -} - -pkg_postrm() { - "${ROOT}"/usr/bin/eselect yacc update -} diff --git a/sys-devel/bison/files/bison-1.32-extfix.patch b/sys-devel/bison/files/bison-1.32-extfix.patch deleted file mode 100644 index 363d038..0000000 --- a/sys-devel/bison/files/bison-1.32-extfix.patch +++ /dev/null @@ -1,28 +0,0 @@ -2002-02-15 Gwenole Beauchesne <gbeauchesne@mandrakesoft.com> - - * src/files (compute_exts_from_gf, compute_exts_from_src): Handle - the case where header_extension is the same as src_extension, aka - handle -d -o <file> where <file> doesn't have a known EXT to - transform. e.g. if <file> is <something>.yxx, set the - header_extension to <something>.yxx.h, as would do bison 1.28. - ---- bison-1.32/src/files.c.extfix Mon Jan 21 16:41:46 2002 -+++ bison-1.32/src/files.c Fri Feb 15 15:40:43 2002 -@@ -288,6 +288,8 @@ compute_exts_from_gf (const char *ext) - src_extension = tr (src_extension, 'Y', 'C'); - header_extension = tr (ext, 'y', 'h'); - header_extension = tr (header_extension, 'Y', 'H'); -+ if (!strcmp (header_extension, src_extension)) -+ header_extension = concat2 (src_extension, ".h"); - } - - /* Computes extensions from the given c source file extension. */ -@@ -300,6 +302,8 @@ compute_exts_from_src (const char *ext) - src_extension = xstrdup (ext); - header_extension = tr (ext, 'c', 'h'); - header_extension = tr (header_extension, 'C', 'H'); -+ if (!strcmp (header_extension, src_extension)) -+ header_extension = concat2 (src_extension, ".h"); - } - - diff --git a/sys-devel/bison/metadata.xml b/sys-devel/bison/metadata.xml deleted file mode 100644 index 96a2d58..0000000 --- a/sys-devel/bison/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<herd>base-system</herd> -</pkgmetadata> diff --git a/sys-fs/ocfs2-tools/Manifest b/sys-fs/ocfs2-tools/Manifest deleted file mode 100644 index 79281bb..0000000 --- a/sys-fs/ocfs2-tools/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -AUX INSTALL.GENTOO 3354 RMD160 d69fb0837177e2383232656b259a323ae8305bcd SHA1 17778ffe1bd396705dddf3832987ff93c54c11ec SHA256 c9fc8c058f0d97a69291176cedb8a82134b142baad1fb68c80bbcfc878170b8f -AUX ocfs2.conf 333 RMD160 26d8edef7b1d1f1b5311ccc25c91559cf3c292ae SHA1 0e520288a9da9e3ce2d05a50115e324925a7b8d8 SHA256 082109a55c563eb2022837988eb26e90507a835423cdd34ca6a1ad389cc327ab -AUX ocfs2.init 2988 RMD160 a155616b632419fc54443e45b69a248d8660520c SHA1 5b5e23fdb617f1f6ca7122588e9d832966e804df SHA256 fecbc0b8ffd12b7f354e360296a24cb35bf6dcb2bcec77ba8ec5b9028232589c -DIST ocfs2-tools-1.6.4.tar.gz 823914 RMD160 c8b65f4c26017e257c4190322d6df64e9ef7925b SHA1 1409a13f63b55457a474c5f5662260e420452ee9 SHA256 dda9db208312e3e5f4f55ee77e66e7b35b9cc10421bc02065a6c168e42b24755 -EBUILD ocfs2-tools-1.6.4.ebuild 1745 RMD160 b295baea5195a5ec9e71ac6ac80b0a14dda53d14 SHA1 7206299643f21fe118c448f8a9c0ce34352d8d58 SHA256 690b9ac64413d585c77670e235c0e59d1e6da74c2252732d48fe0bd6cd8437d7 diff --git a/sys-fs/ocfs2-tools/files/INSTALL.GENTOO b/sys-fs/ocfs2-tools/files/INSTALL.GENTOO deleted file mode 100644 index e3417e4..0000000 --- a/sys-fs/ocfs2-tools/files/INSTALL.GENTOO +++ /dev/null @@ -1,93 +0,0 @@ -Installing, configuring and running OCFS2 on Gentoo Linux - - -INSTALLING -========== -Step 1 - Inserting modules --------------------------- -Add 'ocfs2' to your /etc/modules.autoload.d/kernel-2.6 file: -# echo "ocfs2" >> /etc/modules.autoload.d/kernel-2.6 -# modules-update - -Step 2 - Mounting the pseudo-filesystems ----------------------------------------- -add mountpoints for configfs and dlmfs to /etc/fstab -# echo "none /config configfs defaults 0 0" >> /etc/fstab -# echo "none /dlm ocfs2_dlmfs defaults 0 0" >> /etc/fstab - -Step 3 - Addding ocfs2 to default runlevel ------------------------------------------- -# rc-update add ocfs2 default - - -CONFIGURING -=========== -Step 1 - Edit your cluster.conf -------------------------------- -Edit /etc/ocfs2/cluster.conf and add your nodes. One node can be a member -of many cluster, so repeat the config for each node/cluster pair. In the case of -a multicluster node, "ip_port" must be different for every cluster. -You can also use o2cb_console for this task, if you compiled with USE=X. - -Step 2 - Copy config to other nodes ------------------------------------ -Make sure that every node in cluster(s) has an identical config file. - -Step 3 - Update /etc/conf.d/ocfs2 ---------------------------------- -Add names of cluster(s) in which this node belongs to the OCFS2_CLUSTERS list. - -Also, if you're running firewall on your nodes, make sure you've read -"Firewall restrictions" below. - -RUNNING -======= - -Notes about adding nodes while online -------------------------- -*DON'T* add nodes to /etc/ocfs2/cluster.conf while the cluster is online. -Use /sbin/o2cb_ctl instead, e.g.: - -# /sbin/o2cb_ctl -C -n <node_name> -t node -a number=<node_number> \ - -a ip_address=<ip_address> -a ip_port=<port> -a cluster=<clustername> - -If the complete cluster is down, you may add nodes to /etc/ocfs2/cluster.conf, -but make sure you end up with *SAME* cluster.conf on every node. - -For a complete reference, check files in this directory -as well as http://oss.oracle.com/projects/ocfs2 -You have been warned. - -Also, if you're running a firewall on your nodes, make sure you've read the -following section. - -Firewall restrictions ---------------------- -Logically, allow all nodes to connect to each other via specified port(s). -If you used 7777 as a port for communication, issue: - -# iptables -I INPUT 1 -m state --state ESTABLISHED,RELATED -j ACCEPT -# iptables -N OCFS2_NODES -# iptables -A OCFS2_NODES -s <node_ip_address> -j ACCEPT -(repeat former command for every node) -# iptables -A OCFS2_NODES -j DROP -# iptables -A INPUT -p tcp --dport 7777 -m state --state NEW -j OCFS2_NODES -# /etc/init.d/iptables save - -You should do this on every node. - -KNOWN BUGS -========== -1. Init script does not have all the funtionality of the o2cb script ----------------------------------------------------------------- -I know that, but o2cb script doesn't use "depend" and therefore its start -can't be controlled inside runlevels. I had to rewrite major portions of it -to make it Gentoo-friendly. o2cb is still available, and if you need -additional functionality from /etc/init.d/ocfs2, file a bug report (see -"Reporting Bugs" below). - -2. Booting off the ocfs2 cluster doesn't work ---------------------------------------------- -... or at least, isn't tested. If someone wants to play with it, I'd be -happy to incorporate any ideas or experiences. - diff --git a/sys-fs/ocfs2-tools/files/ocfs2.conf b/sys-fs/ocfs2-tools/files/ocfs2.conf deleted file mode 100644 index 29b236d..0000000 --- a/sys-fs/ocfs2-tools/files/ocfs2.conf +++ /dev/null @@ -1,6 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/ocfs2-tools/files/Attic/ocfs2.conf,v 1.2 2009/10/08 09:03:35 flameeyes dead $ - -# Put your cluster names here, separated by space, ie. -# OCFS2_CLUSTER="cluster1 admincluster cluster2" diff --git a/sys-fs/ocfs2-tools/files/ocfs2.init b/sys-fs/ocfs2-tools/files/ocfs2.init deleted file mode 100644 index 32abd47..0000000 --- a/sys-fs/ocfs2-tools/files/ocfs2.init +++ /dev/null @@ -1,100 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/ocfs2-tools/files/Attic/ocfs2.init,v 1.2 2009/10/08 09:03:35 flameeyes dead $ - -depend() { - need net localmount - before netmount -} - -check_modules() { - local MODULES="ocfs2_dlmfs ocfs2 ocfs2_dlm ocfs2_nodemanager configfs" - local MODULE - local MODPROBE="modprobe -l" - local retval=0 - - for MODULE in ${MODULES}; do - if [ -z "`${MODPROBE} ${MODULE}`" ] ; then - retval=1 - fi - done - if [ ${retval} -eq 1 ] ; then - ewarn "One or more required modules are not loaded." - ewarn "Make sure you have " - ewarn " - placed ocfs, dlmfs and configfs into /etc/modules.autoload.d/kernel-2.6" - ewarn "For a (in)complete documentation, read /usr/share/doc/ocfs-<version>/INSTALL.GENTOO.gz" - fi - return ${retval} -} - -check_pseudofs() { - local retval=0 - local HASMOUNT="mount -l -t" - if [ -z "`${HASMOUNT} configfs`" ] ; then - retval=1 - fi - if [ -z "`${HASMOUNT} ocfs2_dlmfs`" ] ; then - retval=1 - fi - - if [ ${retval} -eq 1 ]; then - ewarn "One or more pseudo-filesystes are not mounted." - ewarn "Make sure you have following lines in your /etc/fstab:" - ewarn "none /config configfs defaults 0 0" - ewarn "none /dlm ocfs2_dlmfs defaults 0 0" - ewarn "For a (in)complete documentation, read /usr/share/doc/ocfs-<version>/INSTALL.GENTOO.gz" - fi - return ${retval} -} - - - -start() { - check_modules || return $? - check_pseudofs || return $? - - einfo "Starting OCFS2 cluster" - for cluster in ${OCFS2_CLUSTER}; do - ebegin " - ${cluster}" - /sbin/o2cb_ctl -H -n ${cluster} -t cluster -a online=yes >/dev/null 2>&1 - eend $? - done -} - -stop() { - # Shamelesly stolen from netmount - local ret - ebegin "Unmounting OCFS2 filesystems" - [ -z "$(umount -art ocfs2 2>&1)" ] - ret=$? - eend ${ret} "Failed to simply unmount filesystems" - [ ${ret} -eq 0 ] && return 0 - - declare -a siglist=( "TERM" "KILL" "KILL" ) - local retry=0 - local remaining="go" - - while [ -n "${remaining}" -a ${retry} -lt 3 ] - do - remaining="$(awk '$3 ~ /'ocfs2'/ { if ($2 != "/") print $2 }' /proc/mounts | sort -r)" - IFS=$'\n' - set -- ${remaining//\\040/ } - unset IFS - [ -z "${remaining}" ] && break - - ebegin $'\t'"Unmounting ocfs2 filesystems (retry #$((retry+1)))" - /bin/fuser -k -${siglist[$((retry++))]} -m "$@" &>/dev/null - sleep 5 - umount "$@" &>/dev/null - eend $? $'\t'"Failed to unmount filesystems" - done - - - einfo "Stopping OCFS2 cluster" - for cluster in ${OCFS_CLUSTERS}; do - ebegin " - ${cluster}" - /sbin/o2cb_ctl -H -n ${cluster} -t cluster -a online=no >/dev/null 2>&1 - eend $? - done -} diff --git a/sys-fs/ocfs2-tools/ocfs2-tools-1.6.4.ebuild b/sys-fs/ocfs2-tools/ocfs2-tools-1.6.4.ebuild deleted file mode 100644 index e7718fc..0000000 --- a/sys-fs/ocfs2-tools/ocfs2-tools-1.6.4.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/ocfs2-tools/Attic/ocfs2-tools-1.2.1.ebuild,v 1.5 2009/10/08 09:03:35 flameeyes dead $ - -EAPI="3" - -PYTHON_DEPEND="X? 2" -inherit python - -PV_MAJOR="${PV%%.*}" -PV_MINOR="${PV#*.}" -PV_MINOR="${PV_MINOR%%.*}" -DESCRIPTION="Support programs for the Oracle Cluster Filesystem 2" -HOMEPAGE="http://oss.oracle.com/projects/ocfs2-tools/" -SRC_URI="http://oss.oracle.com/projects/ocfs2-tools/dist/files/source/v${PV_MAJOR}.${PV_MINOR}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="X" - -# (#142216) build system's broke, always requires glib for debugfs utility -RDEPEND=" - X? ( - x11-libs/gtk+:2 - dev-python/pygtk:2 - ) - sys-apps/util-linux - >=dev-libs/glib-2.2.3 - sys-fs/e2fsprogs" -DEPEND="${RDEPEND}" - -src_configure() { - econf \ - $(use_enable X ocfs2console) \ - --enable-dynamic-fsck \ - --enable-dynamic-ctl -} - -src_compile() { - emake -j1 || die -} - -src_install() { - make DESTDIR="${D}" install || die "Failed to install" - - dodoc CREDITS MAINTAINERS README.O2CB debugfs.ocfs2/README \ - documentation/{{users_guide,ocfs2_faq}.txt,/samples/cluster.conf} \ - "${FILESDIR}"/INSTALL.GENTOO - - # Keep o2cb script in case someone needs it - insinto /usr/sbin - newins vendor/common/o2cb.init o2cb - insinto /etc/default - newins vendor/common/o2cb.sysconfig o2cb - - newinitd "${FILESDIR}"/ocfs2.init ocfs2 - newconfd "${FILESDIR}"/ocfs2.conf ocfs2 - - insinto /etc/ocfs2 - newins documentation/samples/cluster.conf cluster.conf - -# keepdir /config -# keepdir /dlm -} - -pkg_postinst() { - elog "Read INSTALL.GENTOO in /share/doc/${PF}/ for instructions" - elog "about how to install, configure and run ocfs2." -} diff --git a/sys-kernel/gentoo-sources/ChangeLog b/sys-kernel/gentoo-sources/ChangeLog deleted file mode 100644 index a6a8319..0000000 --- a/sys-kernel/gentoo-sources/ChangeLog +++ /dev/null @@ -1,3545 +0,0 @@ -# ChangeLog for sys-kernel/gentoo-sources -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 1.651 2009/10/27 00:12:12 mpagano Exp $ - -*gentoo-sources-2.6.31-r4 (27 Oct 2009) - - 27 Oct 2009; Michael Pagano <mpagano@gentoo.org> - -gentoo-sources-2.6.29.ebuild, -gentoo-sources-2.6.29-r1.ebuild, - -gentoo-sources-2.6.29-r2.ebuild, -gentoo-sources-2.6.29-r3.ebuild, - -gentoo-sources-2.6.29-r4.ebuild, +gentoo-sources-2.6.31-r4.ebuild: - Linux 2.6.31.5 and old version cleanup - - 21 Oct 2009; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.27-r10.ebuild, gentoo-sources-2.6.28-r6.ebuild, - gentoo-sources-2.6.29-r6.ebuild, gentoo-sources-2.6.30-r8.ebuild: - alpha/arm/ia64/sh/sparc/x86 stable - - 18 Oct 2009; Christian Faulhammer <fauli@gentoo.org> - gentoo-sources-2.6.30-r7.ebuild: - stable x86, bug 287081 - -*gentoo-sources-2.6.31-r3 (14 Oct 2009) - - 14 Oct 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.31-r3.ebuild: - Added patch to add new USB ID for KWorld PlusTV Dual DVB-T Stick and linux - patch version 2.6.31.4 - -*gentoo-sources-2.6.30-r8 (09 Oct 2009) - - 09 Oct 2009; Michael Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.30-r8.ebuild: - Linux patches 2.6.30.8 and 2.6.30.9. Patch cc1 options to ensure -fPIC is - not used when compiling. - -*gentoo-sources-2.6.31-r2 (08 Oct 2009) - - 08 Oct 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.31-r2.ebuild: - Linux patches 2.6.31.2 and 2.6.31.3. fbcondecor patch for new linux - version. - - 28 Sep 2009; Brent Baude <ranger@gentoo.org> - gentoo-sources-2.6.30-r5.ebuild: - Marking gentoo-sources-2.6.30-r5 ppc64 for bug 283928 - -*gentoo-sources-2.6.31-r1 (27 Sep 2009) - - 27 Sep 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.31-r1.ebuild: - Gentoo sources version bump includes linxu patch 2.6.31.1 and a patch to - fix cc1 options to ensure -fPIC is not used when compiling - - 20 Sep 2009; nixnut <nixnut@gentoo.org> gentoo-sources-2.6.30-r5.ebuild: - ppc stable #283928 - - 18 Sep 2009; Mike Pagano <mpagano@gentoo.org> - gentoo-sources-2.6.26-r4.ebuild: - Fix minor repoman warning - -*gentoo-sources-2.6.30-r7 (16 Sep 2009) - - 16 Sep 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.30-r7.ebuild: - Linux patch versions 2.6.30.6 and 2.6.30.7. Header fix for sysrq.h to - include errno.h. - - 16 Sep 2009; Olivier Crête <tester@gentoo.org> - gentoo-sources-2.6.30-r5.ebuild: - Stable onb amd64, bug #283928 - -*gentoo-sources-2.6.31 (10 Sep 2009) - - 10 Sep 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.31.ebuild: - Initial 2.6.31 release including the fbcondecor patch,, a paoatch to - enable control of the unaligned access control policy from sysctl and a - patch for bad block relocation support for LiveCD users. - - 05 Sep 2009; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.30-r6.ebuild: - alpha/arm/ia64/sh/sparc stable - -*gentoo-sources-2.6.30-r6 (29 Aug 2009) - - 29 Aug 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.30-r6.ebuild: - Linux version 2.6.30.5 - - 28 Aug 2009; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.29-r5.ebuild, gentoo-sources-2.6.30-r4.ebuild, - gentoo-sources-2.6.30-r5.ebuild: - alpha/arm/ia64/sh/sparc/x86 stable - - 28 Aug 2009; Tobias Klausmann <klausman@gentoo.org> - gentoo-sources-2.6.30-r4.ebuild: - Stable on alpha, bug #279685 - -*gentoo-sources-2.6.30-r5 (14 Aug 2009) - - 14 Aug 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.30-r5.ebuild: - Fix for (CVE-2009-2692), Kernel: NULL pointer dereference due to incorrect - proto_ops initializations. Fix for Linux Kernel clock_nanosleep() NULL - Pointer Dereference, SA36200. Security hid dereference before null check - fix. New patch for fbcondecor. - - 09 Aug 2009; Brent Baude <ranger@gentoo.org> - gentoo-sources-2.6.30-r4.ebuild: - Marking gentoo-sources-2.6.30-r4 ppc64 for bug 279685 - - 09 Aug 2009; nixnut <nixnut@gentoo.org> gentoo-sources-2.6.30-r4.ebuild: - ppc stable #279685 - - 08 Aug 2009; Jeroen Roovers <jer@gentoo.org> - gentoo-sources-2.6.30-r4.ebuild: - Stable for HPPA (bug #279685). - - 03 Aug 2009; Markus Meier <maekke@gentoo.org> - gentoo-sources-2.6.30-r4.ebuild: - x86 stable, bug #279685 - - 02 Aug 2009; Jeremy Olexa <darkside@gentoo.org> - gentoo-sources-2.6.30-r4.ebuild: - amd64 stable, bug 279685 - - 02 Aug 2009; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.30-r4.ebuild: - arm/ia64/sh stable wrt #279685 - - 31 Jul 2009; Michael Pagano <mpagano@gentoo.org> - gentoo-sources-2.6.16-r13.ebuild: - Minor QA fix - - 30 Jul 2009; Mike Pagano <mpagano@gentoo.org> - -gentoo-sources-2.6.28.ebuild, -gentoo-sources-2.6.28-r1.ebuild, - -gentoo-sources-2.6.28-r2.ebuild, -gentoo-sources-2.6.28-r3.ebuild, - -gentoo-sources-2.6.28-r4.ebuild: - Old version cleanup - - 24 Jul 2009; Michael Pagano <mpagano@gentoo.org> - -gentoo-sources-2.6.30-r1.ebuild, -gentoo-sources-2.6.30-r2.ebuild: - Removing security vulnerable versions - -*gentoo-sources-2.6.30-r4 (23 Jul 2009) - - 23 Jul 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.30-r4.ebuild: - Linux patch 2.6.30.1. Compiler flag to not delete null pointer checks - when optimizing. - -*gentoo-sources-2.6.30-r3 (18 Jul 2009) - - 18 Jul 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.30-r3.ebuild: - Security fix PER_CLEAR_ON_SETUID CVE-2009-1895 and patch to fix NULL - pointer dereference in tun_chr_pool CVE-2009-1897 - - 14 Jul 2009; Mike Pagano <mpagano@gentoo.org> Manifest: - Fix manifest for 2.6.29-r6 - -*gentoo-sources-2.6.29-r6 (12 Jul 2009) - - 12 Jul 2009; Michael Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.29-r6.ebuild: - Removal of ext4 redundant patches. Bluetooth fix to avoid a hardlock. i915 - fix to set the object to the gtt domain when faulting it back it. Linux - patch 2.6.29.6 - -*gentoo-sources-2.6.30-r2 (03 Jul 2009) - - 03 Jul 2009; Michael Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.30-r2.ebuild: - Version bump - -*gentoo-sources-2.6.30-r1 (11 Jun 2009) - - 11 Jun 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.30-r1.ebuild: - Fixed DM Bad block relocation patch compile bug for 2.6.30 as per bug #273663 - -*gentoo-sources-2.6.30 (10 Jun 2009) - - 10 Jun 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.30.ebuild: - Version bump to 2.6.30. Bad block relocation support for LiveCD user. - Bootsplash fbcondecor patch and alpha sysctl uac patch. - - 04 Jun 2009; Tobias Klausmann <klausman@gentoo.org> - gentoo-sources-2.6.29-r5.ebuild: - Stable on alpha, bug #271774 - - 01 Jun 2009; nixnut <nixnut@gentoo.org> gentoo-sources-2.6.29-r5.ebuild: - ppc stable #271774 - - 31 May 2009; Markus Meier <maekke@gentoo.org> - gentoo-sources-2.6.29-r5.ebuild: - x86 stable, bug #271774 - - 31 May 2009; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.29-r5.ebuild: - Revert sparc stabilization on 2.6.29* as stable genkernel is broken - - 30 May 2009; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.29-r5.ebuild: - arm/ia64/sh/sparc stable wrt #271774 - - 29 May 2009; Steve Dibb <beandog@gentoo.org> - gentoo-sources-2.6.29-r5.ebuild: - amd64 stable, bug 271774 - - 29 May 2009; Jeroen Roovers <jer@gentoo.org> - gentoo-sources-2.6.29-r5.ebuild: - Stable for HPPA (bug #271774). - -*gentoo-sources-2.6.29-r5 (25 May 2009) - - 25 May 2009; Michael Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.29-r5.ebuild: - Linux patch 2.6.29.4. Alpha/PCI patch to make PCI resources available - - 20 May 2009; nixnut <nixnut@gentoo.org> gentoo-sources-2.6.28-r5.ebuild: - ppc stable #266792 - -*gentoo-sources-2.6.28-r6 (15 May 2009) - - 15 May 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.28-r6.ebuild: - Disable HW crypto functionality in rt61pci/rt73usb drivers to fix crash and - include linux patch 2.6.28.20 - -*gentoo-sources-2.6.29-r4 (15 May 2009) - - 15 May 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.29-r4.ebuild: - linux-2.6.29.3 patch - -*gentoo-sources-2.6.29-r3 (05 May 2009) - - 05 May 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.29-r3.ebuild: - fbcondecor patch for 2.6.29.2. usblp patch to poll continuously for the status. - -*gentoo-sources-2.6.29-r2 (29 Apr 2009) - - 29 Apr 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.29-r2.ebuild: - Additional ext4 fix for data integrity. Linux 2.6.29.2 patch - - 23 Apr 2009; Markus Meier <maekke@gentoo.org> gentoo-sources-2.6.28-r5: - amd64/x86 stable, bug #266792 - - 20 Apr 2009; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.28-r5.ebuild: - arm/ia64/sh/sparc stable wrt #266792 - - 20 Apr 2009; Jeroen Roovers <jer@gentoo.org> gentoo-sources-2.6.28-r5: - Stable for HPPA (bug #266792). - -*gentoo-sources-2.6.28-r5 (16 Apr 2009) - - 16 Apr 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.28-r5.ebuild: - Linux 2.6.28.9. Fix for performance regression when WRITE_SYNC writes and - writes submitted without sync flag caused excession idling in IO +scheduler. - Fix for print hanging in some printers (e.g. Canon BJC-3000). Revert null - dereference check in jbd2_journal_being_ordered_truncate for ocfs2 - - 11 Apr 2009; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.27-r10.ebuild: - arm/ia64/sh/sparc/x86 stable - -*gentoo-sources-2.6.29-r1 (05 Apr 2009) - - 05 Apr 2009; Michael Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.29-r1.ebuild: - Linux 2.6.29.1 patch, ext4 filesystem patches, fbcondecor version bump to - 0.9.6. - - 28 Mar 2009; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.29.ebuild: - Re-add ~sh, and mark ~alpha, since this compiles now - -*gentoo-sources-2.6.29 (24 Mar 2009) - - 24 Mar 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.29.ebuild: - Initial 2.6.29 release including the fbcondecor patch,, a paoatch to enable - control of the unaligned access control policy from sysctl and a patch for - bad block relocation support for LiveCD users - -*gentoo-sources-2.6.27-r10 (21 Mar 2009) - - 21 Mar 2009; Michael Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.27-r10.ebuild: - Adding linux patches 2.6.27.19 and 2.6.27.20 - - 20 Mar 2009; Michael Pagano <mpagano@gentoo.org> - gentoo-sources-2.6.28-r4.ebuild: - Adding back needed patch - - 19 Mar 2009; Michael Pagano <mpagano@gentoo.org> - gentoo-sources-2.6.28-r4.ebuild: - Removing redundant patch - -*gentoo-sources-2.6.28-r4 (19 Mar 2009) - - 19 Mar 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.28-r4.ebuild: - X.org PPC fix. Generic journaling for block device fix. Support for PAC207 - webcam. Linux 2.6.28.8. Ext4 data loss on crash prevention patches. - - 19 Mar 2009; Joseph Jezak <josejx@gentoo.org> - gentoo-sources-2.6.27-r8.ebuild: - Marked ppc/ppc64 stable. - -*gentoo-sources-2.6.28-r3 (07 Mar 2009) - - 07 Mar 2009; Michael Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.28-r3.ebuild: - Kernel patches 2.6.28.6 and 2.6.28.7. Removal of redundant ms keyboard - patch. fbcondecor version bump to 0.9.5. Regression fix for disks not - spinning down in ext3. Race condition fix in crypto api. - -*gentoo-sources-2.6.27-r9 (20 Feb 2009) - - 20 Feb 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.27-r9.ebuild: - linux patches 2.6.27.13, 2.6.27.14, 2.6.27.15, 2.6.27.16, 2.6.27.17, - 2.6.27.18. - - 17 Feb 2009; Jeroen Roovers <jer@gentoo.org> gentoo-sources-2.6.27.ebuild, - gentoo-sources-2.6.27-r1.ebuild, gentoo-sources-2.6.27-r2.ebuild, - gentoo-sources-2.6.27-r3.ebuild, gentoo-sources-2.6.27-r4.ebuild, - gentoo-sources-2.6.27-r5.ebuild, gentoo-sources-2.6.27-r6.ebuild, - gentoo-sources-2.6.27-r7.ebuild, gentoo-sources-2.6.27-r8.ebuild: - Mask 2.6.27 (bug #251670). - -*gentoo-sources-2.6.28-r2 (16 Feb 2009) - - 16 Feb 2009; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.28-r2.ebuild: - Includes a report descriptor fixup for MS keyboard receiver changes, linux - patches 2.6.28.3, 2.6.28.4 and 2.6.28.5 - - 14 Feb 2009; Tobias Klausmann <klausman@gentoo.org> - gentoo-sources-2.6.27-r8.ebuild: - Stable on alpha. - - 13 Feb 2009; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.28-r1.ebuild: - Add ~sh - - 14 Feb 2009; Tobias Klausmann <klausman@gentoo.org> - gentoo-sources-2.6.27-r8.ebuild: - Stable on alpha. - - 08 Feb 2009; Mike Frysinger <vapier@gentoo.org> - gentoo-sources-2.6.27-r8.ebuild: - Add s390 love. - - 24 Jan 2009; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.27-r8.ebuild: - Add ~sh, arm/ia64/sparc stable - - 20 Jan 2009; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.27-r8.ebuild: - Stable on x86 and amd64 - -*gentoo-sources-2.6.28-r1 (19 Jan 2009) - - 19 Jan 2009; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.28-r1.ebuild: - Update to Linux 2.6.28.1. Fix reuse of USB interfaces from userspace. Fix - compilation on alpha. Fix boot hang with pata_hpt366 driver. Fix iwl3945 - adhoc network disconnection issue. Fix capacity reported by Nokia 6300 - phone. Fix vt switch hang with GEM + compiz. Fix possible memory overflow - with SCTP networking. - -*gentoo-sources-2.6.27-r8 (19 Jan 2009) - - 19 Jan 2009; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.27-r8.ebuild: - Update to Linux 2.6.27.12. Add some fixes for s390 architecture. Fix - inability to select correct DVB tuner modules. Fix data transfer over - IrDA. Fix iwl3945 adhoc network disconnection issue. Fix compilation on - alpha. Fix capacity reported by Nokia 6300 phone. Fix possible memory - overflow with SCTP networking. - - 09 Jan 2009; Joseph Jezak <josejx@gentoo.org> - gentoo-sources-2.6.27-r7.ebuild: - Marked ppc/ppc64 stable for bug #251670. - - 26 Dec 2008; Tobias Klausmann <klausman@gentoo.org> - gentoo-sources-2.6.27-r7.ebuild: - Stable on alpha, bug #251670 - - 26 Dec 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.27-r7.ebuild: - arm/ia64/sparc stable wrt #251670 - - 25 Dec 2008; Markus Meier <maekke@gentoo.org> - gentoo-sources-2.6.27-r7.ebuild: - x86 stable, bug #251670 - - 25 Dec 2008; Thomas Anderson <gentoofan23@gentoo.org> - gentoo-sources-2.6.27-r7.ebuild: - stable amd64, bug 251670 - - 25 Dec 2008; Tobias Klausmann <klausman@gentoo.org> - gentoo-sources-2.6.28.ebuild: - Doesn't compile on alpha, see - http://bugzilla.kernel.org/show_bug.cgi?id=12289 - -*gentoo-sources-2.6.28 (25 Dec 2008) - - 25 Dec 2008; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.28.ebuild: - Initial 2.6.28 release - -*gentoo-sources-2.6.27-r7 (19 Dec 2008) - - 19 Dec 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.27-r7.ebuild: - Update to Linux 2.6.27.10. Fix capacity reported by Macpower hard drive. - Fix shutdown hang on Sun Blade 100. - -*gentoo-sources-2.6.27-r6 (14 Dec 2008) - - 14 Dec 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.27-r6.ebuild: - Update to Linux 2.6.27.9. Fix capacity reported by Pentax K10D camera. Fix - a suspend/resume regression. Fix vmware guest crash-on-boot. - - 10 Dec 2008; Tobias Klausmann <klausman@gentoo.org> - gentoo-sources-2.6.27-r5.ebuild: - Keyworded on alpha - - 10 Dec 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.26-r4.ebuild: - arm/ia64/sparc stable - - 06 Dec 2008; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.26-r4.ebuild: - Stable on x86/amd64 - -*gentoo-sources-2.6.26-r4 (06 Dec 2008) - - 06 Dec 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.26-r4.ebuild: - Fix microphone input regression on Asus laptops. Restore clockevents - fixes. Fix minor security issues with AF_UNIX sockets and inotify. - -*gentoo-sources-2.6.27-r5 (06 Dec 2008) - - 06 Dec 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.27-r5.ebuild: - Update to Linux 2.6.27.8. Fix microphone input regression on Asus laptops. - - 22 Nov 2008; Markus Meier <maekke@gentoo.org> - gentoo-sources-2.6.26-r3.ebuild: - amd64/x86 stable, bug #245638 - -*gentoo-sources-2.6.27-r4 (21 Nov 2008) - - 21 Nov 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.27-r4.ebuild: - Update to Linux 2.6.27.7 - -*gentoo-sources-2.6.26-r3 (19 Nov 2008) - - 19 Nov 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.26-r3.ebuild: - Update to Linux 2.6.26.8. Fix 2.6.26.5 resume regression. Disable - high-resolution scheduler ticks to avoid performance regression. Fix some - hfs and hfsplus security issues. - -*gentoo-sources-2.6.27-r3 (17 Nov 2008) - - 17 Nov 2008; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.27-r3.ebuild: - Version bump. Includes setkey policy breakage fix, IT8720 sensor support, - tcp ordering patch, dmi quirk fix, linux patches 2.6.27.5 and 2.6.27.6. - - 12 Nov 2008; Joseph Jezak <josejx@gentoo.org> - gentoo-sources-2.6.26-r2.ebuild: - Marked ppc/ppc64 stable for bug #245638. - - 11 Nov 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.26-r2.ebuild, gentoo-sources-2.6.27-r2.ebuild: - arm/ia64/sparc stable wrt #245638 - - 09 Nov 2008; Tobias Klausmann <klausman@gentoo.org> - gentoo-sources-2.6.26-r2.ebuild: - Stable on alpha, bug #245638 - - 08 Nov 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.24-r8.ebuild, gentoo-sources-2.6.25-r9.ebuild: - arm/ia64/sparc/x86 stable - - 06 Nov 2008; Jeroen Roovers <jer@gentoo.org> - gentoo-sources-2.6.26-r2.ebuild: - Stable for HPPA (bug #245638). - -*gentoo-sources-2.6.27-r2 (30 Oct 2008) - - 30 Oct 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.27-r2.ebuild: - Update to Linux 2.6.27.4. Restore ordering of TCP options to work around - broken routers. - - 24 Oct 2008; Jeroen Roovers <jer@gentoo.org> - gentoo-sources-2.6.25-r8.ebuild: - Stable for HPPA too. - - 24 Oct 2008; Mike Pagano <mpagano@gentoo.org> - gentoo-sources-2.6.27-r1.ebuild: - Remove e1000e warning - -*gentoo-sources-2.6.27-r1 (23 Oct 2008) - - 23 Oct 2008; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.27-r1.ebuild: - Adding linux patches: 2.6.27.1 2.6.27.2 and 2.6.27.3 - - 15 Oct 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.27.ebuild: - Add ~ia64/~sparc - - 15 Oct 2008; Jeroen Roovers <jer@gentoo.org> gentoo-sources-2.6.27.ebuild: - Marked ~hppa too. - - 14 Oct 2008; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.27.ebuild: - Added ~ppc/~ppc64 - - 13 Oct 2008; Santiago M. Mola <coldwind@gentoo.org> - gentoo-sources-2.6.27.ebuild: - Added ~amd64 keyword (bug #241698). - -*gentoo-sources-2.6.27 (12 Oct 2008) - - 12 Oct 2008; Michael Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.27.ebuild: - Version bump to 2.6.27 which includes a bump of squashfs to 3.4, the alpha - unaligned access patch, the fbcondecor patch and the patch for bad block - relocation support for LiveCD users. - -*gentoo-sources-2.6.26-r2 (11 Oct 2008) - - 11 Oct 2008; Michael Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.26-r2.ebuild: - Includes linux 2.6.26.3, 2.6.26.4, 2.6.26.5, 2.6.26.6 and a missing - capability security patch in drivers/net/wan/sbni.c. - -*gentoo-sources-2.6.25-r9 (06 Oct 2008) - - 06 Oct 2008; Michael Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.25-r9.ebuild: - Version bump - - 03 Oct 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.25-r8.ebuild: - ia64/sparc/x86 stable - - 26 Aug 2008; Jeroen Roovers <jer@gentoo.org> - gentoo-sources-2.6.25-r7.ebuild: - Stable for HPPA too. - -*gentoo-sources-2.6.25-r8 (18 Aug 2008) - - 18 Aug 2008; Michael Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.25-r8.ebuild: - Adding linux-2.6.25.12, linux-2.6.25.13, linux-2.6.25.14, linux-2.6.25.15, - a Makefile patch and a patch to fix missing inlines in a header file - -*gentoo-sources-2.6.26-r1 (14 Aug 2008) - - 14 Aug 2008; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.26-r1.ebuild: - Update to Linux 2.6.26.1 and 2.6.26.2 including a patch to the main - Makefile. New mount option for FAT filesystems allowing timestamps to be in - coordinated universal time (UTC) - - 23 Jul 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.25-r7.ebuild: - ia64/sparc stable - - 22 Jul 2008; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.25-r7.ebuild: - Stable on x86 and amd64 - -*gentoo-sources-2.6.25-r7 (21 Jul 2008) - - 21 Jul 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.25-r7.ebuild: - Update to Linux 2.6.25.11. Fix sound output on saa7134 TV tuner. - - 20 Jul 2008; Jeroen Roovers <jer@gentoo.org> gentoo-sources-2.6.26.ebuild: - Marked ~hppa too. - - 18 Jul 2008; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.26.ebuild: - Added ~ppc - - 18 Jul 2008; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.26.ebuild: - Added ~ppc64 - - 17 Jul 2008; Tobias Klausmann <klausman@gentoo.org> - gentoo-sources-2.6.26.ebuild: - Keyworded on alpha - - 17 Jul 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.26.ebuild: - Add ~ia64 - - 17 Jul 2008; Friedrich Oslage <bluebird@gentoo.org> - gentoo-sources-2.6.26.ebuild: - Readd ~sparc keyword - -*gentoo-sources-2.6.26 (17 Jul 2008) - - 17 Jul 2008; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.26.ebuild: - Initial 2.6.26 release - - 17 Jul 2008; Christian Faulhammer <opfer@gentoo.org> - gentoo-sources-2.6.25-r6.ebuild: - stable x86, bug 230285 - - 05 Jul 2008; Jeroen Roovers <jer@gentoo.org> - gentoo-sources-2.6.25-r6.ebuild: - Stable for HPPA (bug #230285). - - 05 Jul 2008; Tobias Klausmann <klausman@gentoo.org> - gentoo-sources-2.6.25-r6.ebuild: - Stable on alpha, bug #230285 - - 02 Jul 2008; Friedrich Oslage <bluebird@gentoo.org> - gentoo-sources-2.6.25-r6.ebuild: - Stable on sparc, bug #230285 - - 03 Jul 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.25-r6.ebuild: - ia64 stable - - 02 Jul 2008; Thomas Anderson <gentoofan23@gentoo.org> - gentoo-sources-2.6.25-r6.ebuild: - stable amd64, bug 230285 - -*gentoo-sources-2.6.25-r6 (01 Jul 2008) - - 01 Jul 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.25-r6.ebuild: - Update to Linux 2.6.25.9. Fix evdev force feedback in 32-bit compat mode. - -*gentoo-sources-2.6.25-r5 (17 Jun 2008) - - 17 Jun 2008; Michael Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.25-r5.ebuild: - Update to Linux 2.6.25.7 - -*gentoo-sources-2.6.25-r4 (17 May 2008) - - 17 May 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.25-r4.ebuild: - Update to Linux 2.6.25.4 - - 14 May 2008; Tobias Klausmann <klausman@gentoo.org> - gentoo-sources-2.6.24-r8.ebuild: - Stable on alpha - - 12 May 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.24-r8.ebuild: - ia64/sparc stable - - 12 May 2008; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.24-r8.ebuild: - Stable on x86/amd64 - -*gentoo-sources-2.6.25-r3 (10 May 2008) - - 10 May 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.25-r3.ebuild: - Update to Linux 2.6.25.3. Fix numlock emulation on Apple Aluminium - keyboards. - -*gentoo-sources-2.6.24-r8 (10 May 2008) - - 10 May 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.24-r8.ebuild: - Update to Linux 2.6.24.7. Fix utimensat() security issue. - - 05 May 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.24-r7.ebuild: - ia64/sparc stable - - 03 May 2008; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.24-r7.ebuild: - Stable on x86/amd64 - -*gentoo-sources-2.6.25-r2 (03 May 2008) - - 03 May 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.25-r2.ebuild: - Update to Linux 2.6.25.1. Fix import of default .config on x86/amd64. - -*gentoo-sources-2.6.24-r7 (02 May 2008) - - 02 May 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.24-r7.ebuild: - Update to Linux 2.6.24.6. Fix import of default .config on x86/amd64. Fix - QLA2xxx SCSI regression. - - 01 May 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.24-r6.ebuild: - ia64/sparc stable - - 28 Apr 2008; Tobias Klausmann <klausman@gentoo.org> - gentoo-sources-2.6.24-r6.ebuild: - Stable on alpha - - 21 Apr 2008; Brent Baude <ranger@gentoo.org> - gentoo-sources-2.6.25-r1.ebuild: - Keywording gentoo-sources-2.6.25-r1 ~ppc and ~ppc64 - - 21 Apr 2008; Tobias Klausmann <klausman@gentoo.org> - gentoo-sources-2.6.25-r1.ebuild: - Keyworded on alpha - - 21 Apr 2008; Jeroen Roovers <jer@gentoo.org> - gentoo-sources-2.6.25-r1.ebuild: - Marked ~hppa too. - - 20 Apr 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.25-r1.ebuild: - Add ~ia64 - -*gentoo-sources-2.6.24-r6 (19 Apr 2008) - - 19 Apr 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.24-r6.ebuild: - Update to Linux 2.6.24.5. Fix ipw2200 radiotap interface. Fix headphone - port and PC speaker for Fujitsu ALC262 sound. Fix alpha UAC sysctl - warnings. Fix ppc modular build of ppc apm_emu. - -*gentoo-sources-2.6.25-r1 (19 Apr 2008) - - 19 Apr 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.25-r1.ebuild: - Sorry for the numerous problems with the earlier release. Fix squashfs and - fbcondecor compilation. Fix HDA Fujitsu patch to apply on all systems. Add - support for externally building speech synthesizer. - - 18 Apr 2008; Ferris McCormick <fmccor@gentoo.org> - gentoo-sources-2.6.25.ebuild: - Add ~sparc keyword. - -*gentoo-sources-2.6.25 (17 Apr 2008) - - 17 Apr 2008; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.25.ebuild: - Initial 2.6.25 release - - 10 Apr 2008; Christian Heim <phreak@gentoo.org> Manifest: - Fixing the Manifest for gentoo-sources-2.6.24-r4 (#217085). - -*gentoo-sources-2.6.24-r5 (09 Apr 2008) - - 09 Apr 2008; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.24-r5.ebuild: - Fix for missing include for Compaq Smart Array 5xxx Controller - - 09 Apr 2008; Jeroen Roovers <jer@gentoo.org> - gentoo-sources-2.6.24-r4.ebuild: - Fails to boot on HPPA (bug #217030). - - 31 Mar 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.24-r4.ebuild: - ia64/sparc stable - - 31 Mar 2008; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.24-r4.ebuild: - Stable on x86 and amd64 - -*gentoo-sources-2.6.24-r4 (30 Mar 2008) - - 30 Mar 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.24-r4.ebuild: - Update to Linux 2.6.24.4. Fix mixer controls for Fujitsu Lifebook E8410 - sound chip. Fix bluetooth rfcomm crash on suspend. Fix bluetooth log spam - with a buggy conwise USB adapter. Fix usb-storage access to Motorola ROKR - phone. Allow more IPSEC connections. Add MMC support for Ricoh RL5c476. - Fix GCC 4.3 issues. Fix device detection on SiS PATA. Support temperature - monitoring of new Intel CPUs. - - 18 Mar 2008; Tobias Scherbaum <dertobi123@gentoo.org> - gentoo-sources-2.6.24-r3.ebuild: - ppc stable, bug #213283 - - 15 Mar 2008; Richard Freeman <rich0@gentoo.org> - gentoo-sources-2.6.24-r3.ebuild: - amd64 stable - 213283 - - 15 Mar 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.24-r3.ebuild: - ia64/sparc stable wrt #213283 - - 14 Mar 2008; Jeroen Roovers <jer@gentoo.org> - gentoo-sources-2.6.24-r3.ebuild: - Stable for HPPA (bug #213283). - - 13 Mar 2008; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.24-r3.ebuild: - Stable on ppc64; bug #213283 - - 13 Mar 2008; Dawid Węgliński <cla@gentoo.org> - gentoo-sources-2.6.24-r3.ebuild: - Stable on x86 (bug #213283) - - 13 Mar 2008; Tobias Klausmann <klausman@gentoo.org> - gentoo-sources-2.6.24-r3.ebuild: - Stable on alpha, bug #213283 - - 07 Mar 2008; Brent Baude <ranger@gentoo.org> - gentoo-sources-2.6.23-r9.ebuild: - stable ppc64, bug 212496 - - 06 Mar 2008; nixnut <nixnut@gentoo.org> gentoo-sources-2.6.23-r9.ebuild: - Stable on ppc wrt bug 212496 - - 06 Mar 2008; Jeroen Roovers <jer@gentoo.org> - gentoo-sources-2.6.23-r9.ebuild: - Stable for HPPA (bug #212496). - - 29 Feb 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.23-r9.ebuild: - alpha/ia64/sparc stable - - 28 Feb 2008; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.23-r9.ebuild: - Stable on x86 and amd64 - - 26 Feb 2008; Mike Pagano <mpagano@gentoo.org> - gentoo-sources-2.6.24-r2.ebuild, gentoo-sources-2.6.24-r3.ebuild: - Correct genpatches versions used - -*gentoo-sources-2.6.24-r3 (26 Feb 2008) - - 26 Feb 2008; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.24-r2.ebuild, +gentoo-sources-2.6.24-r3.ebuild: - Update to Linux 2.6.24.3. Fix e1000e bridging issue. Fix arcmsr+archttp - warning flood. Fix boot hang on Intel Q35 chipset. Fix MAC address in sis190 - driver. - -*gentoo-sources-2.6.23-r9 (26 Feb 2008) - - 26 Feb 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.23-r9.ebuild: - Update to Linux 2.6.23.17. Fix e1000e bridging issue. Fix gcc 4.2 - compilation on alpha/ppc64/ia64. - - 14 Feb 2008; Tobias Scherbaum <dertobi123@gentoo.org> - gentoo-sources-2.6.23-r8.ebuild: - ppc stable - - 14 Feb 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.23-r8.ebuild, gentoo-sources-2.6.24-r2.ebuild: - alpha stable on .23 and add ~alpha on .24 - - 14 Feb 2008; Jeroen Roovers <jer@gentoo.org> - gentoo-sources-2.6.23-r8.ebuild: - Stable for HPPA too. - - 14 Feb 2008; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.23-r8.ebuild: - Stable on ppc64 - - 13 Feb 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.23-r8.ebuild: - ia64 stable - - 11 Feb 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.23-r8.ebuild: - sparc stable - - 11 Feb 2008; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.23-r8.ebuild: - Stable on x86 + amd64 - -*gentoo-sources-2.6.24-r2 (11 Feb 2008) - - 11 Feb 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.24-r2.ebuild: - Add another vmsplice() security fix. This solves all the current vmsplice - exploits that we know about. - -*gentoo-sources-2.6.23-r8 (11 Feb 2008) - - 11 Feb 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.23-r8.ebuild: - Add another vmsplice() security fix. This solves all the current vmsplice - exploits that we know about. - -*gentoo-sources-2.6.24-r1 (10 Feb 2008) - - 10 Feb 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.24-r1.ebuild: - Update to Linux 2.6.24.1, includes important vmsplice() security fix. - fbcondecor ioctl/sysctl fix. Fix SCSI CDROM implementation of - CDROM_DRIVE_STATUS ioctl. Echo ^C on console when process is terminated with - Ctrl+C. Fix XFS readdir crash. - -*gentoo-sources-2.6.23-r7 (10 Feb 2008) - - 10 Feb 2008; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.23-r7.ebuild: - Update to Linux 2.6.23.15 - includes important vmsplice() security fix. - Workaround buggy PCI-E bridge behaviour. Fix sonypi/meye drivers on older - Vaio laptops. - - 04 Feb 2008; Mike Frysinger <vapier@gentoo.org> - gentoo-sources-2.6.24.ebuild: - Move sh to common kernel ebuilds. - - 31 Jan 2008; Jeroen Roovers <jer@gentoo.org> - gentoo-sources-2.6.23-r6.ebuild: - Stable for HPPA too. - - 29 Jan 2008; Brent Baude <ranger@gentoo.org> gentoo-sources-2.6.24.ebuild: - False start; marked gentoo-sources-2.6.24 from ppc|64 to ~ppc|64 - - 29 Jan 2008; Brent Baude <ranger@gentoo.org> gentoo-sources-2.6.24.ebuild: - Marking gentoo-sources-2.6.24 ppc and ppc64 stable - - 26 Jan 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.24.ebuild: - Add ~ia64/~sparc wrt #207599 - - 26 Jan 2008; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.23-r6.ebuild: - sparc stable - - 25 Jan 2008; Jeroen Roovers <jer@gentoo.org> gentoo-sources-2.6.24.ebuild: - Marked ~hppa. - -*gentoo-sources-2.6.24 (25 Jan 2008) - - 25 Jan 2008; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.24.ebuild: - Initial 2.6.24 release - - 23 Jan 2008; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.23-r6.ebuild: - Stable on x86 and amd64 - -*gentoo-sources-2.6.23-r6 (19 Jan 2008) - - 19 Jan 2008; Michael Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.23-r6.ebuild: - Adding linux-2.6.23.13 and linux-2.6.23.14 - - 23 Dec 2007; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.22-r10.ebuild: - alpha/ia64/sparc/x86 stable - -*gentoo-sources-2.6.23-r5 (21 Dec 2007) - - 21 Dec 2007; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.23-r5.ebuild: - Adding linux-2.6.23.11 and linux-2.6.23.12. - -*gentoo-sources-2.6.23-r4 (15 Dec 2007) - - 15 Dec 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.23-r4.ebuild: - Update to Linux 2.6.23.10. Fix flood of ACPI processor events. Another Nikon - D200 camera fix. Send uevents for platform devices. - - 12 Dec 2007; Jeroen Roovers <jer@gentoo.org> - gentoo-sources-2.6.23-r3.ebuild: - Stable for HPPA. - - 07 Dec 2007; Ferris McCormick <fmccor@gentoo.org> - gentoo-sources-2.6.23-r3.ebuild: - Sparc stable: Linux bender 2.6.23-gentoo-r3 #1 SMP Fri Dec 7 17:10:47 UTC - 2007 sparc64 sun4v UltraSparc T1 (Niagara) GNU/Linux - - 06 Dec 2007; Tobias Scherbaum <dertobi123@gentoo.org> - gentoo-sources-2.6.23-r3.ebuild: - ppc stable, bug #200994 - - 04 Dec 2007; Christian Faulhammer <opfer@gentoo.org> - gentoo-sources-2.6.23-r3.ebuild: - stable x86, bug 200994 - - 02 Dec 2007; Olivier Crête <tester@gentoo.org> - gentoo-sources-2.6.23-r3.ebuild: - Mark stable on amd64 for bug #200994 - - 02 Dec 2007; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.23-r3.ebuild: - Stable on ppc64; bug #200994 - - 28 Nov 2007; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.22-r9.ebuild: - Stable on ppc64 - -*gentoo-sources-2.6.23-r3 (27 Nov 2007) - - 27 Nov 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.23-r3.ebuild: - Update to Linux 2.6.23.9. Fix missing USB attributes in sysfs. Fix 7 hour - boot delay for buggy forcedeth hardware. - -*gentoo-sources-2.6.23-r2 (17 Nov 2007) - - 17 Nov 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.23-r2.ebuild: - Update to Linux 2.6.23.8. Fix ACPI thermal check stack overflow. - - 15 Nov 2007; Jeroen Roovers <jer@gentoo.org> - gentoo-sources-2.6.23-r1.ebuild: - Marked ~hppa. - -*gentoo-sources-2.6.22-r10 (07 Nov 2007) - - 07 Nov 2007; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.22-r10.ebuild: - Update to Linux 2.6.22.12. Another usb-storage capacity fix for Nikon D40X - camera. Fix a divide-by-zero crash in the ALSA HDSP driver. Implement NHRP - over GRE tunnel. Fix a stack overflow due to recursive ACPI thermal checks. - - 05 Nov 2007; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.22-r9.ebuild: - alpha stable - -*gentoo-sources-2.6.23-r1 (02 Nov 2007) - - 02 Nov 2007; Mike Pagano <mpagano@gentoo.org> - +gentoo-sources-2.6.23-r1.ebuild: - Update to Linux 2.6.23.1. Another usb-storage capacity fix for Nikon D40X - camera. Fix a divide-by-zero crash in the ALSA HDSP driver. Implement NHRP - over GRE tunnel. Add Intel ICH9 PCI-Express ethernet support. Fix NFS data - corruption regression. - - 31 Oct 2007; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.22-r9.ebuild: - ia64/sparc stable - - 29 Oct 2007; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.22-r9.ebuild: - Stable on x86/amd64 - - 26 Oct 2007; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.23.ebuild: - Add ~ia64/~sparc - - 25 Oct 2007; Jose Luis Rivero <yoswink@gentoo.org> - gentoo-sources-2.6.22-r8.ebuild: - Stable on alpha. This solves some issues related to fdatasync defined but - unimplemented which was breaking mysql with the error 'Can't sync file - mysqld-bin.index' errno(78) - - 18 Oct 2007; Luca Barbato <lu_zero@gentoo.org> - gentoo-sources-2.6.23.ebuild: - Marked ~ppc ~ppc64 - -*gentoo-sources-2.6.22-r9 (15 Oct 2007) - - 15 Oct 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.22-r9.ebuild: - Update to Linux 2.6.22.10. Fix custom keymap compilation. Fix hostap netdev - type registration. - - 14 Oct 2007; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.22-r8.ebuild: - ia64 stable - -*gentoo-sources-2.6.23 (10 Oct 2007) - - 10 Oct 2007; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.23.ebuild: - Initial 2.6.23 release. vesafb-tng has been replaced by uvesafb, and - fbsplash has been renamed to fbcondecor. - - 27 Sep 2007; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.22-r8.ebuild: - Stable on amd64 and x86 - -*gentoo-sources-2.6.22-r8 (26 Sep 2007) - - 26 Sep 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.22-r8.ebuild: - Update to Linux 2.6.22.9, includes ALSA security fix. Add sound support - (HDA) on ThinkPad T61. usb-storage capacity fix for Nikon D200 camera. - - 22 Sep 2007; Joseph Jezak <josejx@gentoo.org> - gentoo-sources-2.6.22-r5.ebuild: - Marked ppc64 stable. - -*gentoo-sources-2.6.22-r7 (22 Sep 2007) - - 22 Sep 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.22-r7.ebuild: - Update to Linux 2.6.22.7 for x86_64 security fix (bug #193386). Fix ivtv - configuration dependencies. Fix atl1 oops with over 4GB RAM. Add usb-storage - quirk for Nikon D40. Fix PCI-related boot problem on Sun Fire V100. - - 22 Sep 2007; Joseph Jezak <josejx@gentoo.org> - gentoo-sources-2.6.22-r5.ebuild: - Marked ppc stable. - - 04 Sep 2007; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.22-r5.ebuild: - ia64 stable - - 01 Sep 2007; Christian Heim <phreak@gentoo.org> - gentoo-sources-2.6.22-r6.ebuild: - gentoo-sources-2.6.22-r6 wasn't supposed to go straight to stable. - -*gentoo-sources-2.6.22-r6 (01 Sep 2007) - - 01 Sep 2007; Christian Heim <phreak@gentoo.org> - +gentoo-sources-2.6.22-r6.ebuild: - Revision bump for Linux 2.6.22.5 and 2.6.22.6. Also fixing #187522 (thanks - to Mike Doty) and #188521 (thanks to Mike Pagano). - - 24 Aug 2007; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.22-r5.ebuild: - Stable on sparc - - 22 Aug 2007; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.22-r5.ebuild: - Stable on x86 and amd64 - -*gentoo-sources-2.6.22-r5 (21 Aug 2007) - - 21 Aug 2007; Christian Heim <phreak@gentoo.org> - +gentoo-sources-2.6.22-r5.ebuild: - Revision bump for Linux 2.6.22 and #187175 for ia64. - -*gentoo-sources-2.6.22-r4 (16 Aug 2007) - - 16 Aug 2007; Christian Heim <phreak@gentoo.org> - +gentoo-sources-2.6.22-r4.ebuild: - Revision bump for Linux 2.6.22.3. - -*gentoo-sources-2.6.20-r10 (16 Aug 2007) - - 16 Aug 2007; Christian Heim <phreak@gentoo.org> - +gentoo-sources-2.6.20-r10.ebuild: - Revision bump for Linux 2.6.20.16. - -*gentoo-sources-2.6.22-r3 (13 Aug 2007) - - 13 Aug 2007; Christian Heim <phreak@gentoo.org> - +gentoo-sources-2.6.22-r3.ebuild: - Revision bump for Linux 2.6.22.2. - - 13 Aug 2007; Christian Faulhammer <opfer@gentoo.org> - gentoo-sources-2.6.22-r2.ebuild: - stable x86, bug 187559 - - 10 Aug 2007; Steve Dibb <beandog@gentoo.org> - gentoo-sources-2.6.22-r2.ebuild: - amd64 stable, bug 187559 - - 07 Aug 2007; Joseph Jezak <josejx@gentoo.org> - gentoo-sources-2.6.22-r2.ebuild: - Marked ~ppc for bug #186953. - - 01 Aug 2007; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.22-r2.ebuild: - Add ~ia64 - - 01 Aug 2007; Christoph Mende <angelos@gentoo.org> - gentoo-sources-2.6.21-r4.ebuild: - Stable on amd64 wrt bug #184203 - - 30 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.22-r2.ebuild: - Keyworded ~sparc - - 29 Jul 2007; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.22-r2.ebuild: - Add ~alpha - -*gentoo-sources-2.6.22-r2 (28 Jul 2007) - - 28 Jul 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.22-r2.ebuild: - Fix squashfs compile. Add usb-storage quirk for Nikon D100. Fix a mac80211 - deadlock. Fix disk detection in pata_hpt37x driver. Fix X on sparc64 Sabre - systems. - - 15 Jul 2007; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.21-r4.ebuild: - ia64 stable, thanks to kloeri for testing - - 12 Jul 2007; Christian Faulhammer <opfer@gentoo.org> - gentoo-sources-2.6.21-r4.ebuild: - stable x86, bug 184203 - - 11 Jul 2007; Joseph Jezak <josejx@gentoo.org> - gentoo-sources-2.6.21-r4.ebuild: - Marked ppc stable for bug #184203. - -*gentoo-sources-2.6.22-r1 (11 Jul 2007) - - 11 Jul 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.22-r1.ebuild: - Update to Linux 2.6.22.1. Add another Logitech QuickCam microphone ID. - - 11 Jul 2007; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.21-r4.ebuild: - alpha stable wrt #184203, thanks to Brian Evans for testing - - 10 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.21-r4.ebuild: - Stable on sparc - - 10 Jul 2007; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.22.ebuild: - Added ~ppc64 - -*gentoo-sources-2.6.22 (09 Jul 2007) - - 09 Jul 2007; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.22.ebuild: - Initial 2.6.22 release. speakup has been dropped for incompatibility reasons. - - 09 Jul 2007; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.21-r4.ebuild: - Stable on ppc64; bug #184203 - -*gentoo-sources-2.6.21-r4 (09 Jul 2007) - - 09 Jul 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.21-r4.ebuild: - Update to Linux 2.6.21.6. Readd Asus M2V HDA patch. - - 06 Jul 2007; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.21-r3.ebuild: - Stable on ppc64; bug #184203 - - 04 Jul 2007; Joseph Jezak <josejx@gentoo.org> - gentoo-sources-2.6.21-r3.ebuild: - Marked ppc stable for bug #184203. - - 04 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.21-r3.ebuild: - Stable on sparc wrt #184203 - - 26 Jun 2007; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.20-r9.ebuild: - Stable on sparc - -*gentoo-sources-2.6.20-r9 (12 Jun 2007) - - 12 Jun 2007; Christian Heim <phreak@gentoo.org> - +gentoo-sources-2.6.20-r9.ebuild: - Update to Linux 2.6.20.14, fixing CVE-2007-2875, CVE-2007-2453 and - CVE-2007-2876. Also backporting some fixes that went into 2.6.21.5. - -*gentoo-sources-2.6.21-r3 (12 Jun 2007) - - 12 Jun 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.21-r3.ebuild: Update to Linux 2.6.21.5. Fix eth1394 - network interface renaming. Reduce confusion around powernow-k8 ACPI - configuration. - - 07 Jun 2007; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.21-r1.ebuild: - alpha stable as decided - -*gentoo-sources-2.6.21-r2 (25 May 2007) - - 25 May 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.21-r2.ebuild: - Update to Linux 2.6.21.3. Fix libata disk spindown issues. Fix tifm MMC - driver. Fix silent audio on Asus M2V. - -*gentoo-sources-2.6.21-r1 (19 May 2007) - - 19 May 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.21-r1.ebuild: - Fix alpha UAC control. Fix amd64 time measurement. Add AL2230S support for - zd1211 USB-WLAN devices. Fix resume of hda-intel sigmatel codecs. Fix - detection of Logitech QuickCam microphone. Fix AHCI/ATI boot problems. Fix - mouse probing on HP-500. Re-enable 88E8056 ethernet support in sky2. Fix - crash with sis900 ethernet hardware. - - 10 May 2007; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.20-r8.ebuild: - Stable on amd64 - - 10 May 2007; Bryan Østergaard <kloeri@gentoo.org> - gentoo-sources-2.6.21.ebuild: - Add ~alpha and ~ia64 keywords. - - 07 May 2007; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.20-r8.ebuild: - Stable on sparc - - 06 May 2007; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.20-r8.ebuild: - Stable on x86 - -*gentoo-sources-2.6.20-r8 (02 May 2007) - - 02 May 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.20-r8.ebuild: - Update to Linux 2.6.20.11. Fix detection of Logitech QuickCam microphone - - 01 May 2007; Daniel Drake <dsd@gentoo.org> - -files/gentoo-sources-2.4.CAN-2004-1056.patch, - -files/gentoo-sources-2.4.81106.patch, -gentoo-sources-2.4.32-r7.ebuild: - Remove gentoo-sources-2.4 as previously discussed. Replaced by - vanilla-sources for 2.4 users, who are as usual strongly encouraged to - upgrade to 2.6 - - 27 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.20-r7.ebuild: - Stable on sparc - - 27 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.21.ebuild: - Keyworded ~sparc - - 27 Apr 2007; Joseph Jezak <josejx@gentoo.org> - gentoo-sources-2.6.21.ebuild: - Marked ~ppc. - -*gentoo-sources-2.6.21 (26 Apr 2007) - - 26 Apr 2007; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.21.ebuild: - Initial 2.6.21 release - -*gentoo-sources-2.6.20-r7 (26 Apr 2007) - - 26 Apr 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.20-r7.ebuild: - Update to Linux 2.6.20.9. SPARC64 SBUS IOMMU and unaligned access fixes. - speakup compile fix - - 26 Apr 2007; Steve Dibb <beandog@gentoo.org> - gentoo-sources-2.6.20-r6.ebuild: - amd64 stable, bug 173702 - - 18 Apr 2007; Christian Faulhammer <opfer@gentoo.org> - gentoo-sources-2.6.20-r6.ebuild: - stable x86, bug 173710 - -*gentoo-sources-2.6.20-r6 (15 Apr 2007) - - 15 Apr 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.20-r6.ebuild: - Update to 2.6.20.7. Fix i2c-i801 resume hang. - - 10 Apr 2007; Joseph Jezak <josejx@gentoo.org> - gentoo-sources-2.6.20-r5.ebuild: - Marked ppc stable for bug #173702. - - 08 Apr 2007; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.20-r5.ebuild: - Stable on ppc64; bug #173702 - -*gentoo-sources-2.6.20-r5 (07 Apr 2007) - - 07 Apr 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.20-r5.ebuild: - Update to Linux 2.6.20.6 - - 03 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.20-r4.ebuild: - Stable on sparc - -*gentoo-sources-2.6.20-r4 (25 Mar 2007) - - 25 Mar 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.20-r4.ebuild: - Update to Linux 2.6.20.4 - - 18 Mar 2007; Bryan Østergaard <kloeri@gentoo.org> metadata.xml: - Remove plasmaroo from metadata.xml due to retirement. - -*gentoo-sources-2.6.20-r3 (14 Mar 2007) - - 14 Mar 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.20-r3.ebuild: - Update to Linux 2.6.20.3 - -*gentoo-sources-2.6.20-r2 (10 Mar 2007) - - 10 Mar 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.20-r2.ebuild: - Update to Linux 2.6.20.2. Fix link speed negociation with r8169 network driver. - -*gentoo-sources-2.6.20-r1 (06 Mar 2007) - - 06 Mar 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.20-r1.ebuild: - Update to Linux 2.6.20.1. Fix mouse detection issues. Readd sata_promise TX2 - IDE support. Fix speakup modular build. Fix DVB/cx25840 firmware loading. 3 - extra sparc64 fixes. - -*gentoo-sources-2.6.19-r7 (06 Mar 2007) - - 06 Mar 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.19-r7.ebuild: - Update to Linux 2.6.19.7 - -*gentoo-sources-2.6.18-r7 (06 Mar 2007) - - 06 Mar 2007; Christian Heim <phreak@gentoo.org> - +gentoo-sources-2.6.18-r7.ebuild: - Bumping gentoo-sources to 2.6.18.8. - - 26 Feb 2007; Joseph Jezak <josejx@gentoo.org> - gentoo-sources-2.6.20.ebuild: - Marked ~ppc. - - 18 Feb 2007; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.20.ebuild: - Added ~ppc64 - - 15 Feb 2007; Chris Gianelloni <wolf31o2@gentoo.org> - gentoo-sources-2.6.19-r5.ebuild: - Stable on amd64 wrt bug #164564. - - 11 Feb 2007; Lars Weiler <pylon@gentoo.org> - gentoo-sources-2.6.19-r5.ebuild: - Stable on ppc; bug #164564. - - 09 Feb 2007; Tim Yamin <plasmaroo@gentoo.org> - gentoo-sources-2.6.19-r6.ebuild: - Keyword ~ia64. - -*gentoo-sources-2.6.19-r6 (05 Feb 2007) - - 05 Feb 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.19-r6.ebuild: - Update to Linux 2.6.19.3. Add support for extra ports on ICH8 AHCI SATA - hardware. - - 05 Feb 2007; Chris Gianelloni <wolf31o2@gentoo.org> - gentoo-sources-2.6.19-r5.ebuild: - Stable on alpha wrt bug #164564. - - 05 Feb 2007; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.20.ebuild: - Keyworded ~sparc - -*gentoo-sources-2.6.20 (05 Feb 2007) - - 05 Feb 2007; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.20.ebuild: - Initial 2.6.20 release - - 31 Jan 2007; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.19-r5.ebuild: - Stable on ppc64; bug #164564 - - 30 Jan 2007; Raúl Porcel <armin76@gentoo.org> - gentoo-sources-2.6.19-r5.ebuild: - x86 stable wrt bug 164564 - -*gentoo-sources-2.6.19-r5 (29 Jan 2007) - - 29 Jan 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.19-r5.ebuild: - Add support for composite input of Terratec Cinergy 1400 DVB-T. Fix IPv6 - address obtain regression. Fix x86_64 NFS compilation on GCC 3.4. Work - around problem with Kyocera FS-820 initialization. Fix knfsd crash with - unaligned memory access. - - 15 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.17-r9.ebuild: - Stable on sparc - -*gentoo-sources-2.6.19-r4 (11 Jan 2007) - - 11 Jan 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.19-r4.ebuild: - Update to Linux 2.6.19.2. Fix boot time crash when using IDE command line - parameters. Fix CIFS page corruption. - -*gentoo-sources-2.6.19-r3 (05 Jan 2007) - - 05 Jan 2007; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.19-r3.ebuild: - Fix loss of keyboard/mouse. Minor error handling fixes for ext2, ext3, - squashfs, cramfs. Readd Promise 2037x IDE port support. Fix long term shared - mmap page writeback corruption bug. - - 27 Dec 2006; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.18-r6.ebuild: - Stable on x86 and amd64 - -*gentoo-sources-2.6.18-r6 (26 Dec 2006) - - 26 Dec 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.18-r6.ebuild: - Fix ibmtr compile error. Add some minor corruption fixes for ext2, ext3, - squashfs, isofs, NTFS, cramfs, and HFS from the month of kernel bugs - - 22 Dec 2006; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.18-r5.ebuild: - Stable on x86 and amd64 - -*gentoo-sources-2.6.18-r5 (20 Dec 2006) - - 20 Dec 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.18-r5.ebuild: - Update to Linux 2.6.18.6. Fix token ring networking security hole. Fix - libata status handling. - - 16 Dec 2006; Bryan Østergaard <kloeri@gentoo.org> - gentoo-sources-2.6.19-r2.ebuild: - Add ~alpha keyword. - -*gentoo-sources-2.6.19-r2 (13 Dec 2006) - - 13 Dec 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.19-r2.ebuild: - Update to Linux 2.6.19.1. Fix libata status handling. - - 07 Dec 2006; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.18-r4.ebuild: - Stable on x86 and amd64 - -*gentoo-sources-2.6.18-r4 (07 Dec 2006) - - 07 Dec 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.18-r4.ebuild: - Update to Linux 2.6.18.5 - - 03 Dec 2006; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.18-r3.ebuild: - Stable on ppc64 - - 02 Dec 2006; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.19-r1.ebuild: - Added ~ppc64 - -*gentoo-sources-2.6.19-r1 (02 Dec 2006) - - 02 Dec 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.19-r1.ebuild: - Fix compilation of vesafb-tng, speakup, and fbsplash. Sorry for the bad - initial release. - - 01 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.19.ebuild: - Keyworded ~sparc - - 01 Dec 2006; Joseph Jezak <josejx@gentoo.org> - gentoo-sources-2.6.18-r3.ebuild, gentoo-sources-2.6.19.ebuild: - Marked 2.6.19 ~ppc and 2.6.18-r3 ppc stable. - -*gentoo-sources-2.6.19 (30 Nov 2006) - - 30 Nov 2006; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.19.ebuild: - Initial 2.6.19 release - -*gentoo-sources-2.6.18-r3 (20 Nov 2006) - - 20 Nov 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.18-r3.ebuild: - Update to Linux 2.6.18.3. Fix xt_physdev compile error. Fix microcode update - with microcode-ctl-1.15. Fix ieee1394 module reload oops on PPC. - - 15 Nov 2006; Chris Gianelloni <wolf31o2@gentoo.org> - gentoo-sources-2.6.18-r2.ebuild: - Stable on amd64 wrt bug #154566. - - 15 Nov 2006; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.18-r2.ebuild: - Stable on ppc64; bug #154566 - - 10 Nov 2006; Joshua Jackson <tsunam@gentoo.org> - gentoo-sources-2.6.18-r2.ebuild: - Stable x86; seems like everything that needs to go has - -*gentoo-sources-2.6.18-r2 (08 Nov 2006) - - 08 Nov 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.18-r2.ebuild: - Update to Linux 2.6.18.2. Fix bcm43xx signal quality and TX timeouts. Fix - slab corruption in softmac shared key authentication. Remove buggy promise - SATA patch. Fix sky2 hangs. - -*gentoo-sources-2.6.18-r1 (15 Oct 2006) - - 15 Oct 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.18-r1.ebuild: - Update to Linux 2.6.18.1. Add support for RTL8168 ethernet. Update sky2 to - version 1.9 - -*gentoo-sources-2.6.17-r9 (15 Oct 2006) - - 15 Oct 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.17-r9.ebuild: - Update to Linux 2.6.17.14 - - 12 Oct 2006; Tim Yamin <plasmaroo@gentoo.org> gentoo-sources-2.6.18.ebuild: - Stable on IA64. - - 24 Sep 2006; Michael Hanselmann <hansmi@gentoo.org> - gentoo-sources-2.6.17-r8.ebuild: - Stable on ppc. - -*gentoo-sources-2.6.18 (20 Sep 2006) - - 20 Sep 2006; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.18.ebuild: - Initial 2.6.18 release, features squashfs 3.1 - - 12 Sep 2006; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.17-r8.ebuild: - Stable on sparc - - 09 Sep 2006; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.17-r8.ebuild: - Stable on x86 and amd64 - -*gentoo-sources-2.6.17-r8 (08 Sep 2006) - - 08 Sep 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.17-r8.ebuild: - Update to Linux 2.6.17.13. Add support for VIA VT8237A IDE/SATA. Fix TX - timeout handling in xirc2ps_cs net driver. Fix support for large SD/MMC - cards. - - 05 Sep 2006; Chris Gianelloni <wolf31o2@gentoo.org> - gentoo-sources-2.6.16-r13.ebuild: - Added ~alpha to 2.6.16-r13, which works for me and was used to build a LiveCD. - - 03 Sep 2006; Michael Hanselmann <hansmi@gentoo.org> - gentoo-sources-2.6.17-r7.ebuild: - Stable on ppc. - - 30 Aug 2006; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.17-r7.ebuild: - Stable on sparc - - 29 Aug 2006; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.17-r7.ebuild: - Stable on x86 and amd64 - -*gentoo-sources-2.6.17-r7 (28 Aug 2006) - - 28 Aug 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.17-r7.ebuild: - Readd VIA IRQ quirk patch which was accidently dropped in 2.6.17-r5 - -*gentoo-sources-2.6.17-r6 (24 Aug 2006) - - 24 Aug 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.17-r6.ebuild: - Update to Linux 2.6.17.11. Fix some ultrasparc issues. Fix alpha EV56 - Kconfig issue. Fix NFS stall bug. Update sky2 to v1.6 - - 11 Aug 2006; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.17-r5.ebuild: - Stable on sparc - -*gentoo-sources-2.6.17-r5 (09 Aug 2006) - - 09 Aug 2006; Christian Heim <phreak@gentoo.org> - +gentoo-sources-2.6.17-r5.ebuild: - Revision bump. Importing 2.6.17.8 and some fixes/feature-enhancements from - 2.6.18 - - 05 Aug 2006; Michael Hanselmann <hansmi@gentoo.org> - gentoo-sources-2.6.17-r4.ebuild: - Stable on ppc. - -*gentoo-sources-2.4.32-r7 (04 Aug 2006) - - 04 Aug 2006; <plasmaroo@gentoo.org> -gentoo-sources-2.4.32-r5.ebuild, - +gentoo-sources-2.4.32-r7.ebuild: - Bump to -hf32.7. - - 27 Jul 2006; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.17-r4.ebuild: - Stable on ppc64; bug #141444 - - 25 Jul 2006; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.17-r4.ebuild: - Stable on amd64 and x86 - - 24 Jul 2006; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.16-r13.ebuild, gentoo-sources-2.6.17-r4.ebuild: - Stable on sparc - - 23 Jul 2006; <plasmaroo@gentoo.org> gentoo-sources-2.6.17-r3.ebuild: - Stable on IA64. - -*gentoo-sources-2.6.17-r4 (21 Jul 2006) - - 21 Jul 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.17-r4.ebuild: - Import some patches from the upcoming 2.6.17.7 release. Fix vesafb-tng mtrr - module parameter. Fix various IRQ/ACPI-related problems on VIA motherboards. - Boot/resume driver order fix. Add support for a new r8169 device, and - Broadcom 5787 ethernet. Update to sky2 v1.5. - - 15 Jul 2006; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.16-r13.ebuild: - Stable on x86 and amd64 - -*gentoo-sources-2.6.17-r3 (15 Jul 2006) - - 15 Jul 2006; Christian Heim <phreak@gentoo.org> - +gentoo-sources-2.6.17-r3.ebuild: - procfs local priviledge escalation security fix. Note that our patch is - slightly safer than the one included in 2.6.17.5, we are otherwise equivalent - (#140444 / CVE-2006-3626) - -*gentoo-sources-2.6.16-r13 (15 Jul 2006) - - 15 Jul 2006; Christian Heim <phreak@gentoo.org> - +gentoo-sources-2.6.16-r13.ebuild: - procfs race local priviledge escalation security fix. Note that our patch - is slightly safer than the one included in 2.6.16.25, we are otherwise - equivalent (#140444 / CVE-2006-3626) - - 10 Jul 2006; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.16-r12.ebuild, gentoo-sources-2.6.17-r2.ebuild: - Stable on sparc - - 08 Jul 2006; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.16-r12.ebuild: - Stable on ppc64 - - 07 Jul 2006; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.16-r12.ebuild: - Stable on x86 + amd64 - -*gentoo-sources-2.6.17-r2 (07 Jul 2006) - - 07 Jul 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.17-r2.ebuild: - Update to Linux 2.6.17.4 for coredump privilege escalation security fix - -*gentoo-sources-2.6.16-r12 (06 Jul 2006) - - 06 Jul 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.16-r12.ebuild: - Update to Linux 2.6.16.24 for coredump privilege escalation security fix - - 06 Jul 2006; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.16-r11.ebuild: - Stable on ppc64 - - 05 Jul 2006; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.16-r11.ebuild: - Stable on amd64 and x86 - - 04 Jul 2006; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.16-r11.ebuild, gentoo-sources-2.6.17-r1.ebuild: - Stable on sparc - -*gentoo-sources-2.4.32-r6 (02 Jul 2006) - - 02 Jul 2006; <plasmaroo@gentoo.org> -gentoo-sources-2.4.31-r1.ebuild, - -gentoo-sources-2.4.32-r4.ebuild, gentoo-sources-2.4.32-r5.ebuild, - +gentoo-sources-2.4.32-r6.ebuild: - Add security patches for #138617; remove stale versions. - -*gentoo-sources-2.6.17-r1 (02 Jul 2006) - - 02 Jul 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.17-r1.ebuild: - Update to Linux 2.6.17.3. Fix link detection on VIA Velocity ethernet. Fix - sound on Lenovo 3000 laptops. Add support for Broadcom BCM4319 WLAN, nvidia - MCP61/65 LAN/SATA/IDE, VIA VT8251 SATA, new JMicron SATA, ASIX 88178 - USB-LAN. - - 01 Jul 2006; <dams@gentoo.org> gentoo-sources-2.6.17.ebuild: - added ~ppc - -*gentoo-sources-2.6.16-r11 (01 Jul 2006) - - 01 Jul 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.16-r11.ebuild: - Update to Linux 2.6.16.23. - - 29 Jun 2006; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.16-r10.ebuild, gentoo-sources-2.6.17.ebuild: - Stable on sparc, run for the hills - - 20 Jun 2006; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.17.ebuild: - Give it some ~sparc love - - 20 Jun 2006; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.17.ebuild: - Added ~ppc64 - -*gentoo-sources-2.6.17 (18 Jun 2006) - - 18 Jun 2006; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.17.ebuild: - Initial 2.6.17 release - -*gentoo-sources-2.6.16-r10 (16 Jun 2006) - - 16 Jun 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.16-r10.ebuild: - Update to Linux 2.6.16.20. Fix i2o storage regressions (#136088). Fix - PPP/PPTP connection dropping (#130555). Fix tmpfs time resolution problem - (#114722). - - 10 Jun 2006; Michael Hanselmann <hansmi@gentoo.org> - gentoo-sources-2.6.16-r9.ebuild: - Stable on ppc. - - 09 Jun 2006; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.16-r9.ebuild: - Stable on ppc64 - - 04 Jun 2006; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.16-r9.ebuild: - Stable on x86 - - 04 Jun 2006; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.16-r9.ebuild: - Stable on amd64 - -*gentoo-sources-2.6.16-r9 (02 Jun 2006) - - 02 Jun 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.16-r9.ebuild: - Update to Linux 2.6.16.19. Another sky2 fix. Print a message when USB - devices are rejected due to power budgeting (#132721). Fix utimes() - behaviour on NFS (#132673). Fix DVB compile problem (#133249). - -*gentoo-sources-2.4.32-r5 (28 May 2006) - - 28 May 2006; <plasmaroo@gentoo.org> -gentoo-sources-2.4.32-r3.ebuild, - +gentoo-sources-2.4.32-r5.ebuild: - Security bump for #134365; include some fixes from -hf32.6. - - 24 May 2006; Michael Hanselmann <hansmi@gentoo.org> - gentoo-sources-2.6.16-r7.ebuild: - Stable on ppc. - - 23 May 2006; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.16-r7.ebuild: - Stable on ppc64 - -*gentoo-sources-2.6.16-r8 (21 May 2006) - - 21 May 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.16-r8.ebuild: - Update to Linux 2.6.16.17. sky2 update to v1.4. Fix sbp2 breakage with - PL-3507 devices. Fix mouse wheel inversion with wacom driver. - -*gentoo-sources-2.4.32-r4 (11 May 2006) - - 11 May 2006; <plasmaroo@gentoo.org> +gentoo-sources-2.4.32-r4.ebuild: - Security bump to -hf32.4; bug #112791. - - 09 May 2006; Chris Gianelloni <wolf31o2@gentoo.org> - gentoo-sources-2.6.16-r7.ebuild: - Marking stable on x86 for bug #127003. Marking stable on amd64 for bug - #127003 and bug #130028. This also fixes some issues with the sky2 driver. - -*gentoo-sources-2.6.16-r7 (08 May 2006) - - 08 May 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.16-r7.ebuild: - Update to Linux 2.6.16.14 (2 minor security fixes). Update sky2 to v1.3-rc1 - - 02 May 2006; Chris Gianelloni <wolf31o2@gentoo.org> - gentoo-sources-2.6.16-r6.ebuild: - Stable on x86 for the sky2 driver. - -*gentoo-sources-2.6.16-r6 (02 May 2006) - - 02 May 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.16-r6.ebuild: - Fix sky2 compilation problem, bug #132017 - - 02 May 2006; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.16-r5.ebuild: - Stable on ppc64 - - 02 May 2006; Chris Gianelloni <wolf31o2@gentoo.org> - gentoo-sources-2.6.16-r5.ebuild: - Stable on x86 wrt bug #127003. - - 02 May 2006; Joseph Jezak <josejx@gentoo.org> - gentoo-sources-2.6.16-r5.ebuild: - Marked ppc stable for bug #127003. - -*gentoo-sources-2.6.16-r5 (02 May 2006) - - 02 May 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.16-r5.ebuild: - Update to Linux 2.6.16.12. Fix lack of sound on certain HDA-based setups. - Update sky2 to v1.2. PS/2 mouse replug fix. Reduce ACPI verbosity on certain - error. - - 01 May 2006; Joseph Jezak <josejx@gentoo.org> - gentoo-sources-2.6.16-r3.ebuild: - Marked ppc stable for bug #127003. - - 30 Apr 2006; <plasmaroo@gentoo.org> files/gentoo-sources-2.4.81106.patch: - Fix #131607. - - 28 Apr 2006; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.16-r4.ebuild: - Keyworded ~sparc wrt #127003 - - 28 Apr 2006; <plasmaroo@gentoo.org> gentoo-sources-2.6.16-r3.ebuild: - Stable on IA64; bug #127003. - -*gentoo-sources-2.6.16-r4 (25 Apr 2006) - - 25 Apr 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.16-r4.ebuild: - Update to Linux 2.6.16.11. Fix boot when CONFIG_TIPAR=y (#128852). Add - IPW2200 monitor mode config option (#131017). - - 23 Apr 2006; Chris Gianelloni <wolf31o2@gentoo.org> - gentoo-sources-2.6.16-r3.ebuild: - Stable on x86 wrt bug #127003. - - 22 Apr 2006; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.16-r3.ebuild: - Stable on ppc64; bug #127003 - -*gentoo-sources-2.6.16-r3 (19 Apr 2006) - - 19 Apr 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.16-r3.ebuild: - Update to Linux 2.6.16.9 - -*gentoo-sources-2.4.32-r3 (16 Apr 2006) - - 16 Apr 2006; <plasmaroo@gentoo.org> -gentoo-sources-2.4.32-r2.ebuild, - +gentoo-sources-2.4.32-r3.ebuild: - Security bump (bug #112791). - -*gentoo-sources-2.6.16-r2 (12 Apr 2006) - - 12 Apr 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.16-r2.ebuild: - Update to Linux 2.6.16.4. Fix ppc boot code compile issue. Fix input.h - compilation from userspace. - - 05 Apr 2006; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.16-r1.ebuild: - Removed from ~sparc - qlogic fc is b0rked, breaks blade 1000, 2000, 280r and - others - - 31 Mar 2006; Jeremy Huddleston <eradicator@gentoo.org> - gentoo-sources-2.6.16-r1.ebuild: - Added to ~sparc. - -*gentoo-sources-2.6.16-r1 (28 Mar 2006) - - 28 Mar 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.16-r1.ebuild: - Update to Linux 2.6.16.1. Add sparsemem sparc fix. Update skge and sky2 - drivers. Fix compile of splashutils. Fix a key renewal bug in hostap. - - 27 Mar 2006; Aron Griffis <agriffis@gentoo.org> - gentoo-sources-2.6.16.ebuild: - Mark 2.6.16 ~ia64. #127003 - - 22 Mar 2006; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.16.ebuild: - Added ~ppc64; bug #127003 - - 22 Mar 2006; Luca Barbato <lu_zero@gentoo.org> - gentoo-sources-2.6.16.ebuild: - Marked ~ppc - - 22 Mar 2006; Chris Gianelloni <wolf31o2@gentoo.org> - gentoo-sources-2.6.16.ebuild: - Added ~x86 to KEYWORDS wrt bug #127003. - -*gentoo-sources-2.6.16 (20 Mar 2006) - - 20 Mar 2006; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.16.ebuild: - Initial 2.6.16 release. Features SquashFS 3.0 - - 17 Mar 2006; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.15-r7.ebuild: - Stable on ppc64 - - 11 Mar 2006; <plasmaroo@gentoo.org> gentoo-sources-2.6.15-r7.ebuild: - Stable on IA64; bug #125439. - - 05 Mar 2006; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.15-r7.ebuild: - Stable on amd64 - -*gentoo-sources-2.6.15-r7 (02 Mar 2006) - - 02 Mar 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.15-r7.ebuild: - 2 compile fixes (mempolicy/NFS). Another USB EHCI boot fix. - -*gentoo-sources-2.6.15-r6 (02 Mar 2006) - - 02 Mar 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.15-r6.ebuild: - Update to Linux 2.6.15.5, includes lots of fixes. Fix a bluetooth crasher. - Fix EHCI-related boot hang. Some security fixes. - - 20 Feb 2006; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.15-r5.ebuild: - Stable on ppc64 - - 13 Feb 2006; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.15-r5.ebuild: - Stable on amd64 - -*gentoo-sources-2.6.15-r5 (11 Feb 2006) - - 11 Feb 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.15-r5.ebuild: - Update to Linux 2.6.15.4. Includes various fixes. - -*gentoo-sources-2.6.15-r4 (07 Feb 2006) - - 07 Feb 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.15-r4.ebuild: - Update to Linux 2.6.15.3, includes security fix. Also fix some memory leaks - in mousedev and selinux, and a PPP checksum fix as well. - - 06 Feb 2006; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.15-r3.ebuild: - Stable on amd64 - - 04 Feb 2006; <plasmaroo@gentoo.org> gentoo-sources-2.6.15-r3.ebuild: - Mark stable on IA64. - -*gentoo-sources-2.6.15-r3 (04 Feb 2006) - - 05 Feb 2006; Daniel Drake <dsd@gentoo.org> gentoo-sources-2.6.15-r3.ebuild: - Probably The Kernel For 2006.0 (TM): Fix unused CPU on some SMP boards with - broken BIOSes. Add JMicron JMB360/363 SATA support. Fix for setting date on - sparc64 (CVE-2006-0482). Fix emu10k1 sound driver. Fix hung dell_rbu - firmware kernel thread. PCI express mmconfig fix for broken BIOSes. - -*gentoo-sources-2.6.15-r2 (31 Jan 2006) - - 31 Jan 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.15-r2.ebuild: - Update to Linux 2.6.15.2. Some minor security fixes. Update sky2 to v0.15. - Enable libata ATAPI (i.e. SATA CDROM) support by default. Fix fbsplash - silent splash image not showing throughout bootup. Fix scsi memory leak. - - 30 Jan 2006; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.15-r1.ebuild: - Stable on ppc64: bug #118671 - - 27 Jan 2006; Michael Hanselmann <hansmi@gentoo.org> - gentoo-sources-2.6.15-r1.ebuild: - Stable on ppc. - - 24 Jan 2006; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.15-r1.ebuild: - Added ~ppc64 - - 22 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org> - gentoo-sources-2.6.15-r1.ebuild: - Marking stable on x86 wrt bug #118671. - - 22 Jan 2006; Stephen Bennett <spb@gentoo.org> - gentoo-sources-2.6.15-r1.ebuild: - Added ~alpha; bug #118671. - - 22 Jan 2006; Luis Medinas <metalgod@gentoo.org> - gentoo-sources-2.6.15-r1.ebuild: - Stable on amd64. See bug #118671. - - 16 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org> - gentoo-sources-2.6.15-r1.ebuild: - Stick a ~sparc in it - -*gentoo-sources-2.6.15-r1 (15 Jan 2006) - - 15 Jan 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.15-r1.ebuild: - Update to Linux 2.6.15.1 - misc fixes, and some security fixes too. sky2 - updated to v0.12. Add support for Intel ICH8. suspend/resume support for - ata_piix driver. - - 10 Jan 2006; Michael Hanselmann <hansmi@gentoo.org> - gentoo-sources-2.6.15.ebuild: - Added to ~ppc. - - 04 Jan 2006; Petteri Räty <betelgeuse@gentoo.org> - gentoo-sources-2.6.15.ebuild: - Added ~x86 keyword. - -*gentoo-sources-2.6.14-r7 (04 Jan 2006) - - 04 Jan 2006; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.14-r7.ebuild: - Security fixes for infra-red and rose hardware. Hopefully the last 2.6.14 - release. - -*gentoo-sources-2.6.15 (03 Jan 2006) - - 03 Jan 2006; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.15.ebuild: - Initial 2.6.15 release. Features the new sky2 (Marvell SysKonnect Yukon-II) - network driver. vesafb/vesafb-tng users: Your framebuffer will run SLOOOW - unless you explicitly enable mtrr:3 on the kernel command line. I use (for - vesafb): vga=0x318 video=vesafb:mtrr:3 - -*gentoo-sources-2.4.32-r2 (03 Jan 2006) - - 03 Jan 2006; <plasmaroo@gentoo.org> -gentoo-sources-2.4.32-r1.ebuild, - +gentoo-sources-2.4.32-r2.ebuild: - Backport latest security fixes (bug #112791). - - 30 Dec 2005; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.14-r6.ebuild: - Stable on ppc64; bug #100023 - -*gentoo-sources-2.6.14-r6 (29 Dec 2005) - - 29 Dec 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.14-r6.ebuild: - Update to Linux 2.6.14.5, plus a PPC G5 watercooling fix. - - 24 Dec 2005; Michael Hanselmann <hansmi@gentoo.org> - gentoo-sources-2.6.14-r5.ebuild: - Stable on ppc. - - 21 Dec 2005; Marcus D. Hanwell <cryos@gentoo.org> - gentoo-sources-2.6.14-r5.ebuild: - Stable on amd64. - -*gentoo-sources-2.4.32-r1 (18 Dec 2005) - - 18 Dec 2005; <plasmaroo@gentoo.org> +gentoo-sources-2.4.32-r1.ebuild: - Version bump; also fix #103312. - - 18 Dec 2005; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.14-r5.ebuild: - Stable on ppc64 - -*gentoo-sources-2.6.14-r5 (15 Dec 2005) - - 15 Dec 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.14-r5.ebuild: - Update to Linux 2.6.14.4. Really fix the hyperthreading slowdown. Fix NUMA - boot problem. - - 07 Dec 2005; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.14-r4.ebuild: - Stable on x86 - -*gentoo-sources-2.6.14-r4 (02 Dec 2005) - - 02 Dec 2005; Daniel Drake <dsd@gentoo.org> - -gentoo-sources-2.6.9-r9.ebuild, +gentoo-sources-2.6.14-r4.ebuild: - Fix slowdown on pentium 4 systems. Fix boot hang for various HP/compaq - laptops. setkeys security fix. inode integer overflow fix. - - 28 Nov 2005; Bryan Østergaard <kloeri@gentoo.org> - gentoo-sources-2.6.14-r3.ebuild: - ~alpha keyword. - - 27 Nov 2005; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.4.31-r1.ebuild: - Stable on x86 - - 26 Nov 2005; Daniel Drake <dsd@gentoo.org> - -files/gentoo-sources-2.4.28.77181.patch, - -files/gentoo-sources-2.4.28.arpFix.patch, - -files/gentoo-sources-2.4.28.brk-locked.patch, - -files/gentoo-sources-2.4.77094.patch, - -files/gentoo-sources-2.4.77666.patch, - -files/gentoo-sources-2.4.78362.patch, - -files/gentoo-sources-2.4.78363.patch, - -files/gentoo-sources-2.4.81195.patch, - -files/gentoo-sources-2.4.81295.patch, - -files/gentoo-sources-2.4.82201.patch, - -files/gentoo-sources-2.4.CAN-2004-1016.patch, - -files/gentoo-sources-2.4.CAN-2004-1137.patch, - -files/gentoo-sources-2.4.PaX-84167.patch, - -files/gentoo-sources-2.4.binfmt_a.out.patch, - -files/gentoo-sources-2.4.cmdlineLeak.patch, - -files/gentoo-sources-2.4.vma.patch, -gentoo-sources-2.4.28-r9.ebuild, - -gentoo-sources-2.6.13-r3.ebuild: - Remove old versions - -*gentoo-sources-2.6.14-r3 (25 Nov 2005) - - 25 Nov 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.14-r3.ebuild: - Update to Linux 2.6.14.3. Fix the microtek scanner driver. Support new (5,8) - Powerbooks. Fix dvb-related compile error. Make cx88 less verbose. - - 23 Nov 2005; Marcus D. Hanwell <cryos@gentoo.org> - gentoo-sources-2.6.14-r2.ebuild: - Stable on amd64, closes bug 112984. - - 19 Nov 2005; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.14-r2.ebuild: - Added ~ppc64 - - 13 Nov 2005; Michael Hanselmann <hansmi@gentoo.org> - gentoo-sources-2.6.14-r2.ebuild: - Stable on ppc. - - 12 Nov 2005; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.14-r2.ebuild: - Stable on x86 - -*gentoo-sources-2.6.14-r2 (11 Nov 2005) - - 11 Nov 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.14-r2.ebuild: - Update to Linux 2.6.14.2 - includes various bugfixes - -*gentoo-sources-2.6.14-r1 (09 Nov 2005) - - 09 Nov 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.14-r1.ebuild: - Update to Linux 2.6.14.1 (includes important security fix). Fix a bug - causing BIND to break. Fix compile on alpha. Fix a slight NLS problem. Minor - fbsplash + vesfafb-tng updates. This will be marked stable soon, please - test. - - 29 Oct 2005; Jeremy Huddleston <eradicator@gentoo.org> - gentoo-sources-2.6.14.ebuild: - Added to ~amd64. - - 29 Oct 2005; Jeremy Huddleston <eradicator@gentoo.org> - gentoo-sources-2.6.13-r5.ebuild: - Stable on amd64. - - 28 Oct 2005; Joseph Jezak <josejx@gentoo.org> - gentoo-sources-2.6.14.ebuild: - Marked ~ppc. - -*gentoo-sources-2.6.14 (28 Oct 2005) - - 28 Oct 2005; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.14.ebuild: - Initial release. Features vesafb-tng 1.0-rc1-r1 - - 28 Oct 2005; Daniel Drake <dsd@gentoo.org> -gentoo-sources-2.6.13.ebuild, - -gentoo-sources-2.6.13-r1.ebuild, -gentoo-sources-2.6.13-r2.ebuild, - -gentoo-sources-2.6.13-r4.ebuild, gentoo-sources-2.6.13-r5.ebuild: - Mark 2.6.13-r5 stable on x86, and remove some old versions - -*gentoo-sources-2.6.13-r5 (26 Oct 2005) - - 26 Oct 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.13-r5.ebuild: - Fix suspend on iBooks. Fix amd64 pageattr bug. Fix inotify memory leak. Fix - vesafb-tng compile error. Fix 'make mandocs' target. - - 15 Oct 2005; Jeremy Huddleston <eradicator@gentoo.org> - gentoo-sources-2.6.13-r4.ebuild: - Added to ~sparc. - -*gentoo-sources-2.6.13-r4 (12 Oct 2005) - - 12 Oct 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.13-r4.ebuild: - Clock skew fix for AMD64 X2, and update to Linux 2.6.13.4 - - 10 Oct 2005; Luis Medinas <metalgod@gentoo.org> - gentoo-sources-2.6.13-r3.ebuild: - Marked Stable on amd64. - - 08 Oct 2005; Michael Hanselmann <hansmi@gentoo.org> - gentoo-sources-2.6.13-r3.ebuild: - Stable on ppc. - - 07 Oct 2005; Aron Griffis <agriffis@gentoo.org> - gentoo-sources-2.6.13.ebuild, gentoo-sources-2.6.13-r1.ebuild, - gentoo-sources-2.6.13-r2.ebuild, gentoo-sources-2.6.13-r3.ebuild: - Arch-mask 2.6.13 on ia64 since it causes machine checks on rx2600. 2.6.14 - seems to be fixed so well wait for gentoo-sources-2.6.14 - - 06 Oct 2005; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.13-r3.ebuild: - Stable on x86 - -*gentoo-sources-2.6.13-r3 (05 Oct 2005) - - 05 Oct 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.13-r3.ebuild: - Update to 2.6.13.3, and fix the Yenta compile error. - - 19 Sep 2005; Jeremy Huddleston <eradicator@gentoo.org> - gentoo-sources-2.6.13-r2.ebuild: - Added to ~sparc. - -*gentoo-sources-2.6.13-r2 (18 Sep 2005) - - 18 Sep 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.13-r2.ebuild: - Update to 2.6.13.2. Fix a speakup-related gameport problem. Fix the evil - AMD64 SMP crash issues, plus a couple more fixes. - - 17 Sep 2005; Jeremy Huddleston <eradicator@gentoo.org> - gentoo-sources-2.6.13-r1.ebuild: - Added to ~sparc. - - 14 Sep 2005; Luca Barbato <lu_zero@gentoo.org> - gentoo-sources-2.6.13-r1.ebuild: - Marked ~ppc - -*gentoo-sources-2.6.13-r1 (11 Sep 2005) - - 11 Sep 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.13-r1.ebuild: - Update to 2.6.13.1 which fixes the most common problems from the original - 2.6.13 release. skge tree update, and a fix for the build system requiring - an extra kallsyms pass in some situations - - 05 Sep 2005; Jeremy Huddleston <eradicator@gentoo.org> - gentoo-sources-2.6.13.ebuild: - Added ~sparc. - - 03 Sep 2005; Michael Hanselmann <hansmi@gentoo.org> - gentoo-sources-2.6.12-r10.ebuild: - Stable on ppc. - - 03 Sep 2005; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.12-r10.ebuild: - Stable on ppc64 - - 03 Sep 2005; Luis Medinas <metalgod@gentoo.org> - gentoo-sources-2.6.12-r10.ebuild: - Marked Stable on AMD64. - - 02 Sep 2005; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.12-r10.ebuild: - Stable on x86 - - 30 Aug 2005; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.13.ebuild: - added ~ppc64 - - 30 Aug 2005; Marcus D. Hanwell <cryos@gentoo.org> - gentoo-sources-2.6.13.ebuild: - Marked ~amd64, closes bug 104256. - -*gentoo-sources-2.6.12-r10 (30 Aug 2005) - - 30 Aug 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.12-r10.ebuild: - Update to 2.6.12.6, fix two AMD64 bugs, and fix a forcedeth problem - -*gentoo-sources-2.6.13 (29 Aug 2005) - - 29 Aug 2005; Daniel Drake <dsd@gentoo.org> - -gentoo-sources-2.6.12-r4.ebuild, -gentoo-sources-2.6.12-r6.ebuild, - -gentoo-sources-2.6.12-r7.ebuild, -gentoo-sources-2.6.12-r8.ebuild, - +gentoo-sources-2.6.13.ebuild: - 2.6.13 initial release, includes squashfs 2.2 - - 25 Aug 2005; Aron Griffis <agriffis@gentoo.org> - gentoo-sources-2.6.12-r9.ebuild: - stable on ia64 #102582 - - 21 Aug 2005; Luis Medinas <metalgod@gentoo.org> - gentoo-sources-2.6.12-r9.ebuild: - Marked Stable on AMD64. Bug #102582 - - 21 Aug 2005; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.12-r9.ebuild: - Stable on ppc64 (bug #102582) - - 21 Aug 2005; Jeremy Huddleston <eradicator@gentoo.org> - gentoo-sources-2.6.12-r9.ebuild: - Marked ~sparc. - - 19 Aug 2005; Michael Hanselmann <hansmi@gentoo.org> - gentoo-sources-2.6.12-r9.ebuild: - Stable on ppc. - - 16 Aug 2005; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.12-r9.ebuild: - Stable on x86 - -*gentoo-sources-2.6.12-r9 (16 Aug 2005) - - 16 Aug 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.12-r9.ebuild: - Update to Linux 2.6.12.5, which contains some security fixes. - -*gentoo-sources-2.6.12-r8 (09 Aug 2005) - - 09 Aug 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.12-r8.ebuild: - netfilter module loading (modalloc) fix. Fix netfilter locking mechanism. - Fix Cardbus on AMD64 laptops. skge tree update. - -*gentoo-sources-2.6.12-r7 (30 Jul 2005) - - 30 Jul 2005; Daniel Drake <dsd@gentoo.org> - -gentoo-sources-2.6.10-r6.ebuild, +gentoo-sources-2.6.12-r7.ebuild: - Support network on iMac G5 - Support Promise TX4200 SATA - Fix touchpad on Alienware sentia - Fix matroxfb vs fbsplash conflict - Fix bringing up of VLANs - Fix gconfig crash - Fix powernow oops on dual-core athlon - Fix possible bio-clone corruption - Fix qla2xxx failure handling - Fix network skb signedness problem - Fix elf-related memory leak on AMD64 - Fix possible overflow in IPSEC policy code - Fix possible corruption in memory NAT - Fix possible deadlock in ipv6 - Fix crash on conntrac unload - - 24 Jul 2005; <plasmaroo@gentoo.org> gentoo-sources-2.6.12-r6.ebuild: - Stable on IA64. - -*gentoo-sources-2.4.31-r1 (20 Jul 2005) - - 20 Jul 2005; <plasmaroo@gentoo.org> +gentoo-sources-2.4.31-r1.ebuild: - Bump to 2.4.31. - - 20 Jul 2005; Herbie Hopkins <herbs@gentoo.org> - gentoo-sources-2.6.12-r6.ebuild: - Stable on amd64 wrt bug #99274. - - 19 Jul 2005; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.12-r6.ebuild: - Stable on ppc64 (bug #99274) - - 17 Jul 2005; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.12-r6.ebuild: - Stable on x86 - - 16 Jul 2005; Joseph Jezak <josejx@gentoo.org> - gentoo-sources-2.6.12-r6.ebuild: - Marked ppc stable. - -*gentoo-sources-2.6.12-r6 (16 Jul 2005) - - 16 Jul 2005; Daniel Drake <dsd@gentoo.org> - -gentoo-sources-2.6.11-r8.ebuild, -gentoo-sources-2.6.12-r5.ebuild, - +gentoo-sources-2.6.12-r6.ebuild: - Linux 2.6.12.3. Add irqpoll boot workaround. Correct modpost on sparc. - - 13 Jul 2005; Aron Griffis <agriffis@gentoo.org> - gentoo-sources-2.6.12-r4.ebuild: - stable on ia64 - -*gentoo-sources-2.6.12-r5 (13 Jul 2005) - - 13 Jul 2005; Daniel Drake <dsd@gentoo.org> - -gentoo-sources-2.6.11-r11.ebuild, -gentoo-sources-2.6.12-r3.ebuild, - +gentoo-sources-2.6.12-r5.ebuild: - Fix buggy netfilter conntrack behaviour, where applications took ages to - load. Fix gameport probe order. Fix inconsistent NTP behaviour on PPC. - - 07 Jul 2005; Jeremy Huddleston <eradicator@gentoo.org> - gentoo-sources-2.6.12-r4.ebuild: - Stable amd64 ~sparc. - - 06 Jul 2005; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.12-r4.ebuild: - Stable on x86. Remember to upgrade to udev-058, and, if you use fbsplash, - splashutils-1.1.9.6-r1 - - 06 Jul 2005; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.12-r4.ebuild: - Switch to gentoo mirrors now that mirroring is fixed - - 05 Jul 2005; Aron Griffis <agriffis@gentoo.org> - gentoo-sources-2.6.12-r3.ebuild, gentoo-sources-2.6.12-r4.ebuild: - add ~ia64 - - 05 Jul 2005; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.12-r4.ebuild: - Stable on ppc64 - -*gentoo-sources-2.6.12-r4 (05 Jul 2005) - - 05 Jul 2005; Daniel Drake <dsd@gentoo.org> - -gentoo-sources-2.6.12-r2.ebuild, +gentoo-sources-2.6.12-r4.ebuild: - Add PCI IRQ fix, ppc64 multilib fix. Inotify returns, as the unmount bug is - fixed. - - 05 Jul 2005; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.12-r3.ebuild: - Stable on ppc64 - -*gentoo-sources-2.6.12-r3 (01 Jul 2005) - - 01 Jul 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.12-r3.ebuild: - Update to Linux 2.6.12.2. Add IT8212 storage driver. Megaraid driver update. - Allow both megaraid drivers to be built. Remove inotify temporarily due to - bug 97219. - - 28 Jun 2005; Daniel Drake <dsd@gentoo.org> - -gentoo-sources-2.6.1-r2.ebuild, -gentoo-sources-2.6.7-r19.ebuild, - -gentoo-sources-2.6.10-r7.ebuild, -gentoo-sources-2.6.12.ebuild, - -gentoo-sources-2.6.12-r1.ebuild: - Remove old versions - -*gentoo-sources-2.6.12-r2 (28 Jun 2005) - - 28 Jun 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.12-r2.ebuild: - Support >2TB capacity in libata. Network support for USR 997902, Planex - FNW-3602-TX, Elecom (Laneed) LD-USBL/TX, forcedeth MCP51/55. ATA/SATA - support for nvidia MCP51/55. skge tree update including bugfixes. - -*gentoo-sources-2.6.12-r1 (23 Jun 2005) - - 23 Jun 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.12-r1.ebuild: - SATA bridge lockup fix. Add support for BCM5785. Add support for pdc20619. - Remove support for libata PDC2027x as it is present as an IDE driver. Add - ALSA ice1712 SN25P support. Speakup returns. PCI driver typo-fix. Critical - e1000 spinlock fix. Fix Fix remap_pte_range checking. Sync to Linux 2.6.12.1 - - 19 Jun 2005; Daniel Goller <morfic@gentoo.org> - gentoo-sources-2.6.12.ebuild: - Added ~ppc - - 19 Jun 2005; Mike Doty <kingtaco@gentoo.org> gentoo-sources-2.6.12.ebuild: - ~amd64 added, bug 96493 - - 19 Jun 2005; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.12.ebuild: - added ~ppc64 - -*gentoo-sources-2.6.12 (19 Jun 2005) - - 19 Jun 2005; Daniel Drake <dsd@gentoo.org> - -gentoo-sources-2.6.11-r7.ebuild, -gentoo-sources-2.6.11-r9.ebuild, - +gentoo-sources-2.6.12.ebuild: - Initial 2.6.12 release. Features inotify 0.23-12 and fbsplash 0.9.2-r3. Be - aware that you need udev-058 or newer, and splashutils-1.1.9.6 or newer - (only if you use fbsplash) to avoid potential problems. Speakup is missing - from this release but will return soon. - - 14 Jun 2005; Marcus D. Hanwell <cryos@gentoo.org> - gentoo-sources-2.6.11-r11.ebuild: - Stable on amd64. - - 14 Jun 2005; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.11-r11.ebuild: - Stable on x86 - -*gentoo-sources-2.6.11-r11 (12 Jun 2005) - - 12 Jun 2005; Daniel Drake <dsd@gentoo.org> - -gentoo-sources-2.6.11-r10.ebuild, +gentoo-sources-2.6.11-r11.ebuild: - Update to Linux 2.6.11.12 and add a keyboard resume fix - -*gentoo-sources-2.6.11-r10 (04 Jun 2005) - - 04 Jun 2005; Daniel Drake <dsd@gentoo.org> - -files/gentoo-sources-2.4.CAN-2004-0497.patch, - -files/gentoo-sources-2.4.brk-locked.patch, - +gentoo-sources-2.6.11-r10.ebuild: - Update to Linux 2.6.11.11, fix compilation with new binutils, fix - disappearing symbol on framebuffer scrollback - -*gentoo-sources-2.4.28-r9 (20 May 2005) - - 20 May 2005; <plasmaroo@gentoo.org> -gentoo-sources-2.4.28-r8.ebuild, - +gentoo-sources-2.4.28-r9.ebuild, +files/gentoo-sources-2.4.81195.patch, - +files/gentoo-sources-2.4.81295.patch, - +files/gentoo-sources-2.4.82201.patch: - Security fixes - #81195, #81295, #82201. - - 20 May 2005; <plasmaroo@gentoo.org> -gentoo-sources-2.4.25-r17.ebuild, - -files/gentoo-sources-2.4.AF_UNIX.patch, - -files/gentoo-sources-2.4.CAN-2004-0109.patch, - -files/gentoo-sources-2.4.CAN-2004-0133.patch, - -files/gentoo-sources-2.4.CAN-2004-0177.patch, - -files/gentoo-sources-2.4.CAN-2004-0178.patch, - -files/gentoo-sources-2.4.CAN-2004-0181.patch, - -files/gentoo-sources-2.4.CAN-2004-0394.patch, - -files/gentoo-sources-2.4.CAN-2004-0427.patch, - -files/gentoo-sources-2.4.CAN-2004-0495.patch, - -files/gentoo-sources-2.4.CAN-2004-0535.patch, - -files/gentoo-sources-2.4.CAN-2004-0685.patch, - -files/gentoo-sources-2.4.FPULockup-53804.patch, - -files/gentoo-sources-2.4.XDRWrapFix.patch, - -files/gentoo-sources-2.4.binfmt_elf.patch, - -files/gentoo-sources-2.4.smbfs.patch: - Remove 2.4.25. - - 18 May 2005; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.11-r9.ebuild: - Stable on x86 for security stuff - - 17 May 2005; Daniel Drake <dsd@gentoo.org> ChangeLog, Manifest: - Update to Linux 2.6.11.9 and 2.6.11.10, and try a speakup fix. - - 12 May 2005; Aron Griffis <agriffis@gentoo.org> - gentoo-sources-2.6.11-r8.ebuild: - Mark 2.6.11-r8 stable on ia64 #87913 - - 11 May 2005; Markus Rothe <corsair@gentoo.org> - gentoo-sources-2.6.11-r8.ebuild: - Stable on ppc64; bug #87913 - - 10 May 2005; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.11-r8.ebuild: - 2.6.11-r8 stable on x86 - -*gentoo-sources-2.6.11-r8 (09 May 2005) - - 09 May 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.11-r8.ebuild: - Fix potential AIO DoS. Fix sparc64 SMP. Fix Invalid MAC on 3x59x network. - Fix LBA48 DMA. Add support for VIA VT6410 IDE. Revert broken SCSI TAPE - security fix. - - 03 May 2005; Jeremy Huddleston <eradicator@gentoo.org> - gentoo-sources-2.6.11-r7.ebuild: - Stable amd64 and ~sparc for security fixes. - - 30 Apr 2005; Daniel Drake <dsd@gentoo.org> - -files/gentoo-sources-2.4.20.78362.patch, - -files/gentoo-sources-2.4.20-CAN-2004-0685.patch, - -files/gentoo-sources-2.4.CAN-2004-0001.patch, - -files/gentoo-sources-2.4.20-CAN-2004-1056.patch, - -files/gentoo-sources-2.4.20-PaX-84167.patch, - -files/gentoo-sources-2.4.20-cs46xx-gcc33.patch, - -files/gentoo-sources-2.4.20-devfs-snd-fix.patch, - -files/gentoo-sources-2.4.20-fix-proc-mm.patch, - -files/gentoo-sources-2.4.20-gcc33.patch, - -files/gentoo-sources-2.4.20-grsec-datasize_fix.patch, - -files/gentoo-sources-2.4.20-grsec-disabled.patch, - -files/gentoo-sources-2.4.20-ipt-realm.patch, - -files/gentoo-sources-2.4.20-ipt-route.patch, - -files/gentoo-sources-2.4.20-mdcount.patch, - -files/gentoo-sources-2.4.20-munmap.patch, - -files/gentoo-sources-2.4.20-rtc_fix.patch, - -files/gentoo-sources-2.4.20-sched-interrupt.patch, - -files/gentoo-sources-2.4.20-smbfs.patch, - -files/gentoo-sources-2.4.CAN-2004-0010.patch, - -files/gentoo-sources-2.4.22-CAN-2004-0075.patch, - -files/gentoo-sources-2.4.I2C_Limits.patch, - -files/gentoo-sources-2.4.22-CAN-2004-1016.patch, - -files/gentoo-sources-2.4.22-kmsgdump.patch, - -files/gentoo-sources-2.4.22-rtc_fix.patch, - -files/gentoo-sources-2.4.22-vma.patch, - -files/gentoo-sources-2.4.CAN-2003-0643.patch, - -files/gentoo-sources-2.4.26-OpenSWAN-CompileFix.patch, - -files/gentoo-sources-2.4.CAN-2003-0985.patch, - -files/gentoo-sources-2.4.munmap.patch, -files/do_brk_fix.patch, - -files/security.patch1, -files/security.patch2, -files/security.patch3, - -files/security.patch4, -gentoo-sources-2.4.20-r33.ebuild: - Remove 2.4.20 and cleanout files/ - -*gentoo-sources-2.6.11-r7 (30 Apr 2005) - - 30 Apr 2005; Daniel Drake <dsd@gentoo.org> - -gentoo-sources-2.6.8-r3.ebuild, +gentoo-sources-2.6.11-r7.ebuild: - Update to Linux 2.6.11.8. Fix security hole in ROSE networking. Fix SCSI - TAPE access permissions. Fix generation of kernel manpages. Fix dead - keyboard on USB headset unplug. Update to inotify 0.22-3 - - 25 Apr 2005; Aron Griffis <agriffis@gentoo.org> - gentoo-sources-2.6.11-r6.ebuild: - stable on ia64 - - 13 Apr 2005; Daniel Drake <dsd@gentoo.org> - -gentoo-sources-2.6.10-r8.ebuild, -gentoo-sources-2.6.11-r3.ebuild, - -gentoo-sources-2.6.11-r4.ebuild, -gentoo-sources-2.6.11-r5.ebuild, - gentoo-sources-2.6.11-r6.ebuild: - 2.6.11-r6 stable on x86, remove old versions - - 07 Apr 2005; Tom Gall <tgall@gentoo.org> - gentoo-sources-2.6.11-r6.ebuild: - marked stable on ppc64, fixes in, already well tested on a wide range of hardware - -*gentoo-sources-2.6.11-r6 (07 Apr 2005) - - 07 Apr 2005; Jeremy Huddleston <eradicator@gentoo.org> - +gentoo-sources-2.6.11-r6.ebuild: - Fixed the sparc ffb.h patch to apply correctly. Removed the dm patches as - they caused oopses under certain circumstances. Fix p630 LPAR support on - ppc64. Fix deadlocks in rwsem code. Fix congestion in TCP BIC algorithm. - Fixes a race in the ext3 journal code. Fix matroxfb endianness issues for - ppc64. Fix oops when mismatching alsa-lib and alsa driver versions. Fix - hardlink count in /proc/<pid> directories. Fix hardlink count in - /proc/<pid>/task directories. Bump inotify to version 0.22-2. Stable amd64 - for security fixes. - - 02 Apr 2005; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.11-r5.ebuild: - Stable on x86. Please upgrade for security fixes. - -*gentoo-sources-2.6.11-r5 (01 Apr 2005) - - 01 Apr 2005; Daniel Drake <dsd@gentoo.org> - -gentoo-sources-2.6.9-r14.ebuild, -gentoo-sources-2.6.11.ebuild, - -gentoo-sources-2.6.11-r1.ebuild, -gentoo-sources-2.6.11-r2.ebuild, - +gentoo-sources-2.6.11-r5.ebuild: - Update to 2.6.11.5 and 2.6.11.6. Added sparc patches for serial and fb. - Update skge driver to 0.6. Update inotify to 0.21-4. - - 30 Mar 2005; Marcus D. Hanwell <cryos@gentoo.org> - gentoo-sources-2.6.11-r3.ebuild: - Marked stable on amd64. - -*gentoo-sources-2.6.10-r8 (19 Mar 2005) - - 19 Mar 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.10-r8.ebuild: - Backporting lots of security fixes, for PPC. - - 17 Mar 2005; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.11-r4.ebuild: - Stable on x86, testing on sparc - -*gentoo-sources-2.6.11-r4 (16 Mar 2005) - - 16 Mar 2005; Daniel Drake <dsd@gentoo.org> - +gentoo-sources-2.6.11-r4.ebuild: - Sync to Linux 2.6.11.4. Fix silent speaker on 4.1 ALSA surround. Fix ALPS - touchpad tapping. Deprecate sk98lin. - - 16 Mar 2005; Daniel Drake <dsd@gentoo.org> - gentoo-sources-2.6.11-r3.ebuild: - Update SRC_URI - - 13 Mar 2005; <plasmaroo@gentoo.org> gentoo-sources-2.4.28-r8.ebuild: - Fix patch ordering. - -*gentoo-sources-2.6.11-r3 (09 Mar 2005) - - 09 Mar 2005; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.11-r3.ebuild: - Update to Linux 2.6.11.2 - fixes important security problem. Also upgraded to - inotify 0.20 - -*gentoo-sources-2.6.7-r19 (09 Mar 2005) - - 09 Mar 2005; Jeremy Huddleston <eradicator@gentoo.org> - +gentoo-sources-2.6.7-r19.ebuild: - Readding last 2.6.7 kernel for some sparc users. - -*gentoo-sources-2.4.20-r33 (07 Mar 2005) - - 07 Mar 2005; <plasmaroo@gentoo.org> -gentoo-sources-2.4.20-r32.ebuild, - +gentoo-sources-2.4.20-r33.ebuild, -gentoo-sources-2.4.25-r16.ebuild, - +gentoo-sources-2.4.25-r17.ebuild, -gentoo-sources-2.4.28-r7.ebuild, - +gentoo-sources-2.4.28-r8.ebuild, - +files/gentoo-sources-2.4.20-PaX-84167.patch, - +files/gentoo-sources-2.4.PaX-84167.patch: - Security bump; fix #84167. - - 04 Mar 2005; Michael Hanselmann <hansmi@gentoo.org> - gentoo-sources-2.6.11-r2.ebuild: - Added to ~ppc. - -*gentoo-sources-2.6.11-r2 (04 Mar 2005) - - 04 Mar 2005; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.11-r2.ebuild: - Update to Linux 2.6.11.1 which contains an important Dell keyboard fix. Also - added PPC32 compile fixes and a fix for an oops. - -*gentoo-sources-2.6.11-r1 (03 Mar 2005) - - 03 Mar 2005; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.11-r1.ebuild: - Readding speakup, dm-bbr, SPARC kconfig rework. Adding skge driver. Updating - promise storage patches. - - 03 Mar 2005; Markus Rothe <corsair@gentoo.org> gentoo-sources-2.6.11.ebuild: - Added ~ppc64 to KEYWORDS - - 02 Mar 2005; Daniel Drake <dsd@gentoo.org> gentoo-sources-2.6.11.ebuild: - Marked testing on amd64 - -*gentoo-sources-2.6.11 (02 Mar 2005) - - 02 Mar 2005; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.11.ebuild: - Initial 2.6.11 release. This release does not include speakup or - dm-bbr/multipath. They will return once we get them to work. New versions of - fbsplash and inotify are included. - - 24 Feb 2005; Aron Griffis <agriffis@gentoo.org> - gentoo-sources-2.6.10-r7.ebuild: - add ~ia64 - - 19 Feb 2005; <plasmaroo@gentoo.org> gentoo-sources-2.4.28-r7.ebuild: - Add missing #77181 patch to UNIPATCH_LIST. - -*gentoo-sources-2.4.28-r7 (18 Feb 2005) - - 18 Feb 2005; <plasmaroo@gentoo.org> -gentoo-sources-2.4.28-r6.ebuild, - +gentoo-sources-2.4.28-r7.ebuild, files/gentoo-sources-2.4.81106.patch: - Fix #81106 patch for 2.4; bug #82479. - -*gentoo-sources-2.4.20-r32 (17 Feb 2005) - - 17 Feb 2005; <plasmaroo@gentoo.org> -gentoo-sources-2.4.20-r31.ebuild, - +gentoo-sources-2.4.20-r32.ebuild, -gentoo-sources-2.4.25-r15.ebuild, - +gentoo-sources-2.4.25-r16.ebuild, -gentoo-sources-2.4.26-r15.ebuild, - -gentoo-sources-2.4.28-r5.ebuild, +gentoo-sources-2.4.28-r6.ebuild, - +files/gentoo-sources-2.4.20.78362.patch, - +files/gentoo-sources-2.4.28.arpFix.patch, - +files/gentoo-sources-2.4.28.77181.patch, - +files/gentoo-sources-2.4.77666.patch, - +files/gentoo-sources-2.4.78362.patch, - +files/gentoo-sources-2.4.78363.patch, - +files/gentoo-sources-2.4.81106.patch: - Security fixes: #77666, #78362, #78363, #81106. Fix #78945 and #77181 for - 2.4.28. - -*gentoo-sources-2.6.10-r7 (05 Feb 2005) - - 05 Feb 2005; Daniel Drake <dsd@gentoo.org> -gentoo-sources-2.6.10-r1.ebuild, - -gentoo-sources-2.6.10-r2.ebuild, gentoo-sources-2.6.10-r6.ebuild, - +gentoo-sources-2.6.10-r7.ebuild: - New fbsplash version. Fixes for cd/dvd writing, amd64 device suspend, UML - stack corruption, seagate sata_sil blacklist, aacraid, gdth, ALSA VX driver - memory corruption, clock running too fast during ACPI sleep. Added patch for - configurable root mount delay. Removed bt8xx patch as it doesn't work. - - 22 Jan 2005; Daniel Drake <dsd@gentoo.org> -gentoo-sources-2.6.10-r4.ebuild, - gentoo-sources-2.6.10-r6.ebuild: - Sync to gentoo-dev-sources - - 19 Jan 2005; Daniel Drake <dsd@gentoo.org> -gentoo-sources-2.6.10-r5.ebuild, - gentoo-sources-2.6.10-r6.ebuild: - Stable on x86 - -*gentoo-sources-2.6.10-r6 (19 Jan 2005) - - 19 Jan 2005; Daniel Drake <dsd@gentoo.org> +gentoo-sources-2.6.10-r6.ebuild: - Add SCSI/RAID corruption fix, NFS super-io security fix, NFSACL sunrpc - security fix. - - 17 Jan 2005; Daniel Drake <dsd@gentoo.org> gentoo-sources-2.6.10-r5.ebuild: - Stable on x86 - -*gentoo-sources-2.6.10-r5 (16 Jan 2005) - - 16 Jan 2005; John Mylchreest <johnm@gentoo.org> - +gentoo-sources-2.6.10-r5.ebuild: - Vesafb-tng and fbsplash updates which should fix a number of bugs. Also: Sidewinder - debug message fix, new smbfs DoS fix (solves bug 72968), vmscan writeback (OOM) - fix, ACPI video slab corruption fix, iptables ECN corruption fix. Security: new rlimit - memlock fix, SMP stack resize fix, uselib fix update. Hardware support: Readd support - for cx24110 DVB, and add storage drivers for: Promise PATA PDC2027x, Promise PATA - PDC2037x, ULi5281 SATA, VIA VT6421 SATA, ATI IXP300/IXP400 SATA. - -*gentoo-sources-2.6.9-r13 (11 Jan 2005) - - 11 Jan 2005; John Mylchreest <johnm@gentoo.org> - +gentoo-sources-2.6.1-r2.ebuild, +gentoo-sources-2.6.10-r1.ebuild, - +gentoo-sources-2.6.10-r2.ebuild, +gentoo-sources-2.6.10-r4.ebuild, - +gentoo-sources-2.6.8-r3.ebuild, +gentoo-sources-2.6.9-r12.ebuild, - +gentoo-sources-2.6.9-r13.ebuild, +gentoo-sources-2.6.9-r14.ebuild, - +gentoo-sources-2.6.9-r9.ebuild: - The big amalgamation of 2.6->2.4. Oh, and before I forget, check out - ${FILESDIR}/Changelog-2.4.bz2 for the old changelog - -*gentoo-sources-2.4.28-r5 (08 Jan 2005) - - 08 Jan 2005; <plasmaroo@gentoo.org> -gentoo-sources-2.4.20-r30.ebuild, - +gentoo-sources-2.4.20-r31.ebuild, -gentoo-sources-2.4.22-r21.ebuild, - -gentoo-sources-2.4.25-r14.ebuild, +gentoo-sources-2.4.25-r15.ebuild, - -gentoo-sources-2.4.26-r14.ebuild, +gentoo-sources-2.4.26-r15.ebuild, - -gentoo-sources-2.4.28-r4.ebuild, +gentoo-sources-2.4.28-r5.ebuild, - +files/gentoo-sources-2.4.28.brk-locked.patch, - +files/gentoo-sources-2.4.77094.patch, - +files/gentoo-sources-2.4.brk-locked.patch: - Security bump; fixes bugs #77025 and #77094. - - 07 Jan 2005; <plasmaroo@gentoo.org> -gentoo-sources-2.4.27-r6.ebuild, - gentoo-sources-2.4.28-r4.ebuild: - Marking 2.4.28-r4 stable on x86. - -*gentoo-sources-2.4.28-r4 (01 Jan 2005) - - 01 Jan 2005; <plasmaroo@gentoo.org> -gentoo-sources-2.4.28-r3.ebuild, - +gentoo-sources-2.4.28-r4.ebuild: - Version bump. Fixes bugs #71715 and #71837. - -*gentoo-sources-2.4.22-r21 (24 Dec 2004) - - 24 Dec 2004; <plasmaroo@gentoo.org> -gentoo-sources-2.4.20-r29.ebuild, - +gentoo-sources-2.4.20-r30.ebuild, -gentoo-sources-2.4.22-r20.ebuild, - +gentoo-sources-2.4.22-r21.ebuild, -gentoo-sources-2.4.25-r13.ebuild, - +gentoo-sources-2.4.25-r14.ebuild, -gentoo-sources-2.4.26-r13.ebuild, - +gentoo-sources-2.4.26-r14.ebuild, -gentoo-sources-2.4.27-r5.ebuild, - +gentoo-sources-2.4.27-r6.ebuild, -gentoo-sources-2.4.28-r2.ebuild, - +gentoo-sources-2.4.28-r3.ebuild, - +files/gentoo-sources-2.4.20-CAN-2004-1056.patch, - +files/gentoo-sources-2.4.22-CAN-2004-1016.patch, - +files/gentoo-sources-2.4.22-vma.patch, - +files/gentoo-sources-2.4.CAN-2004-1016.patch, - +files/gentoo-sources-2.4.CAN-2004-1056.patch, - +files/gentoo-sources-2.4.CAN-2004-1137.patch, - +files/gentoo-sources-2.4.vma.patch: - Security bump; bugs #72452, #74384, #74392, #74464. - -*gentoo-sources-2.4.20-r29 (27 Nov 2004) - - 27 Nov 2004; <plasmaroo@gentoo.org> -gentoo-sources-2.4.20-r28.ebuild, - +gentoo-sources-2.4.20-r29.ebuild, -gentoo-sources-2.4.22-r19.ebuild, - +gentoo-sources-2.4.22-r20.ebuild, -gentoo-sources-2.4.25-r12.ebuild, - +gentoo-sources-2.4.25-r13.ebuild, -gentoo-sources-2.4.26-r12.ebuild, - +gentoo-sources-2.4.26-r13.ebuild, -gentoo-sources-2.4.27-r4.ebuild, - +gentoo-sources-2.4.27-r5.ebuild, -gentoo-sources-2.4.28-r1.ebuild, - +gentoo-sources-2.4.28-r2.ebuild, +files/gentoo-sources-2.4.AF_UNIX.patch, - +files/gentoo-sources-2.4.binfmt_a.out.patch: - Version bump for the AF_UNIX and a.out security vulnerabilities; bugs #72452 - and #72317. - -*gentoo-sources-2.4.26-r12 (20 Nov 2004) - - 20 Nov 2004; <plasmaroo@gentoo.org> -gentoo-sources-2.4.20-r27.ebuild, - +gentoo-sources-2.4.20-r28.ebuild, -gentoo-sources-2.4.22-r18.ebuild, - +gentoo-sources-2.4.22-r19.ebuild, -gentoo-sources-2.4.25-r11.ebuild, - +gentoo-sources-2.4.25-r12.ebuild, -gentoo-sources-2.4.26-r11.ebuild, - +gentoo-sources-2.4.26-r12.ebuild, -gentoo-sources-2.4.27-r3.ebuild, - +gentoo-sources-2.4.27-r4.ebuild, +files/gentoo-sources-2.4.20-smbfs.patch, - files/gentoo-sources-2.4.binfmt_elf.patch, - +files/gentoo-sources-2.4.smbfs.patch: - Version bump; updates binfmt_elf patch (bug #70681) and adds the smbfs - security patch (bug #65877). - -*gentoo-sources-2.4.28-r1 (17 Nov 2004) - - 17 Nov 2004; <plasmaroo@gentoo.org> +gentoo-sources-2.4.28-r1.ebuild, - -gentoo-sources-2.4.28_rc3-r1.ebuild: - Version bump. - -*gentoo-sources-2.4.28_rc3-r1 (13 Nov 2004) - - 13 Nov 2004; <plasmaroo@gentoo.org> +gentoo-sources-2.4.28_rc3-r1.ebuild: - Version bump, fixes GCC 3.4 issues - bug #64220. - -*gentoo-sources-2.4.22-r18 (12 Nov 2004) - - 12 Nov 2004; <plasmaroo@gentoo.org> -gentoo-sources-2.4.20-r26.ebuild, - +gentoo-sources-2.4.20-r27.ebuild, -gentoo-sources-2.4.22-r17.ebuild, - +gentoo-sources-2.4.22-r18.ebuild, -gentoo-sources-2.4.25-r10.ebuild, - +gentoo-sources-2.4.25-r11.ebuild, -gentoo-sources-2.4.26-r10.ebuild, - +gentoo-sources-2.4.26-r11.ebuild, -gentoo-sources-2.4.27-r2.ebuild, - +gentoo-sources-2.4.27-r3.ebuild, - +files/gentoo-sources-2.4.binfmt_elf.patch: - Version bump for the binfmt_elf security vulnerability, bug #70681. - -*gentoo-sources-2.4.26-r10 (09 Nov 2004) - - 09 Nov 2004; <plasmaroo@gentoo.org> -gentoo-sources-2.4.19-r22.ebuild, - -gentoo-sources-2.4.20-r25.ebuild, +gentoo-sources-2.4.20-r26.ebuild, - -gentoo-sources-2.4.22-r16.ebuild, +gentoo-sources-2.4.22-r17.ebuild, - +gentoo-sources-2.4.25-r10.ebuild, -gentoo-sources-2.4.25-r9.ebuild, - +gentoo-sources-2.4.26-r10.ebuild, -gentoo-sources-2.4.26-r9.ebuild, - -gentoo-sources-2.4.27-r1.ebuild, +gentoo-sources-2.4.27-r2.ebuild, - -files/gentoo-sources-2.4.19-CAN-2004-0181.patch, - -files/gentoo-sources-2.4.19-gcc33.patch, - -files/gentoo-sources-2.4.19-munmap.patch, - -files/gentoo-sources-2.4.19-rtc_fix.patch, - +files/gentoo-sources-2.4.XDRWrapFix.patch, -files/i810_drm.patch, - -files/lcall-DoS.patch, -files/security.patch5: - Adding a fix for the 2.4 kNFSd security vulnerability, bug #62524. - Also fixed CAN-2004-0814, bug #68421. Obsoleting 2.4.19. - - 03 Sep 2004; Pieter Van den Abeele <pvdabeel@gentoo.org> - gentoo-sources-2.4.26-r9.ebuild, gentoo-sources-2.4.27-r1.ebuild: - Masked gentoo-sources-2.4.27-r1.ebuild broken for ppc - - 03 Sep 2004; Pieter Van den Abeele <pvdabeel@gentoo.org> - gentoo-sources-2.4.26-r9.ebuild: - Masked gentoo-sources-2.4.26-r9.ebuild broken for ppc - - 25 Aug 2004; <plasmaroo@gentoo.org> gentoo-sources-2.4.27-r1.ebuild: - Added the /proc/cmdline patch to 2.4.27 as well since the issue also - applies to it. - -*gentoo-sources-2.4.27-r1 (24 Aug 2004) - - 24 Aug 2004; <plasmaroo@gentoo.org> +gentoo-sources-2.4.27-r1.ebuild: - Version bump. - -*gentoo-sources-2.4.20-r25 (14 Aug 2004) - - 14 Aug 2004; <plasmaroo@gentoo.org> -gentoo-sources-2.4.19-r21.ebuild, - +gentoo-sources-2.4.19-r22.ebuild, -gentoo-sources-2.4.20-r24.ebuild, - +gentoo-sources-2.4.20-r25.ebuild, -gentoo-sources-2.4.22-r15.ebuild, - +gentoo-sources-2.4.22-r16.ebuild, -gentoo-sources-2.4.25-r8.ebuild, - +gentoo-sources-2.4.25-r9.ebuild, -gentoo-sources-2.4.26-r8.ebuild, - +gentoo-sources-2.4.26-r9.ebuild, - +files/gentoo-sources-2.4.cmdlineLeak.patch: - Version bump for the /proc/cmdline leak vulnerability; bug #59905. - -*gentoo-sources-2.4.25-r8 (08 Aug 2004) - - 08 Aug 2004; <plasmaroo@gentoo.org> -gentoo-sources-2.4.19-r20.ebuild, - +gentoo-sources-2.4.19-r21.ebuild, -gentoo-sources-2.4.20-r23.ebuild, - +gentoo-sources-2.4.20-r24.ebuild, -gentoo-sources-2.4.22-r14.ebuild, - +gentoo-sources-2.4.22-r15.ebuild, -gentoo-sources-2.4.25-r7.ebuild, - +gentoo-sources-2.4.25-r8.ebuild, -gentoo-sources-2.4.26-r7.ebuild, - +gentoo-sources-2.4.26-r8.ebuild, - +files/gentoo-sources-2.4.20-CAN-2004-0685.patch, - +files/gentoo-sources-2.4.CAN-2004-0685.patch: - Version bump for CAN-2004-0685, bug #59769. - - 05 Aug 2004; <plasmaroo@gentoo.org> gentoo-sources-2.4.19-r20.ebuild, - +files/security.patch5: - Compile and ptrace fix for 2.4.19; bug #59500. - -*gentoo-sources-2.4.25-r7 (04 Aug 2004) - - 04 Aug 2004; <plasmaroo@gentoo.org> -gentoo-sources-2.4.19-r19.ebuild, - +gentoo-sources-2.4.19-r20.ebuild, -gentoo-sources-2.4.20-r22.ebuild, - +gentoo-sources-2.4.20-r23.ebuild, -gentoo-sources-2.4.22-r13.ebuild, - +gentoo-sources-2.4.22-r14.ebuild, -gentoo-sources-2.4.25-r6.ebuild, - +gentoo-sources-2.4.25-r7.ebuild, -gentoo-sources-2.4.26-r5.ebuild, - -gentoo-sources-2.4.26-r6.ebuild, +gentoo-sources-2.4.26-r7.ebuild: - Added a patch for the CAN-2004-0415 vulnerability, bug #59378. - -*gentoo-sources-2.4.20-r22 (02 Aug 2004) - - 02 Aug 2004; <plasmaroo@gentoo.org> -gentoo-sources-2.4.19-r18.ebuild, - +gentoo-sources-2.4.19-r19.ebuild, -gentoo-sources-2.4.20-r21.ebuild, - +gentoo-sources-2.4.20-r22.ebuild, - +files/gentoo-sources-2.4.CAN-2003-0643.patch: - 2.4.19 and 2.4.20 patched for CAN-2003-0643. - - 16 Jul 2004; Chris Gianelloni <wolf31o2@gentoo.org> - gentoo-sources-2.4.26-r6.ebuild: - Marked stable on x86. - - 13 Jul 2004; <plasmaroo@gentoo.org> gentoo-sources-2.4.26-r6.ebuild, - +files/gentoo-sources-2.4.26-OpenSWAN-CompileFix.patch: - Added a compile fix for OpenSWAN when debugging is turned off. Closes bug - #56822. - -*gentoo-sources-2.4.26-r6 (12 Jul 2004) - - 12 Jul 2004; <plasmaroo@gentoo.org> +gentoo-sources-2.4.26-r6.ebuild: - Version bump - SquashFS support bumped to 2.0. - -*gentoo-sources-2.4.26-r4 (09 Jul 2004) -*gentoo-sources-2.4.22-r13 (09 Jul 2004) - - 09 Jul 2004; <plasmaroo@gentoo.org> -gentoo-sources-2.4.19-r17.ebuild, - +gentoo-sources-2.4.19-r18.ebuild, -gentoo-sources-2.4.20-r20.ebuild, - +gentoo-sources-2.4.20-r21.ebuild, -gentoo-sources-2.4.22-r12.ebuild, - +gentoo-sources-2.4.22-r13.ebuild, -gentoo-sources-2.4.25-r5.ebuild, - +gentoo-sources-2.4.25-r6.ebuild, -gentoo-sources-2.4.26-r3.ebuild, - -gentoo-sources-2.4.26-r4.ebuild, +gentoo-sources-2.4.26-r5.ebuild, - +files/gentoo-sources-2.4.CAN-2004-0497.patch: - Version bumps for kernel attribute vulnerabilities, bug #56479. - - 08 Jul 2004; <plasmaroo@gentoo.org> : - Version bump - FreeS/WAN is now replaced with OpenS/WAN. - - 25 Jun 2004; Chris Gianelloni <wolf31o2@gentoo.org> - gentoo-sources-2.4.26-r3.ebuild: - Marking stable on x86, per plasmaroo. - -*gentoo-sources-2.4.26-r3 (24 Jun 2004) - - 24 Jun 2004; <plasmaroo@gentoo.org> +gentoo-sources-2.4.19-r17.ebuild, - +gentoo-sources-2.4.20-r20.ebuild, +gentoo-sources-2.4.22-r12.ebuild, - +gentoo-sources-2.4.25-r5.ebuild, +gentoo-sources-2.4.26-r3.ebuild, - +files/gentoo-sources-2.4.19-gcc33.patch, - +files/gentoo-sources-2.4.CAN-2004-0495.patch, - +files/gentoo-sources-2.4.CAN-2004-0535.patch: - Security bumps for the CAN-2004-0495 and CAN-2004-0535 vulnerabilities. Also - closes bug #53983. Old versions removed. - - 23 Jun 2004; Aron Griffis <agriffis@gentoo.org> - gentoo-sources-2.4.19-r16.ebuild, gentoo-sources-2.4.20-r19.ebuild: - QA - fix use invocation - -*gentoo-sources-2.4.20-r19 (19 Jun 2004) - - 19 Jun 2004; <plasmaroo@gentoo.org> -gentoo-sources-2.4.19-r15.ebuild, - +gentoo-sources-2.4.19-r16.ebuild, -gentoo-sources-2.4.20-r18.ebuild, - +gentoo-sources-2.4.20-r19.ebuild, - +files/gentoo-sources-2.4.I2C_Limits.patch: - Added a patch to add in missing I2C sanity checks that were added upstream in - 2.4.21. - -*gentoo-sources-2.4.20-r18 (14 Jun 2004) - - 14 Jun 2004; <plasmaroo@gentoo.org> +gentoo-sources-2.4.19-r15.ebuild, - +gentoo-sources-2.4.20-r18.ebuild, +gentoo-sources-2.4.22-r11.ebuild, - +gentoo-sources-2.4.25-r4.ebuild, +gentoo-sources-2.4.26-r2.ebuild, - +files/gentoo-sources-2.4.FPULockup-53804.patch: - Added patches for the FPU-lockup issues; please see bug #58304 for details. - Old versions removed. - -*gentoo-sources-2.4.26-r1 (10 Jun 2004) - - 10 Jun 2004; <plasmaroo@gentoo.org> +gentoo-sources-2.4.26-r1.ebuild: - Version bump. - -*gentoo-sources-2.4.25-r3 (01 Jun 2004) - - 01 Jun 2004; <plasmaroo@gentoo.org> +gentoo-sources-2.4.19-r14.ebuild, - +gentoo-sources-2.4.20-r17.ebuild, +gentoo-sources-2.4.22-r10.ebuild, - +gentoo-sources-2.4.25-r3.ebuild, +files/gentoo-sources-2.4...patch: - Added patches for the CAN-2004-0075, CAN-2004-0133, CAN-2004-0181, - CAN-2004-0394, and CAN-2004-0427 vulnerabilities. Bug #47881. - - 31 May 2004; Pieter Van den Abeele <pvdabeel@gentoo.org> - gentoo-sources-2.4.25-r2.ebuild: - Masked gentoo-sources-2.4.25-r2.ebuild broken for ppc - - 27 Apr 2004; Aron Griffis <agriffis@gentoo.org> - gentoo-sources-2.4.19-r13.ebuild, gentoo-sources-2.4.20-r16.ebuild, - gentoo-sources-2.4.20-r7.ebuild, gentoo-sources-2.4.22-r3.ebuild: - Add inherit eutils. - -*gentoo-sources-2.4.25-r2 (17 Apr 2004) - - 17 Apr 2004; <plasmaroo@gentoo.org> - +files/gentoo-sources-2.4.CAN-2004-0010.patch, - +files/gentoo-sources-2.4.CAN-2004-0177.patch, - +files/gentoo-sources-2.4.CAN-2004-0178.patch, - +gentoo-sources-2.4.19-r13.ebuild, +gentoo-sources-2.4.20-r16.ebuild, - +gentoo-sources-2.4.22-r9.ebuild, +gentoo-sources-2.4.25-r2.ebuild: - Added patches for the CAN-2004-0010, CAN-2004-0177 and CAN-2004-0178 - vulnerabilities. Some older revisions were removed. - -*gentoo-sources-2.4.20-r14 (15 Apr 2004) - - 15 Apr 2004; <plasmaroo@gentoo.org> - +files/gentoo-sources-2.4.CAN-2004-0109.patch, - -gentoo-sources-2.4.19-r11.ebuild, +gentoo-sources-2.4.19-r12.ebuild, - -gentoo-sources-2.4.20-r14.ebuild, +gentoo-sources-2.4.20-r15.ebuild, - +gentoo-sources-2.4.22-r8.ebuild, +gentoo-sources-2.4.25-r1.ebuild: - Version bump for the CAN-2004-0109 issue; bug #47881. - -*gentoo-sources-2.4.26_pre6 (26 Mar 2004) - - 26 Mar 2004; Bob Johnson <livewire@gentoo.org> - gentoo-sources-2.4.26_pre6.ebuild: - Bumped ~x86 to pre6 - -*gentoo-sources-2.4.26_pre5 (20 Mar 2004) -*gentoo-sources-2.4.26_pre3 (20 Mar 2004) - - 20 Mar 2004; Bob Johnson <livewire@gentoo.org> - gentoo-sources-2.4.26_pre5.ebuild, gentoo-sources-2.4.26_pre3.ebuild, - gentoo-sources-2.4.25.ebuild: - Bumped ~x86 to pre5 - changed mis-named ebuilds -rc3 > -pre3 - marked 2.4.25 stable - -*gentoo-sources-2.4.25 (16 Mar 2004) - - 16 Mar 2004; John Mylchreest <johnm@gentoo.org> - gentoo-sources-2.4.25.ebuild, gentoo-sources-2.4.26_rc3.ebuild: - bumping to kernel-2 and most recent versions on behalf of LiveWire - -*gentoo-sources-2.4.22-r7 (18 Feb 2004) -*gentoo-sources-2.4.20-r13 (18 Feb 2004) - - 18 Feb 2004; <plasmaroo@gentoo.org> gentoo-sources-2.4.20-r13.ebuild, - gentoo-sources-2.4.22-r7.ebuild: - Added the patch for the mremap/munmap vulnerability. Bug #42024. - -*gentoo-sources-2.4.20-r12 (16 Feb 2004) -*gentoo-sources-2.4.22-r6 (16 Feb 2004) - - 16 Feb 2004; <plasmaroo@gentoo.org> gentoo-sources-2.4.20-r12.ebuild, - gentoo-sources-2.4.22-r6.ebuild: - Added the fix for the ptrace vulnerability for AMD64 platforms. No other - functional change is included, so these packages are masked as "~amd64" only. - -*gentoo-sources-2.4.20-r11 (08 Feb 2004) - - 08 Feb 2004; <plasmaroo@gentoo.org> gentoo-sources-2.4.20-r11.ebuild: - Version bump. Closes bugs #12721, #18628, #28571, #34545, - #35850, and #38301. - - 18 Jan 2004; Brian Jackson <iggy@gentoo.org> - gentoo-sources-2.4.22-r5.ebuild: - Bad patch on the mirrors should be fixed: removing nomirror. - - 15 Jan 2004; Brian Jackson <iggy@gentoo.org> - gentoo-sources-2.4.22-r5.ebuild: - Nomirroring since the one on the mirrors is bad. - -*gentoo-sources-2.4.22-r5 (14 Jan 2004) - - 14 Jan 2004; Brian Jackson <iggy@gentoo.org> - gentoo-sources-2.4.22-r5.ebuild: - 2.4.22-r5, should fix almost all bugs - - 09 Jan 2004; <plasmaroo@gentoo.org> gentoo-sources-2.4.22-r4.ebuild: - Fixed configuration problems; see bug #37668. - -*gentoo-sources-2.4.22-r4 (09 Jan 2004) - - 09 Jan 2004; Brian Jackson <iggy@gentoo.org> - gentoo-sources-2.4.20-r6.ebuild, gentoo-sources-2.4.20-r8.ebuild, - gentoo-sources-2.4.20-r9.ebuild, gentoo-sources-2.4.22-r1.ebuild, - gentoo-sources-2.4.22-r2.ebuild, gentoo-sources-2.4.22-r4.ebuild: - -r4 fixes a couple of bugs, some old stuff was cleaned up. - -*gentoo-sources-2.4.22-r3 (06 Jan 2004) -*gentoo-sources-2.4.20-r10 (06 Jan 2004) - - 06 Jan 2004; <plasmaroo@gentoo.org> gentoo-sources-2.4.22-r3.ebuild: - gentoo-sources-2.4.20-r10.ebuild, gentoo-sources-2.4.22-r2.ebuild, - files/gentoo-sources-2.4.20-hpt372.patch, - files/gentoo-sources-2.4.20-rtc_fix.patch, - files/gentoo-sources-2.4.22-rtc_fix.patch, - files/gentoo-sources-2.4.CAN-2003-0985.patch: - Version bump - addresses the security vulnerabilities in bugs #37292 and - #37317. 2.4.20-r10 also includes the patch for HPT372/HPT374 controllers - from bug #20986. - - 21 Dec 2003; Brian Jackson <iggy@gentoo.org> - gentoo-sources-2.4.22-r2.ebuild: Bumped to stable. - -*gentoo-sources-2.4.22-r2 (21 Dec 2003) - - 21 Dec 2003; Brian Jackson <iggy@gentoo.org> - gentoo-sources-2.4.22-r2.ebuild: - New version, fixes bug #35045, ACPI update, updated forcedeth, etc. - - 05 Dec 2003; <plasmaroo@gentoo.org> gentoo-sources-2.4.22-r1.ebuild, - files/gentoo-sources-2.4.22-kmsgdump.patch: - Added a fix to fix a "CONFIG_LOG_BUF_SHIFT" problem as - include/asm-i386/kmsgdump.h was not updated for some reason. Thanks to - Jeremy Huddleston <jemeryhu at cory.eecs.berkeley.edu> for the patch. - This closes bug #35123. - - 03 Dec 2003; Brian Jackson <iggy@gentoo.org> - gentoo-sources-2.4.20-r9.ebuild, files/do_brk_fix.patch: - Fixup do_brk() patch. - -*gentoo-sources-2.4.22-r1 (02 Dec 2003) - - 02 Dec 2003; Brian Jackson <iggy@gentoo.org> - gentoo-sources-2.4.20-r9.ebuild, gentoo-sources-2.4.22-r1.ebuild, - gentoo-sources-2.4.22.ebuild: - Version bump for the recent do_brk() vulnerability. - - 01 Dec 2003; Brian Jackson <iggy@gentoo.org> - gentoo-sources-2.4.19-r10.ebuild, gentoo-sources-2.4.20-r5.ebuild, - gentoo-sources-2.4.20-r6.ebuild, gentoo-sources-2.4.20-r7.ebuild, - gentoo-sources-2.4.20-r8.ebuild, gentoo-sources-2.4.22.ebuild: - Added a fix for the recent do_brk() vulnerability. - -*gentoo-sources-2.4.22 (01 Dec 2003) - - 01 Dec 2003; Brian Jackson <iggy@gentoo.org> gentoo-sources-2.4.22.ebuild: - added 2.4.22 version as ~x86, it's got one fix from the last - gentoo-test-sources - - 20 Nov 2003; Brandon Low <lostlogic@gentoo.org> - gentoo-sources-2.4.19-r10.ebuild, gentoo-sources-2.4.20-r5.ebuild, - gentoo-sources-2.4.20-r6.ebuild, gentoo-sources-2.4.20-r7.ebuild, - gentoo-sources-2.4.20-r8.ebuild: - Move version handling logic to after inherit kernel, or insert it where - necessary - - 17 Nov 2003; <plasmaroo@gentoo.org> gentoo-sources-2.4.20-r8.ebuild, - files/gentoo-sources-2.4.20-ipt-route.patch: Added the new ROUTE patch - required to build iptables-1.2.9 properly. - -*gentoo-sources-2.4.20-r8 (21 Oct 2003) - - 21 Oct 2003; <plasmaroo@gentoo.org> gentoo-sources-2.4.20-r8.ebuild, - files/gentoo-sources-2.4.20-grsec-datasize_fix.patch: - Version bump. This release is mainly a "catch-up" for those who did not get - the latest unbumped versions and also contains the grsecurity fix to fix - negative memory counts. Thanks to <bartron@gmx.net> for the patch, Bug #25991 - - 19 Oct 2003; <plasmaroo@gentoo.org> gentoo-sources-2.4.20-r7.ebuild, - files/gentoo-sources-2.4.20-ipt-realm.patch: - Added a patch to fix the ipt_realm.c bugs we have floating around... - - 11 Oct 2003; <plasmaroo@gentoo.org> gentoo-sources-2.4.20-r7.ebuild, - files/gentoo-sources-2.4.20-cs46xx-gcc33.patch: - Added CS46xx patch to fix the GCC 3.3 problems in the driver: Bug 29970 - - 11 Oct 2003; <plasmaroo@gentoo.org> gentoo-sources-2.4.20-r7.ebuild, - files/gentoo-sources-2.4.20-devfs-snd-fix.patch: - Added a devfs patch to fix some issues with multiple soundcards: Bug #30837. - - 02 Oct 2003; <plasmaroo@gentoo.org> gentoo-sources-2.4.20-r7.ebuild, - files/gentoo-sources-2.4.20-mdcount.patch: - Added Software RAID patch for fix unsynchronized reference counts: Bug #30124. - - 24 Sep 2003; <plasmaroo@gentoo.org> gentoo-sources-2.4.20-r7.ebuild, - files/gentoo-sources-2.4.20-sched-interrupt.patch: - Added scheduler fix which should solve some PCMCIA issues. - - 21 Sep 2003; <plasmaroo@gentoo.org> files/gentoo-sources-2.4.20-gcc33.patch: - Added ip_nat_core.c GCC3.3 fix [Bug 28561 et al.] - - 14 Sep 2003; <plasmaroo@gentoo.org> gentoo-sources-2.4.20-r7.ebuild, - files/gentoo-sources-2.4.20-grsec-disabled.patch: - Added a GRSEC patch to make sysctl work when GRSEC is disabled... - - 13 Sep 2003; <plasmaroo@gentoo.org> files/gentoo-sources-2.4.20-gcc33.patch: - Added more GCC3.3 fixes - -*gentoo-sources-2.4.20-r7 (11 Sep 2003) - - 11 Sep 2003; <plasmaroo@gentoo.org> gentoo-sources-2.4.20-r7.ebuild, - files/gentoo-sources-2.4.20-gcc33.patch: - Added GCC3.3 compatibility patch. - - 08 Sep 2003; Martin Holzer <mholzer@gentoo.org> - gentoo-sources-2.4.19-r10.ebuild, gentoo-sources-2.4.20-r5.ebuild, - gentoo-sources-2.4.20-r6.ebuild: - SRC now uses mirror://kernel - -*gentoo-sources-2.4.20-r6 (08 Aug 2003) - - 08 Aug 2003; Daniel Ahlberg <aliz@gentoo.org> gentoo-source-2.4.20-r6.ebuid : - Apply a bunch of security fixes. - -*gentoo-sources-2.4.20-r5 (10 May 2003) - - 10 May 2003; Jay Pfeifer <pfeifer@gentoo.org> gentoo-sources-2.4.20-r5.ebuild: - Package is currently marked stable (x86). - Changes: - * Added Barton SSE suport - * Minor documentation fixes - * Fixed USAGI issue - * Other things I am forgetting to mention :) - -*gentoo-sources-2.4.20-r4 (08 May 2003) - - 08 May 2003; Jay Pfeifer <pfeifer@gentoo.org> gentoo-sources-2.4.20-r4.ebuild: - Package is currently marked stable (x86). - Changes: - * Added a few updates for ck6 - * Updated SuperFreeS/WAN to 1,99,7rc2 - * Updated to patch-o-matic from 01May2003 lotsa new goodies - * Updated USAGI to 28Apr2003 snapshot - * Made USAGI installable by a USE flag 'USAGI' - - if you use USAGI, you *cannot* use {freeswan/patch-int/loop-jari} - - the ebuild will drop either/or depending on your use flags :) - * Updated adaptec 79xxx to 01May2003 - * Updated ntfs to 2.1.4a - * Updated grsecurity to 1.99g - * Added initial support for systrace v1.2 - * Updated bluetooth support fro MH to 2.4.20-MH7 - * Added kraxel patch which is v4l2 & other updates - see the docs - * Fixed broken gcc optimizations... the overoptimization was breaking things - * Added support for ipvs - * Added support for usbvision - * Added vesafb fix - * Added imq support & the ipv4 & ipv6 imq ipt patches - * Updated Wireless Extensions to WE-15 - * Updated evms2 stuff to version 2.0.1 - * Fixed another small grsec/rmap issue + added a grsec hardlink fix - * Added some jfs 1.1.2 fixes - * Added usb scanners update from 16Apr2003 - * Added some minor grsecurity fixes - * Other things I am forgetting to mention :) - -*gentoo-sources-2.4.20-r3 (15 Apr 2003) - - 15 Apr 2003; Jay Pfeifer <pfeifer@gentoo.org> gentoo-sources-2.4.20-r3.ebuild: - Package is currently marked unstable (~x86). - * Added latest ck (12Apr2003) - thank you Con Kolivas! - * Added support for either rmap(default) or aavm (your choice) - * Added support for evms 2.0 (user selects 1.2.1 or 2.0). evms 1.2.1 default. - * If you are thinking about using evms 2.0 - READ the DOCS!!! <-- Warning! - * Added support for nforce2 ide & audio... (thanks alron & alain) - * ext3 fixes - * jfs fixes - 1.1.1 + xattr & acl - * update ntfs to 2.1.2a - * grsecurity bumped to 1.9.9f (this contains the ptrace fix) - * SuperFreeS/WAN up to 1.9.6.1 - * updated to ea+acl+nfsacl 0.8.56 - * Readded missing ciphers from patch-int - * Removed safe serial driver from usbdnet - * Added bootsplash 3.0.7 - * Fixed a number of USAGI issues (but some still remain). - * Updated adaptec 79xx to 18Mar2003 version (thanks livewire) - * Added backported bluetooth support from MH - * Other things I am forgetting to mention - -*gentoo-sources-2.4.20-r2 (19 Mar 2003) - - 21 Mar 2003; Jay Pfeifer <pfeifer@gentoo.org> gentoo-sources-2.4.20-r2.ebuild: - * Added ebuild note of lack of xfs support (use xfs-sources for xfs) - - 19 Mar 2003; Jay Pfeifer <pfeifer@gentoo.org> gentoo-sources-2.4.20-r2.ebuild: - - * Added ptrace security fix. - * Process priorities are now obeyed. :) - * pom updated to 20030310 - * removed aavm - * removed ck4 O(1) sched, ll, preempt patch - * added rml preempt & ll - * update xattr+acl to xattr+acl+trusted 0.8.55 - * update usbdnet - * add dac960 root fix - * add sim710 compile fix - -*gentoo-sources-2.4.20-r1 (12 Jan 2003) - - 27 Feb 2003; Brandon Low <lostlogic@gentoo.org> gentoo-sources-2.4.20-r1.ebuild: - Move to stable - - Ebuild Changes - * Dropped the *3c509-fix - * Dropped the *tcp-window-tracking - * Drop gcc-3.1 patch if not on gcc3 - * Also make prettier output for the USE var controlled - patches - * Add a warning about maybe needing to rebuild iptables - - Features of this kernel: - * Based heavily on ck-sources-2.4.20-r2 (linux-2.4.20-ck2) - - From CK: - * O(1) Scheduler - * Low-latency scheduling - * Preempt - * Read-latency 2 - * Reverse mapping VM - * Supermount - * ACPI update - * Variable HZ (automatically tuned afaik) - - From elsewhere: - * 3.5G Address space - * xattr+acl support - * TIOCGDEV support - * Grsecurity-1.9.8-rc2 - * ACLs for JFS - * Optimizations for GCC3 compilation - * EVMS 1.2.1 - * Additional Tekram SCSI Support - * KT400 pci.ids thanks to viz - * NTFS-tng 2.10a - * Support for the ECC driver - * Video 4 Linux v2 API - * MPPE support - * i2c-2.7.0 - * Inode Monitor support - * Support for kernel config on /proc/config - * Updated support for aic7xxx SCSI cards - * Ext3 data=journal fix. - * Fix for 3c509 - * Synced with almost all of the iptables patch-o-matic base - * XFS optional useflag with a warning about JFS - xfs+quota-v2+kdb support many thanks to dragon - * Encrypted loopback support (loop-jari) - * CryptoAPI support from www.kerneli.org - * Super Free S/WAN - * Quick bugfixes - * Defconfig with some reasonable stuff for this kernel - on gentoo - * Gentoo fb-logos - - 17 Dec 2002; Brandon Low <lostlogic@gentoo.org>: - Make all kernel-sources SLOT="${KV}" - - 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords - - 07 Dec 2002; Brandon Low <lostlogic@gentoo.org> gentoo-sources-2.4.19-r10.ebuild gentoo-sources-2.4.19-r9.ebuild: - Add fix for i810_drm compilation, this should make people nice and - happy :). (as shown above this is for -r10 and -r9 - - 16 Nov 2002; Brandon Low <lostlogic@gentoo.org> gentoo-sources-2.4.19-r10.ebuild gentoo-sources-2.4.19-r9.ebuild: - Add fix for lcall-DoS from lkml. - -*gentoo-sources-2.4.19-r10 (06 Oct 2002) - - 06 Oct 2002; Brandon Low <lostlogic@gentoo.org> gentoo-sources-2.4.19-r10.ebuild: - - While testing this kerenl I ran into very bad crashing behavior with - the USE="acpi4linux" option enabled... just a warning. But for you - laptopers it is still there. - - Well I dug up about 3-4 hours of time and merged xfs into this kernel - so everyone who has been asking for it finally gets their way because - I hate being unpopular. I hope you all enjoy XFS, it is enabled by a - hidden useflag so set USE="xfs" to turn it on for this kernel. Please - let me know your results. Apparently with these patches enabled, JFS - causes corruption due to some strange interrraction. If you use JFS - and XFS use xfs-sources-2.4.19-r2 please. - - New in this release: - - Dropped ext3-htree due to corruption with current e2fsprogs - this may bite some of you who are already using it, but - hopefully it will be updated before you need to fsck your - partitions a lot. - - Update EVMS - - Update JFS - - Fix for grsecurity compilation - - Update patches.txt documentation and kernel.eclass (makes older - a little funky, but is more forward working) - - Fix processor type options to show gcc>31 rather than gcc31 - - Add futexes support - - Add imon support - - Optional XFS patch just set USE="xfs" - - Optional ACPI patch just set USE="acpi4linux" - - Redone ebuild setup now we have an eclass for these things - - Rename some patches to better names for use with KERNEL_EXCLUDE - - Add support for KERNEL_EXCLUDE - - Add and re-arrange VIA bugfixes - - Update grsecurity - - Switch to latest release IPSEC Free S/WAN - - Add usbdnet support for Zaurus handhelds - - Updated preempt - - Updated rmap - - Add xattr and acl patches and include the JFS patches for them. - - Add supermount patches. - - Incorportate the small fixes done to gentoo-sources-2.4.19-r9 - -*gentoo-sources-2.4.19-r9 (03 Sep 2002) - - 04 Sep 2002; Brandon Low <lostlogic@gentoo.org> gentoo-sources-2.4.19-r9.ebuild: - - Add 2 line patch to fix compilation with HIGHMEM - - 03 Sep 2002; Brandon Low <lostlogic@gentoo.org> gentoo-sources-2.4.19-r9.ebuild: - - Whole new kernel patching methodology and new kernel. - - I won't mark what has changed as that would be impossible, - instead read /usr/share/doc/gentoo-sources-2.4.19-r9/patches.txt.gz - for information about all the patches in this kernel. - -*gentoo-sources-2.4.19-r8 (20 Aug 2002) - - 20 Aug 2002; Michael Cohen <mjc@gentoo.org> - new kernel with sys-kmod/$foo. needs to have sparc* and ppc tested. - -*gentoo-sources-2.4.19-r7 (09 Jul 2002) - - 15 Jul 2002; Mark Guertin <gerk@gentoo.org> - Added arch keywords (-ppc -sparc -sparc64) - - 09 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> ChangeLog : - - Added ChangeLog. diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest deleted file mode 100644 index 05deaab..0000000 --- a/sys-kernel/gentoo-sources/Manifest +++ /dev/null @@ -1,8 +0,0 @@ -DIST deblob-2.6.27 67810 RMD160 2d697e569fb4ba294c94a50798de10d2ad930b84 SHA1 45b2a16c2df2c14380cd813c74be721b9537d03d SHA256 2eab6480d170a7204b09f2c1091f2b3e4c19c3525ea4887e6887501bfa263efc -DIST deblob-check-2.6.27 247608 RMD160 840bf8a229ea79810519eee6241edb85b78a6562 SHA1 d45a24eb16e5ac956c0fcddbc1ac4d67e326c7b8 SHA256 da1aecdf3ab7f1207b90642d303e52262ccc2ed9e49739b729512b88950d17f3 -DIST genpatches-2.6.27-24.base.tar.bz2 609703 RMD160 26aa6992a05125945c4bbab81d2cdbc3e34551fa SHA1 c47c24bd68a8adecd3814905cc04a71fb445a092 SHA256 ff65672afa90670859a2c20af1401634b4235ba3de9a4d92c89410c72320532a -DIST genpatches-2.6.27-24.extras.tar.bz2 41425 RMD160 dcd9364f2047eddc08e360de5e08ee56cee3f098 SHA1 ed13c423ab89017b39d9d1baf423293df30c0a5e SHA256 6c61cdcde9d3d5034861248d9be429f5a4c9844213217a9f26699e12719bad3c -DIST linux-2.6.27.tar.bz2 50355835 RMD160 5be4595ad824a4af67c1ec0c692838ad0c31f0c0 SHA1 8425ec3be2652f9d511911ff4fcf99039d4574be SHA256 0e99bf9e83f4d1ae0c656741a84dfddfa9c4d2469cf35475f5939d02dc3e4393 -EBUILD gentoo-sources-2.6.27-r22.ebuild 978 RMD160 c97c7c5b7b342af3bbc5d536b48be1147a551901 SHA1 571866849f55df15412a8b9ec701d9d73972848e SHA256 8b24c7ec8d964571ef8f91f0c4e1c82a7dd0736c0a6ee7559ca11bd28c2e53ef -MISC ChangeLog 123008 RMD160 0d07876456e4002692dd332c44851a7ec216248c SHA1 8a9d86c95849b8c9fe33ceb38b77285b8277f0a4 SHA256 275b573d26b84bd7662054471aeb2c98f7088cab02d26948dd3b5a4e9bbd39ff -MISC metadata.xml 257 RMD160 5e7bcce4888d16cd53f1d01287a0bffdf6cf2f86 SHA1 1a6391a3451664bc2aaf2a97761e5ca9ec6c3488 SHA256 148c28ec7bb4708997895803f553b7c7a643672c85dfb5e68b587d2da6c9ecec diff --git a/sys-kernel/gentoo-sources/gentoo-sources-2.6.27-r22.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-2.6.27-r22.ebuild deleted file mode 100644 index dc43837..0000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-2.6.27-r22.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-2.6.27-r10.ebuild,v 1.3 2009/10/21 18:21:24 armin76 Exp $ - -ETYPE="sources" -K_WANT_GENPATCHES="base extras" -K_GENPATCHES_VER="24" -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm -hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="" -HOMEPAGE="http://dev.gentoo.org/~dsd/genpatches" - -GENPATCHES_URI="" -for i in ${K_WANT_GENPATCHES} ; do - tarball="genpatches-${OKV}-${K_GENPATCHES_VER}.${i}.tar.bz2" - GENPATCHES_URI="http://dev.gentoo.org/~pva/${tarball} ${GENPATCHES_URI}" -done -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} diff --git a/sys-kernel/gentoo-sources/metadata.xml b/sys-kernel/gentoo-sources/metadata.xml deleted file mode 100644 index ed61c5f..0000000 --- a/sys-kernel/gentoo-sources/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<herd>kernel</herd> - <use> - <flag name='ultra1'>Enable if you have a SUN Ultra 1 with a HME interface</flag> - </use> -</pkgmetadata> diff --git a/x11-libs/Xaw3d/ChangeLog b/x11-libs/Xaw3d/ChangeLog deleted file mode 100644 index c0d54e4..0000000 --- a/x11-libs/Xaw3d/ChangeLog +++ /dev/null @@ -1,88 +0,0 @@ -# ChangeLog for x11-libs/Xaw3d -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/Xaw3d/ChangeLog,v 1.28 2009/12/14 11:13:41 remi Exp $ - - 14 Dec 2009; Rémi Cardona <remi@gentoo.org> Xaw3d-1.5-r1.ebuild: - change LICENSE to MIT - - 26 Sep 2009; Víctor Ostorga <vostorga@gentoo.org> Xaw3d-1.5-r1.ebuild: - Respecting LDFLAGS , bug 209744 - - 10 Feb 2007; Fabian Groffen <grobian@gentoo.org> Xaw3d-1.5-r1.ebuild: - Dropped ppc-macos keyword, see you in prefix - - 01 Oct 2006; Donnie Berkholz <dberkholz@gentoo.org>; Xaw3d-1.5-r1.ebuild: - libXext has a runtime dep on xextproto now, so we don't need to depend on it - here. - - 24 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>; Xaw3d-1.5-r1.ebuild: - Remove virtual/x11 option from modular X deps. - - 03 May 2006; Diego Pettenò <flameeyes@gentoo.org> Xaw3d-1.5-r1.ebuild: - Add ~x86-fbsd keyword. - - 30 Dec 2005; Doug Goldstein <cardoe@gentoo.org> Xaw3d-1.5-r1.ebuild: - Fixing modular X depends as per requested. Bug #117166 - - 18 Dec 2005; Donnie Berkholz <spyderous@gentoo.org>; Xaw3d-1.5-r1.ebuild: - (#115920) Add gccmakedep to DEPEND. - - 11 Dec 2005; Donnie Berkholz <spyderous@gentoo.org>; Xaw3d-1.5-r1.ebuild: - Add modular X dependencies. - - 24 Oct 2004; Mamoru KOMACHI <usata@gentoo.org> Xaw3d-1.5-r1.ebuild: - Stable on ppc-macos. - - 22 Sep 2004; Mamoru KOMACHI <usata@gentoo.org> Xaw3d-1.5-r1.ebuild: - Added to ~ppc-macos. - - 24 Jul 2004; Stephen P. Becker <geoman@gentoo.org> Xaw3d-1.5-r1.ebuild: - Stable on mips. - - 16 Jul 2004; Tom Gall <tgall@gentoo.org> Xaw3d-1.5-r1.ebuild: - stable on ppc64 - - 28 Jun 2004; Aron Griffis <agriffis@gentoo.org> Xaw3d-1.5-r1.ebuild: - add sed-4 dep - - 14 Jun 2004; Tom Gall <tgall@gentoo.org> Xaw3d-1.5-r1.ebuild: - ~ppc64 initial x support, bug #53763 - - 17 Apr 2004; Daniel Ahlberg <aliz@gentoo.org> Xaw3d-1.5-r1.ebuild: - Added IUSE= - - 14 Apr 2004; Stephen P. Becker <geoman@gentoo.org> Xaw3d-1.5-r1.ebuild: - Added ~mips keyword. - - 18 Feb 2004; Aron Griffis <agriffis@gentoo.org> Xaw3d-1.5-r1.ebuild: - stable on ia64 - - 20 Dec 2003; Guy Martin <gmsoft@gentoo.org> Xaw3d-1.5-r1.ebuild: - Marked stable on hppa. - - 13 Dec 2003; Brad House <brad_mssw@gentoo.org> Xaw3d-1.5-r1.ebuild: - mark stable on amd64 - - 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords - -*Xaw3d-1.5-r1 (1 Feb 2002) - - 10 Mar 2003; Aron Griffis <agriffis@gentoo.org> Xaw3d-1.5-r1.ebuild: - Mark stable on alpha - - 01 Dec 2002; Matthew Kennedy <mkennedy@gentoo.org> ChangeLog, - Xaw3d-1.5-r1.ebuild : - - Tweak for more familiar scroll-bar support. Added more happiness for - lintool. - - 15 Jul 2002; Mark Guertin <gerk@gentoo.org> - Added ppc to keywords - - 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : - - Added initial ChangeLog which should be updated whenever the package is - updated in any way. This changelog is targetted to users. This means that the - comments should well explained and written in clean English. The details about - writing correct changelogs are explained in the skel.ChangeLog file which you - can find in the root directory of the portage repository. diff --git a/x11-libs/Xaw3d/Manifest b/x11-libs/Xaw3d/Manifest deleted file mode 100644 index 47513b0..0000000 --- a/x11-libs/Xaw3d/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -DIST Xaw3d-1.5E.tar.gz 309264 RMD160 086cbabaa45ce5c110815aea24eebcbb54613118 SHA1 efc5b923feda52866c859c59a5b553cb675a69d1 SHA256 433ad7057d745f6313b5be91b65b983881a27a11711e3332fcaa56bf3befe32b -DIST xaw3d_1.5+E-17.diff.gz 17007 RMD160 39d4d8d7e07abd8449f5e51a17d984f95a881ff2 SHA1 113f302dc4aa7703b2897cdc6de9ffad6a33a624 SHA256 fc85c235c176ec43f8ac38b6299377111d583151168737e6d518f09b440441d7 -EBUILD Xaw3d-1.5e.ebuild 1928 RMD160 5f5fc49d44daafa7b2438a68fbfb04f601e41bf0 SHA1 23b78faf3268d69b026fc0833079267ac768e214 SHA256 4fe7a68c9d1efe3ca20c77290cb4445f68acc5bbd7348bc01cb96477385d52d6 -MISC ChangeLog 3158 RMD160 fa956e39d4dc6179e627c449fe6f99f861b888db SHA1 fd7540feec99150f788c7086a90e411e966a5a5a SHA256 083879a0aaf3dc696c68f679eccd41a6d17d2a9254bba9b7fb6281e1193b3bdb -MISC metadata.xml 156 RMD160 c1274bdccf57603d580de0075ba07a35b7509560 SHA1 6f78f604e3d079d39189b40aaaa1ddb06182ad91 SHA256 5101ab0d4cc8c7125eea733c44e86962769bd77acaf53b69223b9cadcdd29055 diff --git a/x11-libs/Xaw3d/Xaw3d-1.5e.ebuild b/x11-libs/Xaw3d/Xaw3d-1.5e.ebuild deleted file mode 100644 index b83a4bf..0000000 --- a/x11-libs/Xaw3d/Xaw3d-1.5e.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/Xaw3d/Xaw3d-1.5-r1.ebuild,v 1.38 2009/12/14 11:13:41 remi Exp $ - -# Ok, hopefully this will resolv the problem with the version of libXaw3d that -# gets created. -# -# The problem its seems, is that when X gets compiled, it determines (with the -# help of some very dark magic) what version libXaw.so it it should build (6.1 or -# 7.0). Now, when compiling Xaw3d, it checks which version of Xaw was built, and -# then builds the same version of Xaw3d. -# -# Since this ebuild use the Makefile's "install" function, it "should" not be a -# problem anymore. -# -# Azarah. - -EAPI="2" - -inherit eutils toolchain-funcs - -DESCRIPTION="drop-in 3D replacement of the Xaw widget set which comes with X" -HOMEPAGE="http://freshmeat.net/projects/xaw3d/" -SRC_URI="ftp://ftp.visi.com/users/hawkeyd/X/Xaw3d-${PV/[a-z]}E.tar.gz -http://mirror.libre.fm/gnusource/18/${P}/Xaw3d-${PV/[a-z]}E.tar.gz -mirror://gentoo/xaw3d_${PV/[a-z]}+E-17.diff.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 sh sparc x86 ~x86-fbsd" -IUSE="" - -# There _might_ be something else, but I doubt it. -RDEPEND="x11-libs/libXt - x11-libs/libX11 - x11-libs/libXmu - x11-libs/libXpm - x11-libs/libXp" - -DEPEND="${RDEPEND} - >=sys-apps/sed-4 - x11-misc/imake - x11-misc/gccmakedep" - -S=${WORKDIR}/xc/lib/Xaw3d - -src_prepare() { - cd "${WORKDIR}/xc" - epatch ${WORKDIR}/xaw3d_${PV/[a-z]}+E-17.diff - cd "${S}" - sed -e 's:\(XCOMM\).*\(EXTRA_INCLUDES\):\2:' -i Imakefile || die -} - -src_compile() { - # convoluted process for out-of-tree building - mkdir ./X11 - cd ./X11 ; ln -sf ../../Xaw3d . ; cd .. - - xmkmf || die - make includes || die - make depend || die - emake CDEBUGFLAGS="${CFLAGS}" CC="$(tc-getCC)" \ - SHLIBGLOBALSFLAGS="${LDFLAGS}" || die -} - -src_install() { - make DESTDIR="${D}" install || die - - dodoc README.XAW3D -} diff --git a/x11-libs/Xaw3d/metadata.xml b/x11-libs/Xaw3d/metadata.xml deleted file mode 100644 index 01c4c00..0000000 --- a/x11-libs/Xaw3d/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<herd>x11</herd> -</pkgmetadata> diff --git a/x11-libs/qt/ChangeLog b/x11-libs/qt/ChangeLog deleted file mode 100644 index 9950f10..0000000 --- a/x11-libs/qt/ChangeLog +++ /dev/null @@ -1,1367 +0,0 @@ -# ChangeLog for x11-libs/qt -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt/ChangeLog,v 1.586 2009/08/02 21:54:28 tommy Exp $ - - 10 Dec 2009; Petr Morávek [Xificurk] <xificurk@gmail.com> - qt-3.3.8b-r1.ebuild, qt-3.3.8b-r2.ebuild: Sync from portage tree. - Remove unused USE flags from metadata. - - 14 Nov 2009; Jonathan Callen <abcd@gentoo.org> qt-3.3.8b-r1.ebuild, - qt-3.3.8b-r2.ebuild: - Remove mention of monolithic kde pkg - - 03 Nov 2009; Ben de Groot <yngwin@gentoo.org> -qt-3.3.8b-r1.ebuild: - Remove -r1 ebuild. Everybody should use -r2. - - 02 Aug 2009; Thomas Sachau (Tommy[D]) <tommy@gentoo.org> - qt-3.3.8b-r1.ebuild, qt-3.3.8b-r2.ebuild: - Enable multilib support for qt-3.3.8b-r{1,2} - -*qt-4.5.2 (27 Jun 2009) - - 27 Jun 2009; Ben de Groot <yngwin@gentoo.org> +qt-4.5.2.ebuild: - Qt 4.5.2 release version bump - -*qt-3.3.8b-r2 (11 Jun 2009) - - 11 Jun 2009; Ben de Groot <yngwin@gentoo.org> - -files/0081-format-string-fixes.diff, - -files/qt-3.3.4-0047-fix-kmenu-widget.diff, - -files/qt-3.3.4-gcc4-volatile.patch, - -files/qt-3.3.8-unicode-off-by-one.patch, - -files/0185-fix-format-strings.diff, -files/qt4/Assistant.desktop, - -files/qt-3.3.4-0051-qtoolbar_77047.patch, -files/qt-3.3.4-gcc4.patch, - -files/qt-3.3.4-immodule-focus.patch, - -files/qt-3.3.4-qclipboard-hack.patch, - -files/qt-4.2.3-hppa-ldcw-fix.patch, -files/qt4/Designer.desktop, - -files/qt-4.3.1-unicode-off-by-one.patch, -files/qt4/Linguist.desktop, - -files/utf8-bug-qt3.diff, +qt-3.3.8b-r2.ebuild: - Adding fix for pkgconfig issue in bug 185925. Removing no longer used - patches from FILESDIR. - - 06 Jun 2009; Markus Meier <maekke@gentoo.org> qt-4.5.1.ebuild: - amd64 stable, bug #266201 - - 05 Jun 2009; Ben de Groot <yngwin@gentoo.org> qt-4.5.1.ebuild: - Specify !kde for qt-phonon dep - - 03 Jun 2009; Ben de Groot <yngwin@gentoo.org> qt-4.5.1.ebuild, - metadata.xml: - Add kde useflag again, for selecting media-sound/phonon, now that that - package is stable on the needed arches - - 02 Jun 2009; Christian Faulhammer <fauli@gentoo.org> qt-4.5.1.ebuild: - stable x86, bug 266201 - - 30 May 2009; Ben de Groot <yngwin@gentoo.org> qt-4.5.1.ebuild: - Revert kde useflag addition, as it breaks stable - - 29 May 2009; Ben de Groot <yngwin@gentoo.org> qt-4.5.1.ebuild: - Add kde useflag to make dependency calculation easier, bug 270188 - - 28 May 2009; Robert Piasek <dagger@gentoo.org> qt-4.5.1.ebuild: - stable on arm (bug #266201) - - 24 May 2009; Tobias Klausmann <klausman@gentoo.org> qt-4.5.1.ebuild: - Keyworded on alpha, bug #266201 - - 15 May 2009; Tobias Klausmann <klausman@gentoo.org> qt-4.5.1.ebuild: - x11-libs/qt-webkit-4.5.1 does not compile on alpha (bug 269739), the meta - ebuild depends on that, so dropping keyword - - 14 May 2009; Ben de Groot <yngwin@gentoo.org> -qt-4.5.0.ebuild: - Remove old - - 13 May 2009; Brent Baude <ranger@gentoo.org> qt-4.5.1.ebuild: - Marking qt-4.5.1 ppc stable for bug 266201 - - 27 Apr 2009; Markos Chandras <hwoarang@gentoo.org> -qt-3.3.8-r4.ebuild: - Remove masked ebuild - -*qt-4.5.1 (27 Apr 2009) - - 27 Apr 2009; Markos Chandras <hwoarang@gentoo.org> +qt-4.5.1.ebuild: - Version bump to 4.5.1 - - 18 Mar 2009; Markos Chandras <hwoarang@gentoo.org> metadata.xml: - Removing obsolete use flag definitions from metadata.xml - - 18 Mar 2009; Markos Chandras <hwoarang@gentoo.org> -qt-4.3.3.ebuild, - -qt-4.3.4-r1.ebuild, -qt-4.3.5.ebuild: - Dropping 4.3* packages and 4.5.0_rc1 - - 18 Mar 2009; Raúl Porcel <armin76@gentoo.org> qt-4.5.0.ebuild: - Add ~arm wrt #262462, re-add ~alpha/~ia64, add -sparc - -*qt-4.5.0 (04 Mar 2009) - - 04 Mar 2009; Ben de Groot <yngwin@gentoo.org> +qt-4.5.0.ebuild: - Version bump - - 20 Feb 2009; Jeroen Roovers <jer@gentoo.org> qt-4.4.2.ebuild: - Stable for HPPA (bug #248083). - -*qt-4.5.0_rc1 (13 Feb 2009) - - 13 Feb 2009; Ben de Groot <yngwin@gentoo.org> +qt-4.5.0_rc1.ebuild: - Add meta ebuild, on popular request, see bug 258712. - - 11 Feb 2009; Markos Chandras <hwoarang@gentoo.org> qt-4.4.2.ebuild: - Remove duplicate x11-libs/qt-test RDEPEND ( see bug #258533 ) - - 06 Feb 2009; Raúl Porcel <armin76@gentoo.org> qt-4.4.2.ebuild: - ia64/sparc stable wrt #248038 - - 04 Feb 2009; Brent Baude <ranger@gentoo.org> qt-4.4.2.ebuild: - Marking qt-4.4.2 ppc64 stable for bug 248038 - - 31 Jan 2009; Tobias Klausmann <klausman@gentoo.org> qt-4.4.2.ebuild: - Stable on alpha, bug #248038 - - 29 Jan 2009; Alexis Ballier <aballier@gentoo.org> qt-4.4.2.ebuild: - keyword ~x86-fbsd - - 18 Jan 2009; Markus Meier <maekke@gentoo.org> qt-4.4.2.ebuild: - amd64/x86 stable, bug #248038 - - 17 Jan 2009; nixnut <nixnut@gentoo.org> qt-3.3.8b-r1.ebuild: - ppc stable #253978 - - 17 Jan 2009; nixnut <nixnut@gentoo.org> qt-4.4.2.ebuild: - ppc stable #248038 - - 10 Jan 2009; Raúl Porcel <armin76@gentoo.org> qt-3.3.8b-r1.ebuild: - alpha/ia64/sparc/x86 stable wrt #253978 - - 09 Jan 2009; Guy Martin <gmsoft@gentoo.org> qt-3.3.8b-r1.ebuild: - hppa stable, #253978 - - 09 Jan 2009; Rémi Cardona <remi@gentoo.org> qt-3.3.8-r4.ebuild, - qt-3.3.8b-r1.ebuild: - Change virtual/xft dependency to x11-libs/libXft, bug 253771. - - 07 Jan 2009; Thomas Anderson <gentoofan23@gentoo.org> qt-3.3.8b-r1.ebuild: - stable amd64, bug 253978 - - 07 Jan 2009; Brent Baude <ranger@gentoo.org> qt-3.3.8b-r1.ebuild: - stable ppc64, bug 253978 - - 06 Jan 2009; Ben de Groot <yngwin@gentoo.org> -qt-3.3.8b.ebuild, - -qt-4.4.0.ebuild, -qt-4.4.1.ebuild, -qt-4.4.1-r1.ebuild: - Remove 3.3.8b in preparation of stabling 3.3.8b-r1. Removing old 4.4.{0,1} - meta ebuilds. - -*qt-3.3.8b-r1 (02 Jan 2009) - - 02 Jan 2009; Ben de Groot <yngwin@gentoo.org> +qt-3.3.8b-r1.ebuild: - Revbump to fix bug 244732 - - 28 Oct 2008; Ben de Groot <yngwin@gentoo.org> - +files/qt-3.3.8-fix-compiler-detection.patch, - +files/qt-3.3.8b-cjk-fix.patch, qt-3.3.8-r4.ebuild, qt-3.3.8b.ebuild: - Add patches/fixes for bugs 172219, 229567 and 244732 - -*qt-4.4.2 (18 Sep 2008) - - 18 Sep 2008; Ben de Groot <yngwin@gentoo.org> +qt-4.4.2.ebuild: - Version bump - -*qt-4.4.1-r1 (04 Sep 2008) - - 04 Sep 2008; Ben de Groot <yngwin@gentoo.org> +qt-4.4.1-r1.ebuild: - Make deps more complete with webkit and qt-script, and dbus useflag. - Leaving phonon out to give users the choice for hardmasked phonon from - kde4. - - 16 Aug 2008; Doug Goldstein <cardoe@gentoo.org> metadata.xml: - add GLEP 56 USE flag desc from use.local.desc - -*qt-4.4.1 (11 Aug 2008) - - 11 Aug 2008; Ben de Groot <yngwin@gentoo.org> +qt-4.4.1.ebuild: - Version bump - -*qt-4.3.5 (26 Jul 2008) - - 26 Jul 2008; Carsten Lohrke <carlo@gentoo.org> +qt-4.3.5.ebuild: - Version bump. - -*qt-3.3.8b (26 Jul 2008) - - 26 Jul 2008; Carsten Lohrke <carlo@gentoo.org> +qt-3.3.8b.ebuild: - Version bump. License change, quoting issues and other minor cleaning. - - 30 May 2008; Jeroen Roovers <jer@gentoo.org> qt-4.4.0.ebuild: - Marked ~hppa (bug #223557). - - 27 May 2008; Raúl Porcel <armin76@gentoo.org> qt-4.4.0.ebuild: - Add ~alpha/~ia64/~sparc wrt #223557 - - 25 May 2008; Markus Rothe <corsair@gentoo.org> qt-4.4.0.ebuild: - Added ~ppc/~ppc64 - - 19 May 2008; Tiziano Müller <dev-zero@gentoo.org> qt-3.3.8-r4.ebuild, - qt-4.3.3.ebuild, qt-4.3.4-r1.ebuild: - Changed dependency for postgresql to virtual/postgresql-base - - 16 May 2008; Ingmar Vanhassel <ingmar@gentoo.org> -qt-3.3.4-r8.ebuild, - -qt-4.3.2-r1.ebuild, -qt-4.4.0_rc1.ebuild: - Old. - -*qt-4.4.0 (15 May 2008) - - 15 May 2008; Ingmar Vanhassel <ingmar@gentoo.org> qt-4.4.0_rc1.ebuild, - +qt-4.4.0.ebuild: - Version bump to Qt-4.4.0. - - 11 May 2008; Diego Pettenò <flameeyes@gentoo.org> - +files/qt-3.3.8-immqt+gcc-4.3.patch, qt-3.3.8-r4.ebuild: - Add patch to build with gcc-4.3 and immqt-bc USE flag enabled. Thanks to - Matsuu for linking the Debian patch in bug #218447. - - 18 Apr 2008; Markus Meier <maekke@gentoo.org> qt-4.3.3.ebuild: - amd64 stable, bug #217529 - - 18 Apr 2008; Raúl Porcel <armin76@gentoo.org> qt-4.3.3.ebuild: - x86 stable wrt #217529 - - 17 Apr 2008; nixnut <nixnut@gentoo.org> qt-4.3.3.ebuild: - Stable on ppc wrt bug 217529 - - 14 Apr 2008; Markus Rothe <corsair@gentoo.org> qt-4.3.3.ebuild: - Stable on ppc64; bug #217529 - - 14 Apr 2008; Raúl Porcel <armin76@gentoo.org> qt-4.3.3.ebuild: - alpha/ia64 stable wrt #217529 - - 13 Apr 2008; Ferris McCormick <fmccor@gentoo.org> qt-4.3.3.ebuild: - Sparc stable --- Bug #217529 --- Good since 2007-12-06. - - 13 Apr 2008; Jeroen Roovers <jer@gentoo.org> qt-4.3.3.ebuild: - Stable for HPPA (bug #217529). - - 13 Apr 2008; Ingmar Vanhassel <ingmar@gentoo.org> qt-4.3.3.ebuild, - -qt-4.3.4.ebuild, qt-4.3.4-r1.ebuild: - Make USE="accessibility qt3support" default through IUSE defaults, bug - 217400. Remove old. - - 10 Apr 2008; Ingmar Vanhassel <ingmar@gentoo.org> -qt-4.4.0_beta1.ebuild, - +qt-4.4.0_rc1.ebuild: - Version bump qt to 4.4.0_rc1. Thanks to Bo Andresen and Bernd Steinhauser. - - 19 Mar 2008; Ingmar Vanhassel <ingmar@gentoo.org> ChangeLog: - Anti-aliasing rules are broken in qt-4.3*, causing random runtime failures - in Qt programs. bug 213411. Fixed by appending -fno-strict-aliasing. - - 16 Mar 2008; Bo Ørsted Andresen <zlin@gentoo.org> qt-4.4.0_beta1.ebuild: - The qt meta ebuild needs to block previous versions of qt:4 too. - - 11 Mar 2008; Ingmar Vanhassel <ingmar@gentoo.org> qt-4.3.2-r1.ebuild, - qt-4.3.4.ebuild: - "append-flags -fno-gcse" on amd64 with gcc 3, bug 178652. - - 09 Mar 2008; Bo Ørsted Andresen <zlin@gentoo.org> qt-4.4.0_beta1.ebuild: - Revert last commit. - - 09 Mar 2008; Bo Ørsted Andresen <zlin@gentoo.org> -qt-4.4.0_beta1.ebuild: - Removing the qt-4.4 meta ebuild. Packages are not supposed to DEPEND on meta - ebuilds and this causes pain without ranged dependencies. If a meta ebuild - is needed it should be added as qt-meta-4.4.0_beta1 instead. - - 05 Mar 2008; Ingmar Vanhassel <ingmar@gentoo.org> -qt-4.4.0_rc1.ebuild: - Old. - - 05 Mar 2008; Jeroen Roovers <jer@gentoo.org> qt-4.4.0_rc1.ebuild: - Remove ~hppa again. - - 05 Mar 2008; Ingmar Vanhassel <ingmar@gentoo.org> qt-4.3.2-r1.ebuild, - qt-4.3.3.ebuild, qt-4.3.4.ebuild: - =x11-libs/qt-4.3*:4 needs to block split Qt ebuilds. - - 04 Mar 2008; Jeroen Roovers <jer@gentoo.org> qt-4.4.0_rc1.ebuild: - Marked ~hppa for no good reason. - - 03 Mar 2008; Ingmar Vanhassel <ingmar@gentoo.org> qt-3.3.8-r4.ebuild: - Drop ppc-macos patches, they're patiently awaiting you in prefix. - - 03 Mar 2008; Ingmar Vanhassel <ingmar@gentoo.org> - +files/qt-3.3.8-mips.patch, qt-3.3.8-r4.ebuild: - Added a patch for ~x11-libs/qt-3.3.8 to fix compilation on ~mips, thanks to - Ryan Hill in bug 210551. - - 25 Feb 2008; Caleb Tennis <caleb@gentoo.org> - -files/qt-4.3.1-powerpc64.patch, -qt-4.3.1-r1.ebuild, -qt-4.3.2.ebuild: - remove older versions - -*qt-4.3.4 (25 Feb 2008) - - 25 Feb 2008; Caleb Tennis <caleb@gentoo.org> +qt-4.3.4.ebuild: - 4.3.4 version bump - - 23 Feb 2008; Ingmar Vanhassel <ingmar@gentoo.org> qt-3.3.4-r8.ebuild, - qt-3.3.8-r4.ebuild: - Move x11-proto/* out of RDEPEND, bug 204781. mips -> ~mips to fix deps. - - 07 Jan 2008; Caleb Tennis <caleb@gentoo.org> qt-4.3.3.ebuild: - PV -> P - - 05 Jan 2008; Caleb Tennis <caleb@gentoo.org> qt-4.3.3.ebuild: - PF -> PV for docs - - 21 Dec 2007; Caleb Tennis <caleb@gentoo.org> qt-4.4.0_rc1.ebuild: - I've completely changed this. Now it's a meta-ebuild that pulls in all of - the smaller package deps. - -*qt-4.4.0_rc1 (19 Dec 2007) - - 19 Dec 2007; Caleb Tennis <caleb@gentoo.org> +qt-4.4.0_rc1.ebuild: - version bump - - 10 Dec 2007; Robert Buchholz <rbu@gentoo.org> qt-4.3.2-r1.ebuild: - amd64 stable (bug #201296) - - 07 Dec 2007; Jeroen Roovers <jer@gentoo.org> qt-4.3.2-r1.ebuild: - Stable for HPPA. - - 07 Dec 2007; Tobias Scherbaum <dertobi123@gentoo.org> qt-4.3.2-r1.ebuild: - ppc stable, bug #201296 - - 07 Dec 2007; Markus Rothe <corsair@gentoo.org> qt-4.3.2-r1.ebuild: - Stable on ppc64 - - 06 Dec 2007; Raúl Porcel <armin76@gentoo.org> qt-4.3.2-r1.ebuild: - alpha/ia64/sparc stable - - 06 Dec 2007; Christian Faulhammer <opfer@gentoo.org> qt-4.3.2-r1.ebuild: - stable x86 - -*qt-4.3.3 (06 Dec 2007) - - 06 Dec 2007; Caleb Tennis <caleb@gentoo.org> +qt-4.3.3.ebuild: - version bump. Remove QMAKESPEC as it's redundant and mmight conflict with - other system settings (Qtopia). #201239 - -*qt-4.3.2-r1 (05 Dec 2007) - - 05 Dec 2007; Caleb Tennis <caleb@gentoo.org> +files/qsslsocket-fix.patch, - +qt-4.3.2-r1.ebuild: - Add qsslsocket patch, bug #201296 - - 14 Nov 2007; Samuli Suominen <drac@gentoo.org> qt-4.3.2.ebuild: - amd64 stable wrt #198454, thanks to Thomas A. for testing. - - 12 Nov 2007; Caleb Tennis <caleb@gentoo.org> -qt-3.3.8-r3.ebuild: - remove old version - - 10 Nov 2007; Markus Rothe <corsair@gentoo.org> qt-4.3.2.ebuild: - Stable on ppc64; bug #198454 - - 10 Nov 2007; Christian Heim <phreak@gentoo.org> qt-3.3.4-r8.ebuild, - qt-3.3.8-r3.ebuild, qt-3.3.8-r4.ebuild, qt-4.3.1-r1.ebuild, - qt-4.3.2.ebuild: - Workaround the hardened issues with SSP in QT by adding -fno-stack-protector - to CFLAGS/CXXFLAGS. - - 09 Nov 2007; nixnut <nixnut@gentoo.org> qt-4.3.2.ebuild: - Stable on ppc wrt bug 198454 - - 08 Nov 2007; Raúl Porcel <armin76@gentoo.org> qt-4.3.2.ebuild: - alpha/ia64/x86 stable wrt #198454 - - 08 Nov 2007; Jeroen Roovers <jer@gentoo.org> qt-4.3.2.ebuild: - Stable for HPPA (bug #198454). - - 08 Nov 2007; Ferris McCormick <fmccor@gentoo.org> qt-4.3.2.ebuild: - Sparc stable --- Bug #198454 --- Good for me since 10 Oct., designer works, ... - - 23 Oct 2007; Caleb Tennis <caleb@gentoo.org> -files/qt-4.1.4-sparc.patch, - -files/qt4-parisc-linux.diff, -files/utf8-bug-qt4-2.diff, - -files/qt-4.3.0-alpha-threading.patch, -files/qt4-sqlite-configure.patch, - -files/qt4-nomkdir.patch, -qt-4.3.0-r2.ebuild, -qt-4.3.1.ebuild, - qt-4.3.2.ebuild: - remove old versions - - 03 Oct 2007; Caleb Tennis <caleb@gentoo.org> qt-4.3.2.ebuild: - Fix some quoting issues - -*qt-4.3.2 (03 Oct 2007) - - 03 Oct 2007; Caleb Tennis <caleb@gentoo.org> +qt-4.3.2.ebuild: - Version bump - - 25 Sep 2007; Caleb Tennis <caleb@gentoo.org> qt-4.3.1-r1.ebuild: - This guy is required whether we have a wacom tablet or not - - 15 Sep 2007; Tobias Scherbaum <dertobi123@gentoo.org> qt-4.3.1-r1.ebuild: - ppc stable, bug #192134 - -*qt-4.3.1-r1 (14 Sep 2007) -*qt-3.3.8-r4 (14 Sep 2007) - - 14 Sep 2007; Caleb Tennis <caleb@gentoo.org> - +files/qt-3.3.8-unicode-off-by-one.patch, - +files/qt-4.3.1-unicode-off-by-one.patch, +qt-3.3.8-r4.ebuild, - +qt-4.3.1-r1.ebuild: - Bump for security bug #192472 - - 13 Sep 2007; Markus Rothe <corsair@gentoo.org> qt-4.3.1.ebuild: - Stable on ppc64; bug #192134 - - 13 Sep 2007; Markus Ullmann <jokey@gentoo.org> qt-4.3.1.ebuild: - Stable on sparc wrt bug #192134 - - 12 Sep 2007; Chris Gianelloni <wolf31o2@gentoo.org> qt-4.3.1.ebuild: - Stable on amd64 wrt bug #192134. - - 12 Sep 2007; Jeroen Roovers <jer@gentoo.org> qt-4.3.1.ebuild: - Stable for HPPA (bug #192134). - - 11 Sep 2007; Raúl Porcel <armin76@gentoo.org> qt-4.3.1.ebuild: - alpha/ia64/x86 stable wrt #192134 - - 07 Sep 2007; Caleb Tennis <caleb@gentoo.org> qt-3.3.8-r3.ebuild: - Fix xineramaproto dep for immqt users, bug #189703 - - 23 Aug 2007; Caleb Tennis <caleb@gentoo.org> -qt-4.2.3-r1.ebuild: - remove last of 4.2 series - - 23 Aug 2007; Markus Rothe <corsair@gentoo.org> - +files/qt-4.3.1-powerpc64.patch, qt-4.3.1.ebuild: - Added patch for ppc64 and mark ebuild ~ppc64; bug #178779 - - 23 Aug 2007; Caleb Tennis <caleb@gentoo.org> -qt-3.3.8-r2.ebuild, - -qt-4.3.0.ebuild, -qt-4.3.0-r1.ebuild: - remove some older versions - - 15 Aug 2007; Jeroen Roovers <jer@gentoo.org> qt-4.3.0-r2.ebuild: - Stable for HPPA (bug #185446). - - 12 Aug 2007; Caleb Tennis <caleb@gentoo.org> qt-4.3.1.ebuild: - Fix pkgconfig dir, per bug #188397 - - 12 Aug 2007; Steve Dibb <beandog@gentoo.org> qt-3.3.8-r3.ebuild, - qt-4.3.0-r2.ebuild: - amd64 stable, security bug 185446 - - 09 Aug 2007; Gustavo Zacarias <gustavoz@gentoo.org> qt-4.3.1.ebuild: - Keyworded ~sparc wrt #188103 - - 08 Aug 2007; Raúl Porcel <armin76@gentoo.org> qt-4.3.1.ebuild: - Re-add ~alpha wrt #188103 - -*qt-4.3.1 (08 Aug 2007) - - 08 Aug 2007; Caleb Tennis <caleb@gentoo.org> +qt-4.3.1.ebuild: - Version bump - - 08 Aug 2007; Jeroen Roovers <jer@gentoo.org> qt-3.3.8-r3.ebuild: - Stable for HPPA (bug #185446). - - 06 Aug 2007; Gustavo Zacarias <gustavoz@gentoo.org> qt-4.3.0-r2.ebuild: - Stable on sparc wrt security #185446 - - 05 Aug 2007; Raúl Porcel <armin76@gentoo.org> qt-3.3.8-r3.ebuild, - qt-4.3.0-r2.ebuild: - alpha/ia64/x86 stable wrt security #185446 - - 04 Aug 2007; Tobias Scherbaum <dertobi123@gentoo.org> qt-3.3.8-r3.ebuild, - qt-4.3.0-r2.ebuild: - ppc stable, bug #185446 - -*qt-4.3.0-r2 (03 Aug 2007) - - 03 Aug 2007; Carsten Lohrke <carlo@gentoo.org> +qt-4.3.0-r2.ebuild: - Patch wasn't applied in previous ebuild revision due to a typo. - - 03 Aug 2007; Gustavo Zacarias <gustavoz@gentoo.org> qt-3.3.8-r3.ebuild, - qt-4.3.0-r1.ebuild: - Stable on sparc wrt security #185446 - - 02 Aug 2007; Christian Faulhammer <opfer@gentoo.org> qt-3.3.8-r3.ebuild, - qt-4.3.0-r1.ebuild: - stable x86, security bug 185446 - - 02 Aug 2007; Markus Rothe <corsair@gentoo.org> qt-3.3.8-r3.ebuild: - Stable on ppc64; bug #185446 - -*qt-4.3.0-r1 (02 Aug 2007) -*qt-3.3.8-r3 (02 Aug 2007) - - 02 Aug 2007; Carsten Lohrke <carlo@gentoo.org> - +files/0081-format-string-fixes.diff, +files/0185-fix-format-strings.diff, - +qt-3.3.8-r3.ebuild, +qt-4.3.0-r1.ebuild: - Possible remote code execution, CVE-2007-3388, bug #187465. - - 01 Aug 2007; Christoph Mende <angelos@gentoo.org> qt-4.3.0.ebuild: - Stable on amd64 wrt bug #186670 - - 31 Jul 2007; Caleb Tennis <caleb@gentoo.org> qt-4.3.0.ebuild: - Incorporate dep changes from flameeyes at bug #181199 - - 26 Jul 2007; Jeroen Roovers <jer@gentoo.org> qt-4.3.0.ebuild: - Stable for HPPA (bug #186670). - - 26 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org> qt-4.3.0.ebuild: - Stable on sparc wrt #186670 - - 26 Jul 2007; Raúl Porcel <armin76@gentoo.org> qt-4.3.0.ebuild: - ia64/x86 stable wrt #186670 - - 22 Jul 2007; Donnie Berkholz <dberkholz@gentoo.org>; qt-3.3.4-r8.ebuild, - qt-3.3.8-r2.ebuild: - Drop virtual/x11 references. - - 20 Jul 2007; Raúl Porcel <armin76@gentoo.org> - +files/qt-4.3.0-alpha-threading.patch, qt-4.3.0.ebuild: - Add ~alpha to 4.3.0 and add a patch from upstream to make it work on alpha - - 10 Jul 2007; Markus Rothe <corsair@gentoo.org> qt-4.3.0.ebuild: - Added ~ppc - - 20 Jun 2007; Caleb Tennis <caleb@gentoo.org> qt-4.3.0.ebuild: - Add -reduce-relocations switch, from bug #178535 - - 08 Jun 2007; Caleb Tennis <caleb@gentoo.org> -qt-4.3.0_beta1.ebuild, - -qt-4.3.0_rc1.ebuild: - remove beta and rc ebuilds - - 04 Jun 2007; Diego Pettenò <flameeyes@gentoo.org> qt-4.3.0.ebuild: - Make png, jpeg, zlib and mng turn off the relative support from Qt 4.3, see - bug #180835. - - 04 Jun 2007; Diego Pettenò <flameeyes@gentoo.org> qt-4.3.0.ebuild: - Add ~x86-fbsd keyword. - - 04 Jun 2007; Diego Pettenò <flameeyes@gentoo.org> qt-4.3.0.ebuild: - Always avoid stripping during build, fixes bug #138215. - - 02 Jun 2007; Raúl Porcel <armin76@gentoo.org> qt-4.3.0.ebuild: - Add ~ia64 wrt #180444 - - 01 Jun 2007; Jeroen Roovers <jer@gentoo.org> qt-4.3.0.ebuild: - Marked ~hppa (bug #180444). - - 01 Jun 2007; Jeroen Roovers <jer@gentoo.org> qt-4.3.0.ebuild: - Return of the hppa-ldcw-fix patch. - - 01 Jun 2007; Gustavo Zacarias <gustavoz@gentoo.org> qt-4.3.0.ebuild: - Keyworded ~sparc wrt #180444 - -*qt-4.3.0 (31 May 2007) - - 31 May 2007; Caleb Tennis <caleb@gentoo.org> +qt-4.3.0.ebuild: - Adding 4.3.0 final - - 30 May 2007; Caleb Tennis <caleb@gentoo.org> qt-3.3.8-r2.ebuild: - Add firebird include dir - - 17 May 2007; Caleb Tennis <caleb@gentoo.org> qt-4.3.0_rc1.ebuild: - explicitly disable pch here, from bug #178843 - - 14 May 2007; Caleb Tennis <caleb@gentoo.org> qt-4.3.0_rc1.ebuild: - Some sed foo to change CFLAG stuff, from bug #172219 - - 13 May 2007; Marcus D. Hanwell <cryos@gentoo.org> qt-4.3.0_rc1.ebuild: - Marked ~amd64. - -*qt-4.3.0_rc1 (10 May 2007) - - 10 May 2007; Caleb Tennis <caleb@gentoo.org> +qt-4.3.0_rc1.ebuild: - bump - - 03 May 2007; Caleb Tennis <caleb@gentoo.org> qt-3.3.4-r8.ebuild: - readd amd64 as it likes this version for hardened as well - -*qt-4.3.0_beta1 (01 May 2007) - - 01 May 2007; Caleb Tennis <caleb@gentoo.org> +qt-4.3.0_beta1.ebuild: - Bump for new beta - - 28 Apr 2007; Sven Wegener <swegener@gentoo.org> qt-3.3.4-r8.ebuild, - qt-3.3.8-r2.ebuild: - Fix *initd, *confd and *envd calls (#17388, #174266) - - 20 Apr 2007; Caleb Tennis <caleb@gentoo.org> qt-3.3.4-r8.ebuild: - re-add x86 because this is the preferred hardened version for x86 - - 18 Apr 2007; Caleb Tennis <caleb@gentoo.org> - -files/qt-3.3.5-immodule.patch, -files/qt-3.3.6-CVE-2006-4811-bis.patch, - -files/qt-3.3.6-CVE-2006-4811.patch, -files/qt-3.3.6-seli-xinerama.patch, - -files/qt-3.3.6-uic-fix.patch, -files/qt-3.3.6-visibility.patch, - -files/qt-4.1.4-CVE-2006-4811-bis.patch, - -files/qt-4.1.4-CVE-2006-4811.patch, qt-3.3.4-r8.ebuild, - -qt-3.3.6-r4.ebuild, -qt-3.3.6-r5.ebuild, -qt-4.1.4-r2.ebuild, - -qt-4.2.2.ebuild: - remove lots of old security ridden versions. Removing arches on 3.3.4-r8 - except for mips which hasn't stabilized 3.3.8-r2 yet - - 18 Apr 2007; Jose Luis Rivero <yoswink@gentoo.org> qt-3.3.8-r2.ebuild, - qt-4.2.3-r1.ebuild: - Stable on alpha wrt security #172746 - - 17 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org> qt-4.2.3-r1.ebuild: - Stable on sparc wrt security #172746 - - 13 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org> qt-3.3.8-r2.ebuild: - Stable on sparc wrt security #172746 - - 13 Apr 2007; Caleb Tennis <caleb@gentoo.org> -qt-3.3.8.ebuild, - -qt-3.3.8-r1.ebuild, -qt-4.2.3.ebuild: - Removing old versions - - 13 Apr 2007; Caleb Tennis <caleb@gentoo.org> +files/qt4/Assistant.desktop, - +files/qt4/Designer.desktop, +files/qt4/Linguist.desktop, - qt-4.2.3-r1.ebuild: - This change just installs .desktop files for the Qt desktop applications so - that they can be used from the menus of the desktops. From bug #174033 - - 12 Apr 2007; Jeroen Roovers <jer@gentoo.org> qt-4.2.3-r1.ebuild: - W00t! Back to stable (bug #172746, comment #23). - - 12 Apr 2007; Jeroen Roovers <jer@gentoo.org> qt-3.3.8-r2.ebuild: - Stable for HPPA (bug #172746). - - 12 Apr 2007; Jeroen Roovers <jer@gentoo.org> qt-4.2.3-r1.ebuild: - Revert to ~hppa (bug #172746, comment #16). - - 12 Apr 2007; Jeroen Roovers <jer@gentoo.org> - +files/qt-4.2.3-hppa-ldcw-fix.patch, qt-4.2.3-r1.ebuild: - Stable for HPPA (bug #172746). - - 11 Apr 2007; Tobias Scherbaum <dertobi123@gentoo.org> qt-3.3.8-r2.ebuild, - qt-4.2.3-r1.ebuild: - ppc stable, bug #172746 - - 11 Apr 2007; Markus Rothe <corsair@gentoo.org> qt-3.3.8-r2.ebuild, - qt-4.2.3-r1.ebuild: - Stable on ppc64; bug #172746 - - 11 Apr 2007; Raúl Porcel <armin76@gentoo.org> qt-3.3.8-r2.ebuild, - qt-4.2.3-r1.ebuild: - ia64 + x86 stable wrt security bug 172746 - - 11 Apr 2007; Marcus D. Hanwell <cryos@gentoo.org> qt-3.3.8-r2.ebuild, - qt-4.2.3-r1.ebuild: - Stable on amd64, bug 172746. - -*qt-4.2.3-r1 (30 Mar 2007) -*qt-3.3.8-r2 (30 Mar 2007) - - 30 Mar 2007; Caleb Tennis <caleb@gentoo.org> +files/utf8-bug-qt3.diff, - +files/utf8-bug-qt4-2.diff, +qt-3.3.8-r2.ebuild, +qt-4.2.3-r1.ebuild: - Add a patch that fixes a a XSS error in the UTF8 decoder (from kde-packager) - - 27 Mar 2007; Raúl Porcel <armin76@gentoo.org> qt-4.2.2.ebuild: - ia64 stable wrt bug 164699 - - 26 Mar 2007; Charlie Shepherd <masterdriverz@gentoo.org> - qt-3.3.8-r1.ebuild: - Add note about updating the qt3 eclass - -*qt-3.3.8-r1 (26 Mar 2007) - - 26 Mar 2007; Caleb Tennis <caleb@gentoo.org> - +files/qt-3.3.8-mysql-unload-crash.diff, +qt-3.3.8-r1.ebuild: - Revbump to include a crash patch (Bug #171883) - - 21 Mar 2007; Caleb Tennis <caleb@gentoo.org> qt-3.3.8.ebuild: - Update to the latest immqt patch from bug #169852 - -*qt-4.2.3 (08 Mar 2007) - - 08 Mar 2007; Caleb Tennis <caleb@gentoo.org> +qt-4.2.3.ebuild: - Version bump. Also, don't use the Qt built in split debug option as portage - now supports it via make.conf - - 22 Feb 2007; Caleb Tennis <caleb@gentoo.org> -qt-4.2.1.ebuild: - remove old version - -*qt-3.3.8 (22 Feb 2007) - - 22 Feb 2007; Caleb Tennis <caleb@gentoo.org> - +files/qt-3.3.8-seli-xinerama.patch, +files/qt-3.3.8-uic-fix.patch, - +files/qt-3.3.8-visibility.patch, +qt-3.3.8.ebuild: - Bump to latest version - - 18 Feb 2007; Fabian Groffen <grobian@gentoo.org> - -files/qt-3.3.4-macos.patch, -files/qt-3.3.5-macos.patch, - qt-3.3.4-r8.ebuild, qt-3.3.6-r4.ebuild, qt-3.3.6-r5.ebuild: - Dropped ppc-macos keyword, see you in prefix - - 14 Feb 2007; Christian Faulhammer <opfer@gentoo.org> qt-4.2.2.ebuild: - stable x86; bug 164699 - - 12 Feb 2007; Simon Stelling <blubb@gentoo.org> qt-4.2.2.ebuild: - stable on amd64; bug 166478 - - 06 Feb 2007; Roy Marples <uberlord@gentoo.org> qt-4.2.2.ebuild: - Add ~x86-fbsd keyword. - - 04 Feb 2007; nixnut <nixnut@gentoo.org> qt-4.2.2.ebuild: - Stable on ppc wrt bug 164699 - - 01 Feb 2007; Markus Rothe <corsair@gentoo.org> qt-4.2.2.ebuild: - Stable on ppc64; bug #164699 - - 01 Feb 2007; Gustavo Zacarias <gustavoz@gentoo.org> qt-4.2.2.ebuild: - Stable on sparc wrt #164699 - - 05 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> qt-3.3.4-r8.ebuild, - qt-3.3.6-r4.ebuild, qt-3.3.6-r5.ebuild: - Convert to use elog. - - 21 Dec 2006; Caleb Tennis <caleb@gentoo.org> qt-4.2.2.ebuild: - change install targets to simply subtargets, per bug #157997 - - 19 Dec 2006; Caleb Tennis <caleb@gentoo.org> qt-4.1.4-r2.ebuild, - qt-4.2.1.ebuild, qt-4.2.2.ebuild: - This change was wrong. Qt is still dual licensed GPL/QPL, so revert this back - - 19 Dec 2006; Caleb Tennis <caleb@gentoo.org> qt-4.2.2.ebuild: - Make sure we catch sed the proper stuff - - 19 Dec 2006; Caleb Tennis <caleb@gentoo.org> qt-4.2.2.ebuild: - Make symbol export and examples handling part of configure options instead - of seds, now that Qt supports them (thanks to bug #157997) - - 05 Dec 2006; Caleb Tennis <caleb@gentoo.org> - +files/qt4-sqlite-configure.patch, qt-4.2.2.ebuild: - A configure patch to ensure usage of system sqlite (bug #156123) - - 05 Dec 2006; Caleb Tennis <caleb@gentoo.org> qt-4.2.2.ebuild: - Can just use -confirm-license now instead of saying yes to the prompt - - 04 Dec 2006; Caleb Tennis <caleb@gentoo.org> qt-4.2.2.ebuild: - Qt configuration seems to do a lot with pkgconfig, so we need to dep on it - - 04 Dec 2006; Caleb Tennis <caleb@gentoo.org> qt-4.2.2.ebuild: - make the qt3 use flag into qt3support (for qt4 only) - - 04 Dec 2006; Caleb Tennis <caleb@gentoo.org> qt-4.2.2.ebuild: - Fix up sqlite and sqlite3 use flags to pull in proper dependencies and use - proper config options to build proper plugins (from bug #156123) - - 04 Dec 2006; Caleb Tennis <caleb@gentoo.org> -qt-3.3.6-r1.ebuild, - -qt-3.3.6-r2.ebuild, -qt-3.3.6-r3.ebuild: - remove some stale versions - -*qt-4.2.2 (04 Dec 2006) - - 04 Dec 2006; Caleb Tennis <caleb@gentoo.org> +qt-4.2.2.ebuild: - Adding new 4.2.2 version - - 29 Nov 2006; Bryan Østergaard <kloeri@gentoo.org> qt-4.1.4-r2.ebuild: - Stable on Alpha. - - 25 Nov 2006; Bryan Østergaard <kloeri@gentoo.org> qt-4.1.4-r2.ebuild, - qt-4.2.1-r1.ebuild: - Add ~alpha and ~ia64 keywords. - - 25 Nov 2006; Diego Pettenò <flameeyes@gentoo.org> files/digest-qt-4.2.1, - files/digest-qt-4.2.1-r1, Manifest: - Fix digests (hopefully). - - 24 Nov 2006; Diego Pettenò <flameeyes@gentoo.org> qt-3.3.6-r5.ebuild: - Fix keywording. - -*qt-3.3.6-r5 (24 Nov 2006) - - 24 Nov 2006; Diego Pettenò <flameeyes@gentoo.org> - +files/qt-3.3.6-seli-xinerama.patch, +qt-3.3.6-r5.ebuild: - Add a patch to improve xinerama support, by Lubos Lunak. - - 23 Nov 2006; Francesco Riosa <vivo@gentoo.org> qt-3.3.4-r8.ebuild, - qt-3.3.6-r1.ebuild, qt-3.3.6-r2.ebuild, qt-3.3.6-r3.ebuild, - qt-3.3.6-r4.ebuild, qt-4.1.4-r2.ebuild, qt-4.2.1.ebuild, - qt-4.2.1-r1.ebuild: - dev-db/mysql => virtual/mysql - - 10 Nov 2006; Caleb Tennis <caleb@gentoo.org> qt-4.1.4-r2.ebuild, - qt-4.2.1.ebuild, qt-4.2.1-r1.ebuild: - Qt4 is GPL-2 only, not QPL (as far as I can tell), so remove that from the - license option - -*qt-4.2.1-r1 (09 Nov 2006) - - 09 Nov 2006; Caleb Tennis <caleb@gentoo.org> +qt-4.2.1-r1.ebuild: - Readding a masked 4.2.1 version that support dbus, since it will be unmasked - somewhat soon - - 07 Nov 2006; Caleb Tennis <caleb@gentoo.org> qt-4.2.1.ebuild: - Fix pkgconfig files - - 06 Nov 2006; Caleb Tennis <caleb@gentoo.org> qt-4.2.1.ebuild: - update the check for the qt4 bindings based on comments from bug #150888 - - 06 Nov 2006; Alexander H. Færøy <eroyf@gentoo.org> qt-3.3.6-r4.ebuild: - Stable on Alpha. Bug #151838 - - 03 Nov 2006; Caleb Tennis <caleb@gentoo.org> qt-4.2.1.ebuild: - Add a dbus build error for people who have the qt4 bindings already on their - system - - 02 Nov 2006; Caleb Tennis <caleb@gentoo.org> qt-4.2.1.ebuild: - removing dbus flag from Qt until the dbus herd unmasks it - - 30 Oct 2006; Caleb Tennis <caleb@gentoo.org> qt-4.2.1.ebuild: - dbus-core -> dbus - - 30 Oct 2006; Caleb Tennis <caleb@gentoo.org> qt-3.3.6-r4.ebuild: - Fix icc detection per bug #152366 - - 30 Oct 2006; Caleb Tennis <caleb@gentoo.org> qt-4.1.4-r2.ebuild, - qt-4.2.1.ebuild: - Fix icc compiler detection per bug #152385 and add checking into the 4.2 - series that is in the 4.1 series - - 30 Oct 2006; Caleb Tennis <caleb@gentoo.org> -qt-4.0.1.ebuild: - Remove 4.0 series that was put back for sparc reasons. Now have a 4.1 stable - -*qt-4.2.1 (30 Oct 2006) - - 30 Oct 2006; Caleb Tennis <caleb@gentoo.org> - -files/qt-4.2.0-CVE-2006-4811-bis.patch, - -files/qt-4.2.0-CVE-2006-4811.patch, -qt-4.2.0.ebuild, - -qt-4.2.0-r1.ebuild, -qt-4.2.0-r2.ebuild, +qt-4.2.1.ebuild: - Bump to qt-4.2.1 which has the security fixes as 4.2.0-r2, and fixes the - dbus dep - - 29 Oct 2006; Bryan Østergaard <kloeri@gentoo.org> qt-3.3.6-r4.ebuild, - qt-4.1.4-r2.ebuild: - Stable on ia64, bug 151838. - - 27 Oct 2006; René Nussbaumer <killerfox@gentoo.org> qt-3.3.6-r4.ebuild, - qt-4.1.4-r2.ebuild: - Stable on hppa. See bug #151838. - - 25 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> files/digest-qt-4.1.4, - files/digest-qt-4.1.4-r1, files/digest-qt-4.1.4-r2, Manifest: - Fix digest, close bug #149809. - - 24 Oct 2006; Tobias Scherbaum <dertobi123@gentoo.org> qt-3.3.6-r4.ebuild, - qt-4.1.4-r2.ebuild: - ppc stable, bug #151838 - - 24 Oct 2006; Simon Stelling <blubb@gentoo.org> qt-3.3.6-r4.ebuild, - qt-4.1.4-r2.ebuild: - stable on amd64 wrt bug 151838 - - 24 Oct 2006; Joshua Jackson <tsunam@gentoo.org> qt-3.3.6-r4.ebuild, - qt-4.1.4-r2.ebuild: - Stable x86; security bug #151838 - - 23 Oct 2006; Gustavo Zacarias <gustavoz@gentoo.org> qt-3.3.6-r4.ebuild, - qt-4.1.4-r2.ebuild: - Stable on sparc wrt security #151838 - - 22 Oct 2006; Markus Rothe <corsair@gentoo.org> qt-3.3.6-r4.ebuild, - qt-4.1.4-r2.ebuild: - Stable on ppc64; bug #151838 - - 20 Oct 2006; <nixnut@gentoo.org> qt-4.2.0-r1.ebuild, qt-4.2.0-r2.ebuild: - Added ~ppc wrt bug 150888 - - 20 Oct 2006; Marcus D. Hanwell <cryos@gentoo.org> qt-4.2.0.ebuild, - qt-4.2.0-r1.ebuild, qt-4.2.0-r2.ebuild: - Marked ~amd64, bug 150888. - -*qt-4.2.0-r2 (20 Oct 2006) -*qt-4.1.4-r2 (20 Oct 2006) -*qt-3.3.6-r4 (20 Oct 2006) - - 20 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> - +files/qt-3.3.6-CVE-2006-4811-bis.patch, - +files/qt-4.1.4-CVE-2006-4811-bis.patch, - +files/qt-4.2.0-CVE-2006-4811-bis.patch, +qt-3.3.6-r4.ebuild, - +qt-4.1.4-r2.ebuild, +qt-4.2.0-r2.ebuild: - Add new version of the patches for CVE-2006-4811 directly from Trolltech, - hopefully fixing the problems for good. - - 20 Oct 2006; Bryan Østergaard <kloeri@gentoo.org> qt-3.3.6-r3.ebuild: - Stable on Alpha, bug 151838. - - 20 Oct 2006; Joshua Jackson <tsunam@gentoo.org> qt-4.2.0.ebuild, - qt-4.2.0-r1.ebuild: - Adding ~x86; bug #150888 - - 19 Oct 2006; Aron Griffis <agriffis@gentoo.org> qt-3.3.6-r3.ebuild, - qt-4.1.4-r1.ebuild: - Mark 4.1.4-r1 3.3.6-r3 stable on ia64. #151838 - -*qt-4.2.0-r1 (19 Oct 2006) -*qt-4.1.4-r1 (19 Oct 2006) - - 19 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> - +files/qt-4.1.4-CVE-2006-4811.patch, +files/qt-4.2.0-CVE-2006-4811.patch, - +qt-4.1.4-r1.ebuild, +qt-4.2.0-r1.ebuild: - Add patches for Qt 4.x for the vulnerability reported lately. - - 19 Oct 2006; Joshua Jackson <tsunam@gentoo.org> qt-3.3.6-r3.ebuild: - Stable x86; Diego told me to do it, but I choose security as the reason - - 18 Oct 2006; Markus Rothe <corsair@gentoo.org> qt-3.3.6-r3.ebuild: - Stable on ppc64; bug #151838 - - 17 Oct 2006; Gustavo Zacarias <gustavoz@gentoo.org> qt-4.2.0.ebuild: - Fixed up and keyworded ~sparc wrt #150888 - -*qt-3.3.6-r3 (18 Oct 2006) - - 18 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> - +files/qt-3.3.6-CVE-2006-4811.patch, +qt-3.3.6-r3.ebuild: - Add patch from RedHat to try fixing security bug #151838. - - 15 Oct 2006; Bryan Østergaard <kloeri@gentoo.org> qt-3.3.6-r1.ebuild: - Stable on ia64, bug 132887. - - 11 Oct 2006; Markus Rothe <corsair@gentoo.org> qt-4.2.0.ebuild: - Added ~ppc64; bug #150888 - - 10 Oct 2006; Gustavo Zacarias <gustavoz@gentoo.org> qt-4.1.4.ebuild: - Stable on sparc wrt #134341 - - 06 Oct 2006; Caleb Tennis <caleb@gentoo.org> - qt-3.3.6-r2.ebuild, qt-4.2.0.ebuild: - Set minimum mng version to 1.0.9, per bug #148687 - - 05 Oct 2006; Caleb Tennis <caleb@gentoo.org> -qt-4.2.0_rc1.ebuild: - remove _rc1 - -*qt-4.2.0 (04 Oct 2006) - - 04 Oct 2006; Caleb Tennis <caleb@gentoo.org> +qt-4.2.0.ebuild: - Version bump - - 29 Sep 2006; Caleb Tennis <caleb@gentoo.org> +files/qt-4.1.4-sparc.patch, - qt-4.1.4.ebuild: - Add a patch which detects Sparc for Linux, from bug #134341 - -*qt-4.0.1 (22 Sep 2006) - - 22 Sep 2006; Caleb Tennis <caleb@gentoo.org> qt-3.3.6-r1.ebuild, - qt-3.3.6-r2.ebuild, +qt-4.0.1.ebuild: - Readding 4.0.1 so sparc will be happy :) - - 22 Sep 2006; Caleb Tennis <caleb@gentoo.org> qt-3.3.6-r1.ebuild, - qt-3.3.6-r2.ebuild: - Fix icc compiler, bug #148211 - -*qt-3.3.6-r2 (20 Sep 2006) - - 20 Sep 2006; Diego Pettenò <flameeyes@gentoo.org> +qt-3.3.6-r2.ebuild: - Revision bump so that the pkg-config change is applied to everyone. - - 14 Sep 2006; Caleb Tennis <caleb@gentoo.org> qt-3.3.4-r8.ebuild: - Changing 3.3.4 dep to freetype-2.1* because it doesn't work with freetype - 2.2 (per bug #145641) and the patch is way too big for me to comfortably - introduce here. - - 14 Sep 2006; Caleb Tennis <caleb@gentoo.org> - -files/qt-4.1.3-mysql4-support.diff, -qt-4.1.2.ebuild, -qt-4.1.3.ebuild: - Remove stale ebuilds - - 14 Sep 2006; Caleb Tennis <caleb@gentoo.org> qt-4.1.4.ebuild, - qt-4.2.0_rc1.ebuild: - Remove monolithic qt deps from 4.1.4 and 4.2.0; must use modular from now on - - 07 Sep 2006; Diego Pettenò <flameeyes@gentoo.org> qt-4.1.4.ebuild: - Add support again for different mkspecs and add ~x86-fbsd keyword to version - 4.1.4. - -*qt-4.2.0_rc1 (06 Sep 2006) - - 06 Sep 2006; Caleb Tennis <caleb@gentoo.org> -qt-4.2.0_pre1.ebuild, - +qt-4.2.0_rc1.ebuild: - add in 4.2.0_rc1, remove 4.2.0_pre1 - - 02 Sep 2006; Bryan Østergaard <kloeri@gentoo.org> qt-4.1.4.ebuild: - Stable on ia64. - - 23 Aug 2006; Caleb Tennis <caleb@gentoo.org> qt-3.3.6-r1.ebuild: - Add PKG_CONFIG_PATH to the environment of Qt so the pkgconfig files are - properly found, per bug #144140 - - 19 Aug 2006; Tobias Scherbaum <dertobi123@gentoo.org> qt-4.1.4.ebuild: - ppc stable, bug #134341 - - 19 Aug 2006; Jeroen Roovers <jer@gentoo.org> qt-4.1.4.ebuild: - Stable for HPPA (bug #134341). - - 14 Aug 2006; Jeroen Roovers <jer@gentoo.org> files/qt4-parisc-linux.diff, - qt-4.1.3.ebuild, qt-4.1.4.ebuild: - Fixed HPPA patching. - - 11 Aug 2006; Markus Rothe <corsair@gentoo.org> qt-4.1.4.ebuild: - Stable on ppc64; bug #134341 - - 08 Aug 2006; Simon Stelling <blubb@gentoo.org> qt-4.1.4.ebuild: - stable on amd64 - - 07 Aug 2006; Andrej Kacian <ticho@gentoo.org> qt-4.1.4.ebuild, - qt-4.2.0_pre1.ebuild: - Stable on x86. Bug #134341. Fix leading spaces in the 4.2.0_pre1 ebuild. - - 31 Jul 2006; Caleb Tennis <caleb@gentoo.org> qt-4.2.0_pre1.ebuild: - Add pch support for qt-4.2 - - 28 Jul 2006; Caleb Tennis <caleb@gentoo.org> qt-4.1.4.ebuild, - qt-4.2.0_pre1.ebuild: - Install the translations - - 28 Jul 2006; Caleb Tennis <caleb@gentoo.org> -qt-3.3.4-r9.ebuild, - -qt-3.3.6.ebuild, -qt-4.1.1.ebuild: - Remove a few old stale versions - - 11 Jul 2006; Caleb Tennis <caleb@gentoo.org> qt-4.2.0_pre1.ebuild: - require a specific version of dbus - - 09 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> qt-3.3.4-r8.ebuild, - qt-3.3.4-r9.ebuild, qt-3.3.6.ebuild, qt-3.3.6-r1.ebuild, qt-4.1.1.ebuild, - qt-4.1.2.ebuild, qt-4.1.3.ebuild, qt-4.1.4.ebuild, qt-4.2.0_pre1.ebuild: - Pinpoint virtual/x11 version to less than 7. - - 05 Jul 2006; Michael Sterrett <mr_bones_@gentoo.org> qt-4.2.0_pre1.ebuild: - typo: sys-libs/glib -> dev-libs/glib - -*qt-4.2.0_pre1 (30 Jun 2006) - - 30 Jun 2006; Caleb Tennis <caleb@gentoo.org> +qt-4.2.0_pre1.ebuild: - New technology preview. Keyworded -* until it has a bit more testing and the - ebuild gets happier - -*qt-4.1.4 (22 Jun 2006) - - 22 Jun 2006; Caleb Tennis <caleb@gentoo.org> +qt-4.1.4.ebuild: - Qt 4.1.4 - - 03 Jun 2006; Guy Martin <gmsoft@gentoo.org> qt-4.1.3.ebuild: - Stable on hppa. - - 02 Jun 2006; Guy Martin <gmsoft@gentoo.org> +files/qt4-parisc-linux.diff, - qt-4.1.3.ebuild: - Fixed parisc asm to build on linux. - - 30 May 2006; Caleb Tennis <caleb@gentoo.org> qt-4.1.3.ebuild: - Don't warn about nodoc anymore - - 30 May 2006; Joseph Jezak <josejx@gentoo.org> qt-4.1.2.ebuild: - Marked ppc stable for bug #134341. - - 28 May 2006; Mark Loeser <halcy0n@gentoo.org> Manifest: - Fix digest - - 28 May 2006; Carsten Lohrke <carlo@gentoo.org> - +files/qt-4.1.3-mysql4-support.diff, qt-4.1.3.ebuild: - Build against MySQL 4.0. - - 26 May 2006; Chris Gianelloni <wolf31o2@gentoo.org> qt-3.3.6-r1.ebuild: - Stable on amd64 wrt bug #132887. - - 26 May 2006; Chris Gianelloni <wolf31o2@gentoo.org> qt-4.1.2.ebuild: - Stable on amd64 wrt bug #132349 - - 25 May 2006; Guy Martin <gmsoft@gentoo.org> qt-3.3.6-r1.ebuild: - Stable on hppa. - - 25 May 2006; Chris Gianelloni <wolf31o2@gentoo.org> qt-4.1.2.ebuild: - Stable on x86 wrt bug #132349. - -*qt-4.1.3 (25 May 2006) - - 25 May 2006; Caleb Tennis <caleb@gentoo.org> +qt-4.1.3.ebuild: - Bump for a new version - - 24 May 2006; Diego Pettenò <flameeyes@gentoo.org> ChangeLog: - Force digest regen. - - 24 May 2006; Diego Pettenò <flameeyes@gentoo.org> - +files/qt-3.3.6-visibility.patch, qt-3.3.6-r1.ebuild: - Add visibility patch to enable KDE hidden visibility. Enable only in - presence of GCC 4.1 or later, so that we play it safe. No visibility flags - are enabled or it would break Qt! - - 23 May 2006; Markus Rothe <corsair@gentoo.org> qt-4.1.2.ebuild: - Stable on ppc64; bug #132349 - - 12 May 2006; Thomas Cort <tcort@gentoo.org> qt-3.3.6-r1.ebuild: - Stable on alpha wrt Bug #132887. - - 12 May 2006; Chris Gianelloni <wolf31o2@gentoo.org> qt-3.3.6-r1.ebuild: - Stable on x86 wrt bug #132887. - - 12 May 2006; Luca Barbato <lu_zero@gentoo.org> qt-3.3.6-r1.ebuild: - Marked ppc - - 12 May 2006; Jason Wever <weeve@gentoo.org> qt-3.3.6-r1.ebuild: - Stable on SPARC wrt bug #132887. - - 11 May 2006; Markus Rothe <corsair@gentoo.org> qt-3.3.6-r1.ebuild: - Stable on ppc64; bug #132887 - - 05 May 2006; Diego Pettenò <flameeyes@gentoo.org> qt-3.3.6-r1.ebuild: - Make use the proper gcc/g++ executables so that it can be crosscompiled with - distcc. - - 05 May 2006; Caleb Tennis <caleb@gentoo.org> qt-4.1.2.ebuild: - Change qt's DATADIR back to /usr/share/qt4, and leave DOCDIR as - /usr/share/doc/qt-4.x.x. The reasoning is that we need a defined places to - keep the mkspecs files that doesn't change with each new emerge - -*qt-3.3.6-r1 (05 May 2006) - - 05 May 2006; Caleb Tennis <caleb@gentoo.org> - +files/0044-qscrollview-windowactivate-fix.diff, - +files/0047-fix-kmenu-widget.diff, - +files/0048-qclipboard_hack_80072.patch, +qt-3.3.6-r1.ebuild: - Fix some patches that were dropped when moving to 3.3.6. This should make a - lot of people happy - - 05 May 2006; Caleb Tennis <caleb@gentoo.org> qt-3.3.6.ebuild: - Add nis support, from bug #131303 - - 28 Apr 2006; Alec Warner <antarus@gentoo.org> files/digest-qt-4.1.1, - Manifest: - Fixing SHA256 digest, pass four - - 19 Apr 2006; Caleb Tennis <caleb@gentoo.org> qt-4.1.2.ebuild: - Add a die to the ebuild if using nodoc feature - - 13 Apr 2006; Caleb Tennis <caleb@gentoo.org> qt-3.3.6.ebuild: - Fix CHOST naming scheme from bug #128528 - - 11 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> qt-3.3.4-r8.ebuild, - qt-3.3.4-r9.ebuild, qt-3.3.6.ebuild: - Replace dolib with dolib.so to ensure executable bit is set. - - 07 Apr 2006; Caleb Tennis <caleb@gentoo.org> - -files/qt-3.3.5-uic-fix.patch, -qt-3.3.5.ebuild, -qt-3.3.5-r1.ebuild: - remove some more older versions - - 06 Apr 2006; Caleb Tennis <caleb@gentoo.org> qt-4.1.2.ebuild: - remove implicit PATH and ROOTPATH from env.d file per bug #128655 - - 06 Apr 2006; Caleb Tennis <caleb@gentoo.org> - -files/qt-4.1.0-configure-no-mysql.diff, - -files/qt-4.1.0-debug-and-release.diff, -qt-4.1.0-r1.ebuild, - -qt-4.1.0-r2.ebuild: - remove stale versions - - 01 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> qt-3.3.6.ebuild: - Add ~x86-fbsd keyword. - -*qt-4.1.2 (30 Mar 2006) - - 30 Mar 2006; Caleb Tennis <caleb@gentoo.org> +qt-4.1.2.ebuild: - version bump - - 18 Mar 2006; Mike Frysinger <vapier@gentoo.org> qt-3.3.6.ebuild: - Fix typo (pv -> PV) for libqt-mt.so symlink. - - 17 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> qt-3.3.6.ebuild: - Fix installation of libraries (3.3.5 -> ${PV}). Forward port immodule patch - to Qt 3.3.6. - - 17 Mar 2006; Fabian Groffen <grobian@gentoo.org> qt-3.3.6.ebuild: - Marked ~ppc-macos, used old 3.3.5 patch to get it compiling (bug #126553) - -*qt-3.3.6 (17 Mar 2006) - - 17 Mar 2006; Caleb Tennis <caleb@gentoo.org> - +files/qt-3.3.6-uic-fix.patch, +qt-3.3.6.ebuild: - Adding Qt 3.3.6 - -*qt-3.3.5-r1 (09 Mar 2006) -*qt-3.3.4-r9 (09 Mar 2006) - - 09 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> - +files/qt-3.3.5-immodule.patch, +qt-3.3.4-r9.ebuild, +qt-3.3.5-r1.ebuild: - Add patch for Qt's immodule, bug #124033. Thanks to Martin Meredith - <mez@ubuntu.com> for reporting. - - 09 Mar 2006; Aron Griffis <agriffis@gentoo.org> qt-4.1.1.ebuild: - Mark 4.1.1 ~ia64 - - 23 Feb 2006; Caleb Tennis <caleb@gentoo.org> qt-3.3.4-r8.ebuild, - qt-3.3.5.ebuild: - Add QTBASE dir to revdep-rebuild search paths so plugins (like mysql) get - picked up - - 22 Feb 2006; Caleb Tennis <caleb@gentoo.org> -qt-4.0.1.ebuild, - -qt-4.1.0.ebuild: - remove old versions - -*qt-4.1.1 (22 Feb 2006) - - 22 Feb 2006; Caleb Tennis <caleb@gentoo.org> +qt-4.1.1.ebuild: - Version bump - - 08 Feb 2006; Diego Pettenò <flameeyes@gentoo.org> qt-3.3.5.ebuild: - Append -fno-strict-aliasing as it dereferences type punned pointers (better - be safe). - - 19 Jan 2006; Caleb Tennis <caleb@gentoo.org> +files/qt-ulibc.patch, - qt-3.3.4-r8.ebuild, qt-3.3.5.ebuild: - Add a uclibc patch to allow Qt to compile with ulibc (bug #100246) - - 18 Jan 2006; Joseph Jezak <josejx@gentoo.org> qt-4.1.0-r2.ebuild: - Marked ~ppc for bug #112811. - - 14 Jan 2006; Fabian Groffen <grobian@gentoo.org> qt-3.3.4-r8.ebuild: - Marked ppc-macos stable - - 13 Jan 2006; Caleb Tennis <caleb@gentoo.org> qt-3.3.4-r8.ebuild, - qt-3.3.5.ebuild, qt-4.0.1.ebuild, qt-4.1.0-r2.ebuild: - Add x11-libs/libSM as a modular X dep per bug #118420 - -*qt-4.1.0-r2 (13 Jan 2006) - - 13 Jan 2006; Caleb Tennis <caleb@gentoo.org> +qt-4.1.0-r2.ebuild: - Due to the requirement of private headers, QtTestlib is unusable without - this fix (fixed in Qt 4.1.1, I'm told) - - 11 Jan 2006; Jason Wever <weeve@gentoo.org> qt-4.1.0-r1.ebuild: - Added ~sparc keyword wrt bug #112811. - - 04 Jan 2006; Luis Medinas <metalgod@gentoo.org> qt-4.1.0-r1.ebuild: - Added ~amd64 keyword. For bug #112811. - - 04 Jan 2006; Markus Rothe <corsair@gentoo.org> qt-4.1.0-r1.ebuild: - Added ~ppc64; bug #112811 - - 04 Jan 2006; Caleb Tennis <caleb@gentoo.org> qt-4.1.0-r1.ebuild: - bump to ~x86 - -*qt-4.1.0-r1 (04 Jan 2006) - - 04 Jan 2006; Caleb Tennis <caleb@gentoo.org> +qt-4.1.0-r1.ebuild: - Revbump to change prefix to /usr, fixes pkgconfig files - - 03 Jan 2006; Caleb Tennis <caleb@gentoo.org> - +files/qt-4.1.0-debug-and-release.diff, qt-3.3.4-r8.ebuild, - qt-3.3.5.ebuild, qt-4.1.0.ebuild: - Add a patch which fixes qt build in -debug-and-release mode, from Trolltech - (bug #117127) - - 03 Jan 2006; Caleb Tennis <caleb@gentoo.org> qt-3.3.4-r8.ebuild, - qt-3.3.5.ebuild: - build qembed tool by default - - 20 Dec 2005; Caleb Tennis <caleb@gentoo.org> qt-4.1.0.ebuild: - Remove QtAssistant manual installation (it looks to me like it's handled - now), and move the pkg-config files into /usr/_libdir_/pkgconfig - -*qt-4.1.0 (20 Dec 2005) - - 20 Dec 2005; Caleb Tennis <caleb@gentoo.org> +qt-4.1.0.ebuild: - Bump from _rc1 - - 16 Dec 2005; Diego Pettenò <flameeyes@gentoo.org> qt-3.3.5.ebuild: - Use ${CHOST} selection instead of checking for kernel/elibc pairs. Added - support for DragonFly, OpenBSD and NetBSD. - - 14 Dec 2005; Donnie Berkholz <spyderous@gentoo.org>; qt-3.3.4-r8.ebuild, - qt-3.3.5.ebuild, qt-4.0.1.ebuild, qt-4.1.0_rc1.ebuild: - Add modular X dependencies to qt-3. Remove redundant modular deps from qt-4. - - 13 Dec 2005; Donnie Berkholz <spyderous@gentoo.org>; qt-4.0.1.ebuild, - qt-4.1.0_rc1.ebuild: - Clean up xinerama modular deps, based on how enlightenment did it. - - 13 Dec 2005; Donnie Berkholz <spyderous@gentoo.org>; qt-4.0.1.ebuild, - qt-4.1.0_rc1.ebuild: - Fix modular X xinerama. - - 11 Dec 2005; Donnie Berkholz <spyderous@gentoo.org>; qt-4.0.1.ebuild, - qt-4.1.0_rc1.ebuild: - Add modular X dependencies. - - 08 Dec 2005; Caleb Tennis <caleb@gentoo.org> qt-4.1.0_rc1.ebuild: - Add a sed statement to make Qt use /usr/XXX instead of /usr/X11R6/XXX - - 04 Dec 2005; Mamoru KOMACHI <usata@gentoo.org> qt-3.3.5.ebuild: - Updated immodule patch. This closes bug #106386. - - 28 Nov 2005; Caleb Tennis <caleb@gentoo.org> - +files/qt-4.1.0-configure-no-mysql.diff, qt-4.1.0_rc1.ebuild: - add a patch from Trolltech to fix mysql compilation support - -*qt-4.1.0_rc1 (21 Nov 2005) - - 21 Nov 2005; Caleb Tennis <caleb@gentoo.org> -qt-4.1.0_pre20051028.ebuild, - +qt-4.1.0_rc1.ebuild: - Bumping up to _rc1, removing snapshot - - 20 Nov 2005; Herbie Hopkins <herbs@gentoo.org> qt-4.0.1.ebuild, - qt-4.1.0_pre20051028.ebuild: - Small multilib fix - - 19 Nov 2005; Joseph Jezak <josejx@gentoo.org> qt-4.0.1.ebuild: - Marked ~ppc for bug #112811. - - 19 Nov 2005; Markus Rothe <corsair@gentoo.org> qt-4.0.1.ebuild: - Added ~ppc64 - - 19 Nov 2005; Jason Wever <weeve@gentoo.org> qt-4.0.1.ebuild: - Added ~sparc keyword wrt bug #112811. - - 18 Nov 2005; Marcus D. Hanwell <cryos@gentoo.org> qt-4.0.1.ebuild: - Marked ~amd64, bug 112811. - - 17 Nov 2005; Caleb Tennis <caleb@gentoo.org> qt-4.0.1.ebuild: - Moving to ~x86 - -*qt-4.1.0_pre20051028 (28 Oct 2005) - - 28 Oct 2005; Caleb Tennis <caleb@gentoo.org> +qt-4.1.0_pre20051028.ebuild: - Adding a 4.1.0 snapshot to track its progress upstream - - 09 Oct 2005; <gongloo@gentoo.org> +files/qt-3.3.5-macos.patch, - qt-3.3.5.ebuild: - macos patch fixes for qt-3.3.5 - - 02 Oct 2005; Aron Griffis <agriffis@gentoo.org> qt-3.3.4-r8.ebuild: - Mark 3.3.4-r8 stable on ia64 - - 29 Sep 2005; Hardave Riar <hardave@gentoo.org> qt-3.3.4-r8.ebuild: - Stable on mips, bug #105695. - - 22 Sep 2005; Mark Loeser <halcy0n@gentoo.org> qt-3.3.4-r8.ebuild: - Stable on x86; bug #105695 - - 21 Sep 2005; Fernando J. Pereda <ferdy@gentoo.org> qt-3.3.4-r8.ebuild: - stable on alpha wrt bug #105695 - - 20 Sep 2005; Marcus D. Hanwell <cryos@gentoo.org> qt-3.3.4-r8.ebuild: - Stable on amd64, bug 105695. - - 20 Sep 2005; Michael Hanselmann <hansmi@gentoo.org> qt-3.3.4-r8.ebuild: - Stable on hppa, ppc. - - 20 Sep 2005; Gustavo Zacarias <gustavoz@gentoo.org> qt-3.3.4-r8.ebuild: - Stable on sparc wrt #105695 - - 20 Sep 2005; Markus Rothe <corsair@gentoo.org> qt-3.3.4-r8.ebuild: - Stable on ppc64 (bug #105695) - -*qt-3.3.4-r8 (19 Sep 2005) - - 19 Sep 2005; Caleb Tennis <caleb@gentoo.org> +qt-3.3.4-r8.ebuild, - qt-4.0.1.ebuild: - Adding 3.3.4-r8 which is the same as -r7 except we force the build to use - the system zlib instead of allowing the option via the use flag, as this - gets us past the zlib error, which is fixed in 3.3.5 but which isn't ready - to go stable yet (see bug #105695) - -*qt-3.3.5 (17 Sep 2005) - - 17 Sep 2005; Caleb Tennis <caleb@gentoo.org> - +files/qt-3.3.5-uic-fix.patch, +qt-3.3.5.ebuild: - Version bump to 3.3.5 - - 17 Sep 2005; Aron Griffis <agriffis@gentoo.org> qt-3.3.4-r3.ebuild: - Mark 3.3.4-r3 stable on alpha - - 02 Sep 2005; <gongloo@gentoo.org> files/qt-3.3.4-macos.patch: - Fix for Mac OS X library install names. Libraries now reference each other - in /usr/qt/3/lib. Thanks j4rg0n for catching where the error was. - diff --git a/x11-libs/qt/Manifest b/x11-libs/qt/Manifest deleted file mode 100644 index d32e109..0000000 --- a/x11-libs/qt/Manifest +++ /dev/null @@ -1,22 +0,0 @@ -AUX 0001-dnd_optimization.patch 5623 RMD160 b62b5868086b4d352be66989cc23cd3bb963e283 SHA1 4f3416c3a7e44d52c1088c52256decb384e4b1bc SHA256 8e138a2fdd053ec81522df19ce30f7e4c05838dfd8e0c8069ffb793ba45d7439 -AUX 0002-dnd_active_window_fix.patch 7289 RMD160 b355f5fd028d35d88ca15bf9ce8da41bd365f12d SHA1 5b16995f072cbde80f000967aa11d8a88ed34e23 SHA256 e36383b43a53b815f3958608275c60299a0638b6b3201c3a3d9318ee2ead26d1 -AUX 0038-dragobject-dont-prefer-unknown.patch 2551 RMD160 0a89aec1a6f9672a927029ca01a1bd8573552745 SHA1 3a2371a520d800904350bb9e6e445d6b3092bb88 SHA256 b5c0d00d1ac84302bc2123ccdfdab473cd0daf12f4ba70d6318084d9f744242c -AUX 0044-qscrollview-windowactivate-fix.diff 1584 RMD160 978cc6c473b668e1bfd5969cce9307719baecf0a SHA1 657ff8ab47aafbd6469688f489fd3788ccb98907 SHA256 f73798b72251d6fe97ed8e661719ba29983c087587ed952618ec4a97bf1816d5 -AUX 0047-fix-kmenu-widget.diff 992 RMD160 bada5e23043d314b15f3af1eda70c8833112ebce SHA1 d67e34b540c2f19e7e3e3715535a6732f447b22c SHA256 0dadffc3218b04eb327baf51c1f681843046cdf07a52b943f46373cd8384c275 -AUX 0048-qclipboard_hack_80072.patch 1662 RMD160 ebfba0d27c03dcceeac7ad64650d5f6d7039ecdb SHA1 5c174acaf3b148f8d70345f68c7f22352450d582 SHA256 e47a1af0272e952cefacd30d466861b40d9bc969f6e5bc5cb32b878140af1d3c -AUX qt-3.3.8-fix-compiler-detection.patch 637 RMD160 08b7151a83031f0c268da2899d800742a5ed63cf SHA1 7c571a1c98bd29acf4e32fd15b1c9188b7d69bec SHA256 639cd7fb8548f67a51065efba8bb2deecd4778b451855bf28dac1bd9701cd9d5 -AUX qt-3.3.8-immqt+gcc-4.3.patch 756 RMD160 b4379b8c66b2708301f9883ecc1be55ae916a20f SHA1 179825f382fab2cadd097f7597292a69ef71d575 SHA256 d281c1e1f20cdc4f3351eede25287ba3b6bd80cbb0e6f5a9f997394521feb6bd -AUX qt-3.3.8-libpng14.patch 1680 RMD160 922a2ff3c98eb871e860ddd09b4ef2fe291f1687 SHA1 6532104043beef4ef57981dd1598aa0ffc0c2b73 SHA256 d4b63e1d2df1cf15e30f611fe04de1e1ad4ec48e2fce609f18797534f808da30 -AUX qt-3.3.8-mips.patch 1326 RMD160 0fd662a36c2fe0013e7204218ddfc8c604467269 SHA1 a8d1cf81f4b2c35c46b1d0efacd5e5ad7811ec49 SHA256 982a92c010df448cb83c2e6a8f46a4f8979d8b5708b2942485cca962621f0caf -AUX qt-3.3.8-seli-xinerama.patch 1960 RMD160 ce0163c9a47f5417f957e1d1ad0c574357c01cc7 SHA1 60b9c0a323d598aacca089d677c4b1c9709e70db SHA256 ec72679b69148af1b687a9cf7992e20ee85f4a0f3a33f3c05c8d2174f6f43503 -AUX qt-3.3.8-uic-fix.patch 711 RMD160 19964cfc6714e2ad38659e268ef248501db606aa SHA1 38bd5da513a2c28f3d941ba5644024643d835676 SHA256 e6a4e789c6c0da5542cad71057d1817e1976d005a52e1e4ef9bcf9914c37fcf3 -AUX qt-3.3.8-visibility.patch 5554 RMD160 db15a594a913fd1c1837a731e168b1197d19da62 SHA1 692ada218ed717b8b2fc5f5f67cf747bb50f59e4 SHA256 b33b2415f280ef25f070bbe7308659ee3e5a5c1999e2ef419271f11e59160407 -AUX qt-3.3.8b-cjk-fix.patch 1191 RMD160 62cc0a9db2ab42b9081967033ae75b0a0eed9e93 SHA1 24bf196b466f4b3956149b29830b158944b6a545 SHA256 94369e7cca8531ed89370480c2d5f3a0e99dbb49640df715ef33711b9d1cae4b -AUX qt-ulibc.patch 355 RMD160 9a7a01b248b7b646316cef550783569f8bdc89e2 SHA1 2f09deb7e354797ee72aa65a35c882a5ed5fd86c SHA256 6b57b1e25c1e2cebd51b8279fbcadb5e2d9bb77d19b10ea51a4f74c64bd65e2d -AUX qt-x11-immodule-unified-qt3.3.8-20070321-gentoo.diff.bz2 137387 RMD160 7f4f79c95faa2b8e71a78308af8feae5f6a6b06a SHA1 230cc532f1a3023967c5aee4cce87d1b9351b73d SHA256 06994304d2b7c699c4b6ea4183877652e261170f74282e89a3700ce6d4a98918 -DIST qt-x11-free-3.3.8b.tar.gz 17313883 RMD160 4e3cbd9c5d4719b5d33e961e6595d7b215788c8b SHA1 745def6250dc7f337dbb265e20bf38dcb41fd854 SHA256 1b7a1ff62ec5a9cb7a388e2ba28fda6f960b27f27999482ebeceeadb72ac9f6e -DIST qt-x11-immodule-unified-qt3.3.8-20070321-gentoo.diff.bz2 137387 RMD160 7f4f79c95faa2b8e71a78308af8feae5f6a6b06a SHA1 230cc532f1a3023967c5aee4cce87d1b9351b73d SHA256 06994304d2b7c699c4b6ea4183877652e261170f74282e89a3700ce6d4a98918 -EBUILD qt-3.3.8b-r1.ebuild 10838 RMD160 a9c0ded9c44f493a37f2433be024bd1ddb99e4d6 SHA1 945f2677c458d567ec859f9eb330fbaa0d70450a SHA256 28cfb44d27c0df0b5a4b02daaa05d30bb65a04fdad7ff8efd693adc8c1864dda -EBUILD qt-3.3.8b-r2.ebuild 10784 RMD160 5540e00d6df8f602cf8de1e62b1c7bdfa6d23816 SHA1 ff08537f28a253672c620972d6703446787f4132 SHA256 a91b12f3796a9d16d9e47c259c851149eb88058dd3ff97d5f586f73db783002f -MISC ChangeLog 48310 RMD160 2137250c8fda2fcb446d284cfb6bfef70389cf5c SHA1 f78bba26d4d3715f1f351d476f95a38304e9acbf SHA256 68d0c7f8e6758b746042f21eb44ad4b3eef96ac47b3ee240310edacabded90f8 -MISC metadata.xml 335 RMD160 76be6bdf3a132836b4cf22c0a8a45f29efe4af83 SHA1 5f6aa35732fc54d6b10f9dc113b07e26b0513159 SHA256 53934f5173007d42204665e1561d36656c6ecf587162b8eb4e289fcfa88c577a diff --git a/x11-libs/qt/files/0001-dnd_optimization.patch b/x11-libs/qt/files/0001-dnd_optimization.patch deleted file mode 100644 index d9de284..0000000 --- a/x11-libs/qt/files/0001-dnd_optimization.patch +++ /dev/null @@ -1,187 +0,0 @@ -qt-bugs@ issue : 16115 -applied: no -author: Lubos Lunak <l.lunak@kde.org> - -See http://lists.kde.org/?t=104388858900001&r=1&w=2 - - ---- src/kernel/qdnd_x11.cpp.sav 2003-02-05 16:09:45.000000000 +0100 -+++ src/kernel/qdnd_x11.cpp 2003-02-07 16:14:49.000000000 +0100 -@@ -49,13 +49,15 @@ - #include "qdragobject.h" - #include "qobjectlist.h" - #include "qcursor.h" -+#include "qbitmap.h" -+#include "qpainter.h" - - #include "qt_x11_p.h" - - // conflict resolution - --// unused, may be used again later: const int XKeyPress = KeyPress; --// unused, may be used again later: const int XKeyRelease = KeyRelease; -+const int XKeyPress = KeyPress; -+const int XKeyRelease = KeyRelease; - #undef KeyPress - #undef KeyRelease - -@@ -249,20 +251,47 @@ class QShapedPixmapWidget : public QWidg - public: - QShapedPixmapWidget(int screen = -1) : - QWidget(QApplication::desktop()->screen( screen ), -- 0, WStyle_Customize | WStyle_Tool | WStyle_NoBorder | WX11BypassWM ) -+ 0, WStyle_Customize | WStyle_Tool | WStyle_NoBorder | WX11BypassWM ), oldpmser( 0 ), oldbmser( 0 ) - { - } - -- void setPixmap(QPixmap pm) -+ void setPixmap(QPixmap pm, QPoint hot) - { -- if ( pm.mask() ) { -+ int bmser = pm.mask() ? pm.mask()->serialNumber() : 0; -+ if( oldpmser == pm.serialNumber() && oldbmser == bmser -+ && oldhot == hot ) -+ return; -+ oldpmser = pm.serialNumber(); -+ oldbmser = bmser; -+ oldhot = hot; -+ bool hotspot_in = !(hot.x() < 0 || hot.y() < 0 || hot.x() >= pm.width() || hot.y() >= pm.height()); -+// if the pixmap has hotspot in its area, make a "hole" in it at that position -+// this will allow XTranslateCoordinates() to find directly the window below the cursor instead -+// of finding this pixmap, and therefore there won't be needed any (slow) search for the window -+// using findRealWindow() -+ if( hotspot_in ) { -+ QBitmap mask = pm.mask() ? *pm.mask() : QBitmap( pm.width(), pm.height()); -+ if( !pm.mask()) -+ mask.fill( Qt::color1 ); -+ QPainter p( &mask ); -+ p.setPen( Qt::color0 ); -+ p.drawPoint( hot.x(), hot.y()); -+ p.end(); -+ pm.setMask( mask ); -+ setMask( mask ); -+ } else if ( pm.mask() ) { - setMask( *pm.mask() ); - } else { - clearMask(); - } - resize(pm.width(),pm.height()); - setErasePixmap(pm); -+ erase(); - } -+private: -+ int oldpmser; -+ int oldbmser; -+ QPoint oldhot; - }; - - QShapedPixmapWidget * qt_xdnd_deco = 0; -@@ -859,6 +888,45 @@ void QDragManager::timerEvent( QTimerEve - move( QCursor::pos() ); - } - -+static bool qt_xdnd_was_move = false; -+static bool qt_xdnd_found = false; -+// check whole incoming X queue for move events -+// checking whole queue is done by always returning False in the predicate -+// if there's another move event in the queue, and there's not a mouse button -+// or keyboard or ClientMessage event before it, the current move event -+// may be safely discarded -+// this helps avoiding being overloaded by being flooded from many events -+// from the XServer -+static -+Bool qt_xdnd_predicate( Display*, XEvent* ev, XPointer ) -+{ -+ if( qt_xdnd_found ) -+ return False; -+ if( ev->type == MotionNotify ) -+ { -+ qt_xdnd_was_move = true; -+ qt_xdnd_found = true; -+ } -+ if( ev->type == ButtonPress || ev->type == ButtonRelease -+ || ev->type == XKeyPress || ev->type == XKeyRelease -+ || ev->type == ClientMessage ) -+ { -+ qt_xdnd_was_move = false; -+ qt_xdnd_found = true; -+ } -+ return False; -+} -+ -+static -+bool qt_xdnd_another_movement() -+{ -+ qt_xdnd_was_move = false; -+ qt_xdnd_found = false; -+ XEvent dummy; -+ XCheckIfEvent( qt_xdisplay(), &dummy, qt_xdnd_predicate, NULL ); -+ return qt_xdnd_was_move; -+} -+ - bool QDragManager::eventFilter( QObject * o, QEvent * e) - { - if ( beingCancelled ) { -@@ -881,8 +949,10 @@ bool QDragManager::eventFilter( QObject - - if ( e->type() == QEvent::MouseMove ) { - QMouseEvent* me = (QMouseEvent *)e; -- updateMode(me->stateAfter()); -- move( me->globalPos() ); -+ if( !qt_xdnd_another_movement()) { -+ updateMode(me->stateAfter()); -+ move( me->globalPos() ); -+ } - return TRUE; - } else if ( e->type() == QEvent::MouseButtonRelease ) { - qApp->removeEventFilter( this ); -@@ -1106,7 +1176,7 @@ void QDragManager::move( const QPoint & - delete qt_xdnd_deco; - qt_xdnd_deco = new QShapedPixmapWidget( screen ); - } -- updatePixmap(); -+ updatePixmap( globalPos ); - - if ( qt_xdnd_source_sameanswer.contains( globalPos ) && - qt_xdnd_source_sameanswer.isValid() ) { -@@ -1679,7 +1749,7 @@ bool QDragManager::drag( QDragObject * o - // qt_xdnd_source_object persists until we get an xdnd_finish message - } - --void QDragManager::updatePixmap() -+void QDragManager::updatePixmap( const QPoint& cursorPos ) - { - if ( qt_xdnd_deco ) { - QPixmap pm; -@@ -1694,9 +1764,8 @@ void QDragManager::updatePixmap() - defaultPm = new QPixmap(default_pm); - pm = *defaultPm; - } -- qt_xdnd_deco->setPixmap(pm); -- qt_xdnd_deco->move(QCursor::pos()-pm_hot); -- qt_xdnd_deco->repaint(FALSE); -+ qt_xdnd_deco->setPixmap(pm, pm_hot); -+ qt_xdnd_deco->move(cursorPos-pm_hot); - //if ( willDrop ) { - qt_xdnd_deco->show(); - //} else { -@@ -1705,4 +1774,9 @@ void QDragManager::updatePixmap() - } - } - -+void QDragManager::updatePixmap() -+{ -+ updatePixmap( QCursor::pos()); -+} -+ - #endif // QT_NO_DRAGANDDROP ---- src/kernel/qdragobject.h.sav 2002-11-01 19:25:07.000000000 +0100 -+++ src/kernel/qdragobject.h 2001-01-01 01:01:00.000000000 +0100 -@@ -245,6 +245,7 @@ private: - void move( const QPoint & ); - void drop(); - void updatePixmap(); -+ void updatePixmap( const QPoint& cursorPos ); - - private: - QDragObject * object; diff --git a/x11-libs/qt/files/0002-dnd_active_window_fix.patch b/x11-libs/qt/files/0002-dnd_active_window_fix.patch deleted file mode 100644 index 4b497d6..0000000 --- a/x11-libs/qt/files/0002-dnd_active_window_fix.patch +++ /dev/null @@ -1,189 +0,0 @@ -qt-bugs@ issue : 25122 -applied: no -author: Lubos Lunak <l.lunak@kde.org> - - Hello, - - for example: Open Konqueror window, showing some files. Start dragging one - desktop icon. If you press/release Ctrl, there'll be a '+' attached to the - icon, showing the DND operation. Now, while still doing DND, make the - Konqueror window active (Alt+Tab with KDE-3.1.2+, hover over its taskbar - entry, Ctrl+Fn to switch to a different virtual desktop, etc.). As soon as - the app performing DND is not the active application, and the mouse is not - moving, pressing/releasing Ctrl doesn't do anything, the state only updates - when the mouse is moved. - - This is caused by the fact that Qt has only pointer grab when doing DND, but - doesn't have keyboard grab. I actually consider this a good thing, because - the only keys important for DND are modifiers, and they come together with - pointer events, and not having keyboard grab allows using keyboard shortcuts - like Alt+Tab while DND. However, when the mouse is not moved, and only a - modifier key is pressed/released, the app won't get any mouse event, and - won't also get the keyboard event. - - The attached patch changes Qt to explicitly check the modifiers state using - XQueryPointer() if there's wasn't recently any mouse/keyboard event, which - ensures the state is updated even in the situation described above. - ---- src/kernel/qapplication_x11.cpp.sav 2003-06-21 12:31:35.000000000 +0200 -+++ src/kernel/qapplication_x11.cpp 2003-06-21 12:35:44.000000000 +0200 -@@ -4053,7 +4053,7 @@ void QApplication::closePopup( QWidget * - // Keyboard event translation - // - --static int translateButtonState( int s ) -+int qt_x11_translateButtonState( int s ) - { - int bst = 0; - if ( s & Button1Mask ) -@@ -4119,7 +4119,7 @@ bool QETWidget::translateMouseEvent( con - pos.ry() = lastMotion.y; - globalPos.rx() = lastMotion.x_root; - globalPos.ry() = lastMotion.y_root; -- state = translateButtonState( lastMotion.state ); -+ state = qt_x11_translateButtonState( lastMotion.state ); - if ( qt_button_down && (state & (LeftButton | - MidButton | - RightButton ) ) == 0 ) -@@ -4143,7 +4143,7 @@ bool QETWidget::translateMouseEvent( con - pos.ry() = xevent->xcrossing.y; - globalPos.rx() = xevent->xcrossing.x_root; - globalPos.ry() = xevent->xcrossing.y_root; -- state = translateButtonState( xevent->xcrossing.state ); -+ state = qt_x11_translateButtonState( xevent->xcrossing.state ); - if ( qt_button_down && (state & (LeftButton | - MidButton | - RightButton ) ) == 0 ) -@@ -4155,7 +4155,7 @@ bool QETWidget::translateMouseEvent( con - pos.ry() = event->xbutton.y; - globalPos.rx() = event->xbutton.x_root; - globalPos.ry() = event->xbutton.y_root; -- state = translateButtonState( event->xbutton.state ); -+ state = qt_x11_translateButtonState( event->xbutton.state ); - switch ( event->xbutton.button ) { - case Button1: button = LeftButton; break; - case Button2: button = MidButton; break; -@@ -4950,7 +4950,7 @@ bool QETWidget::translateKeyEventInterna - XKeyEvent xkeyevent = event->xkey; - - // save the modifier state, we will use the keystate uint later by passing -- // it to translateButtonState -+ // it to qt_x11_translateButtonState - uint keystate = event->xkey.state; - // remove the modifiers where mode_switch exists... HPUX machines seem - // to have alt *AND* mode_switch both in Mod1Mask, which causes -@@ -5064,7 +5064,7 @@ bool QETWidget::translateKeyEventInterna - } - #endif // !QT_NO_XIM - -- state = translateButtonState( keystate ); -+ state = qt_x11_translateButtonState( keystate ); - - static int directionKeyEvent = 0; - if ( qt_use_rtl_extensions && type == QEvent::KeyRelease ) { ---- src/kernel/qdnd_x11.cpp.sav 2003-06-30 15:26:42.000000000 +0200 -+++ src/kernel/qdnd_x11.cpp 2003-06-30 15:32:23.000000000 +0200 -@@ -114,6 +114,8 @@ Atom qt_xdnd_finished; - Atom qt_xdnd_type_list; - const int qt_xdnd_version = 4; - -+extern int qt_x11_translateButtonState( int s ); -+ - // Actions - // - // The Xdnd spec allows for user-defined actions. This could be implemented -@@ -198,6 +200,8 @@ static Atom qt_xdnd_source_current_time; - static int qt_xdnd_current_screen = -1; - // state of dragging... true if dragging, false if not - bool qt_xdnd_dragging = FALSE; -+// need to check state of keyboard modifiers -+static bool need_modifiers_check = FALSE; - - // dict of payload data, sorted by type atom - static QIntDict<QByteArray> * qt_xdnd_target_data = 0; -@@ -879,8 +883,20 @@ void qt_handle_xdnd_finished( QWidget *, - - void QDragManager::timerEvent( QTimerEvent* e ) - { -- if ( e->timerId() == heartbeat && qt_xdnd_source_sameanswer.isNull() ) -- move( QCursor::pos() ); -+ if ( e->timerId() == heartbeat ) { -+ if( need_modifiers_check ) { -+ Window root, child; -+ int root_x, root_y, win_x, win_y; -+ unsigned int mask; -+ XQueryPointer( qt_xdisplay(), qt_xrootwin( qt_xdnd_current_screen ), -+ &root, &child, &root_x, &root_y, &win_x, &win_y, &mask ); -+ if( updateMode( (ButtonState)qt_x11_translateButtonState( mask ))) -+ qt_xdnd_source_sameanswer = QRect(); // force move -+ } -+ need_modifiers_check = TRUE; -+ if( qt_xdnd_source_sameanswer.isNull() ) -+ move( QCursor::pos() ); -+ } - } - - static bool qt_xdnd_was_move = false; -@@ -948,6 +964,7 @@ bool QDragManager::eventFilter( QObject - updateMode(me->stateAfter()); - move( me->globalPos() ); - } -+ need_modifiers_check = FALSE; - return TRUE; - } else if ( e->type() == QEvent::MouseButtonRelease ) { - qApp->removeEventFilter( this ); -@@ -986,9 +1003,11 @@ bool QDragManager::eventFilter( QObject - beingCancelled = FALSE; - qApp->exit_loop(); - } else { -- updateMode(ke->stateAfter()); -- qt_xdnd_source_sameanswer = QRect(); // force move -- move( QCursor::pos() ); -+ if( updateMode(ke->stateAfter())) { -+ qt_xdnd_source_sameanswer = QRect(); // force move -+ move( QCursor::pos() ); -+ } -+ need_modifiers_check = FALSE; - } - return TRUE; // Eat all key events - } -@@ -1014,10 +1033,10 @@ bool QDragManager::eventFilter( QObject - - - static Qt::ButtonState oldstate; --void QDragManager::updateMode( ButtonState newstate ) -+bool QDragManager::updateMode( ButtonState newstate ) - { - if ( newstate == oldstate ) -- return; -+ return false; - const int both = ShiftButton|ControlButton; - if ( (newstate & both) == both ) { - global_requested_action = QDropEvent::Link; -@@ -1041,6 +1060,7 @@ void QDragManager::updateMode( ButtonSta - } - } - oldstate = newstate; -+ return true; - } - - -@@ -1707,6 +1727,7 @@ bool QDragManager::drag( QDragObject * o - qt_xdnd_source_sameanswer = QRect(); - move(QCursor::pos()); - heartbeat = startTimer(200); -+ need_modifiers_check = FALSE; - - #ifndef QT_NO_CURSOR - qApp->setOverrideCursor( arrowCursor ); ---- src/kernel/qdragobject.h.sav 2003-05-19 22:34:43.000000000 +0200 -+++ src/kernel/qdragobject.h 2001-01-01 01:01:00.000000000 +0100 -@@ -248,7 +248,7 @@ private: - - private: - QDragObject * object; -- void updateMode( ButtonState newstate ); -+ bool updateMode( ButtonState newstate ); - void updateCursor(); - - QWidget * dragSource; diff --git a/x11-libs/qt/files/0038-dragobject-dont-prefer-unknown.patch b/x11-libs/qt/files/0038-dragobject-dont-prefer-unknown.patch deleted file mode 100644 index ae4163a..0000000 --- a/x11-libs/qt/files/0038-dragobject-dont-prefer-unknown.patch +++ /dev/null @@ -1,57 +0,0 @@ -qt-bugs@ issue : 38642 -bugs.kde.org number : 71084 -applied: no -author: Lubos Lunak <l.lunak@kde.org> - -Hello, - - start Mozilla, go e.g. to http://kde.org, start KWrite (or basically any Qt -app that accepts text drops), select 'Conquer your Desktop!', and try to -drag&drop it onto KWrite. The only text pasted should be 'm'. - - I don't know much the related mimetype and encoding stuff, so I'm unsure -whose fault this actually is. The text drag is provided as a lot of -text/something targets, to list some text/_moz_htmlinfo, text/x-moz-url, -text/unicode and similar. The problem is, Kate uses QTextDrag::decode() with -no subtype specified, probably with the intention that as Kate is a text -editor, it can accept any text pasted. And since the first target provided by -mozilla is text/x-moz-url, (which moreover seems to be encoded as 16bit -unicode), the text dropped is completely wrong. You can easily see all -targets provided by Mozilla with see_mime.patch applied. - - Solution #1: Say that Kate (any pretty much everybody else expecting text) -should say "plain" as the subtype. In such case, I suggest you drop the -QTextDrag::decode() variant with no subtype specified, and stress more the -fact that not specifying a subtype can result in a lot of rubbish. It's -simply too tempting to leave the subtype empty and try to accept anything. - - Solution #2: When trying to accept anything, try to get useful data. Which -means either sorting the subtypes available somehow, checking only the ones -Qt knows. - - To me, #1 seems to be a better choice, or possibly at least something like -the attached QTextDrag patch, which simply always tries first "plain" subtype -if none is specified. With this patch, Mozilla even works (that's irony, of -course, Mozilla still pastes the text/plain text as HTML, but at least now it -pastes something where it's easy to point at the offender). - - ---- src/kernel/qdragobject.cpp.sav 2004-01-06 19:24:35.000000000 +0100 -+++ src/kernel/qdragobject.cpp 2004-01-06 19:47:01.000000000 +0100 -@@ -844,6 +844,16 @@ bool QTextDrag::decode( const QMimeSourc - { - if(!e) - return FALSE; -+ -+ // when subtype is not specified, try text/plain first, otherwise this may read -+ // things like text/x-moz-url even though better targets are available -+ if( subtype.isNull()) { -+ QCString subtmp = "plain"; -+ if( decode( e, str, subtmp )) { -+ subtype = subtmp; -+ return true; -+ } -+ } - - if ( e->cacheType == QMimeSource::Text ) { - str = *e->cache.txt.str; diff --git a/x11-libs/qt/files/0044-qscrollview-windowactivate-fix.diff b/x11-libs/qt/files/0044-qscrollview-windowactivate-fix.diff deleted file mode 100644 index 9a6df32..0000000 --- a/x11-libs/qt/files/0044-qscrollview-windowactivate-fix.diff +++ /dev/null @@ -1,38 +0,0 @@ -qt-bugs@ issue : N45716 -applied: no -author: Enrico Ros <eros.kde@email.it> - -QScrollView unwanted repaint fix. - -This fixes the 'flashing' konqueror window on activation / deactivation by -saving 1 unwanted repaint (when konqueror window has background). -I tracked down to the problem to the internal QViewportWidget of the -QScrollView class. - -When a window is activated the activation event is recursively propagated -to all childs triggering the windowActivationChange() functions in the -widget it passes by. -What happens when the event gets to the Viewport? -At this point the event has already been handled by windowActivationChange() -of the parent widget (a QIconView for example) and has then been propagated -to the Viewport that will handle it with the default -QWidget::windowActivationChange implementation, maybe raising an unwanted -update(); so here we stop the event. -As an addition: if the parent reimplements the windowActivationChange() -function, mainly to block the update, it won't be happy if the child will -trigger the update. If the parent do not reimplement the function il will -inherits the default implementation and there is no need for the viewport's -one. - ---- src/widgets/qscrollview.cpp.orig 2004-03-29 10:17:04.000000000 +0000 -+++ src/widgets/qscrollview.cpp 2004-03-30 16:40:07.599978320 +0000 -@@ -1551,6 +1551,9 @@ - case QEvent::LayoutHint: - d->autoResizeHint(this); - break; -+ case QEvent::WindowActivate: -+ case QEvent::WindowDeactivate: -+ return TRUE; - default: - break; - } diff --git a/x11-libs/qt/files/0047-fix-kmenu-widget.diff b/x11-libs/qt/files/0047-fix-kmenu-widget.diff deleted file mode 100644 index fb0bb16..0000000 --- a/x11-libs/qt/files/0047-fix-kmenu-widget.diff +++ /dev/null @@ -1,25 +0,0 @@ -qt-bugs@ issue: N46882 -bugs.kde.org number: 77545 -applied: no -author: Stephan Binner <binner@kde.org> - -Fix wrong K menu width for the case of enabled side pixmap and a menu title -(like "Recently Used Applications") being longer than every other entry. - -Solution: Respect PanelKMenu::setMaximumSize() as up to Qt 3.2.3 - -Index: src/widgets/qpopupmenu.cpp -=================================================================== -RCS file: /home/kde/qt-copy/src/widgets/qpopupmenu.cpp,v -retrieving revision 1.60 -diff -u -3 -p -b -r1.60 qpopupmenu.cpp ---- src/widgets/qpopupmenu.cpp 29 Apr 2004 22:31:28 -0000 1.60 -+++ src/widgets/qpopupmenu.cpp 30 Apr 2004 01:11:59 -0000 -@@ -2531,7 +2531,7 @@ QSize QPopupMenu::sizeHint() const - - QPopupMenu* that = (QPopupMenu*) this; - //We do not need a resize here, just the sizeHint.. -- return that->updateSize(FALSE, FALSE).expandedTo( QApplication::globalStrut() ); -+ return that->updateSize(FALSE).expandedTo( QApplication::globalStrut() ); - } - diff --git a/x11-libs/qt/files/0048-qclipboard_hack_80072.patch b/x11-libs/qt/files/0048-qclipboard_hack_80072.patch deleted file mode 100644 index 74c60fb..0000000 --- a/x11-libs/qt/files/0048-qclipboard_hack_80072.patch +++ /dev/null @@ -1,48 +0,0 @@ -qt-bugs@ issue : none, probably even won't be -bugs.kde.org number : 80072 -applied: no -author: Lubos Lunak <l.lunak@kde.org> - -A crude hack for KDE #80072. No good idea how to fix it properly yet :(. - ---- src/kernel/qclipboard_x11.cpp.sav 2004-04-30 12:00:06.000000000 +0200 -+++ src/kernel/qclipboard_x11.cpp 2004-05-09 21:18:10.269264304 +0200 -@@ -109,6 +109,7 @@ static int pending_timer_id = 0; - static bool pending_clipboard_changed = FALSE; - static bool pending_selection_changed = FALSE; - -+Q_EXPORT bool qt_qclipboard_bailout_hack = false; - - // event capture mechanism for qt_xclb_wait_for_event - static bool waiting_for_data = FALSE; -@@ -453,6 +454,15 @@ static int qt_xclb_event_filter(XEvent * - return 0; - } - -+static bool selection_request_pending = false; -+ -+static Bool check_selection_request_pending( Display*, XEvent* e, XPointer ) -+ { -+ if( e->type == SelectionRequest && e->xselectionrequest.owner == owner->winId()) -+ selection_request_pending = true; -+ return False; -+ } -+ - bool qt_xclb_wait_for_event( Display *dpy, Window win, int type, XEvent *event, - int timeout ) - { -@@ -504,6 +514,14 @@ bool qt_xclb_wait_for_event( Display *dp - do { - if ( XCheckTypedWindowEvent(dpy,win,type,event) ) - return TRUE; -+ if( qt_qclipboard_bailout_hack ) { -+ XEvent dummy; -+ selection_request_pending = false; -+ if ( owner != NULL ) -+ XCheckIfEvent(dpy,&dummy,check_selection_request_pending,NULL); -+ if( selection_request_pending ) -+ return TRUE; -+ } - - now = QTime::currentTime(); - if ( started > now ) // crossed midnight diff --git a/x11-libs/qt/files/qt-3.3.8-fix-compiler-detection.patch b/x11-libs/qt/files/qt-3.3.8-fix-compiler-detection.patch deleted file mode 100644 index 203b71e..0000000 --- a/x11-libs/qt/files/qt-3.3.8-fix-compiler-detection.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- qt-x11-free-3.3.8-orig/configure 2008-10-28 15:43:35.000000000 +0100 -+++ qt-x11-free-3.3.8/configure 2008-10-28 15:45:48.000000000 +0100 -@@ -3079,15 +3079,15 @@ - g++*) - # GNU C++ - QMAKE_CONF_COMPILER=`grep "QMAKE_CXX[^_A-Z0-9a-z]" $QMAKESPEC/qmake.conf | sed "s,.* *= *\(.*\)$,\1,"` -- COMPILER_VERSION=`${QMAKE_CONF_COMPILER} --version 2>/dev/null` -+ COMPILER_VERSION=`${QMAKE_CONF_COMPILER} -dumpversion 2>/dev/null` - case "$COMPILER_VERSION" in -- *2.95.*) -+ 2.95.*) - COMPILER_VERSION="2.95.*" - ;; -- *3.*) -+ 3.*) - COMPILER_VERSION="3.*" - ;; -- *4.*) -+ 4.*) - COMPILER_VERSION="4" - ;; - *) diff --git a/x11-libs/qt/files/qt-3.3.8-immqt+gcc-4.3.patch b/x11-libs/qt/files/qt-3.3.8-immqt+gcc-4.3.patch deleted file mode 100644 index 65610e3..0000000 --- a/x11-libs/qt/files/qt-3.3.8-immqt+gcc-4.3.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- plugins/src/inputmethods/imsw-none/qnoneinputcontextplugin.cpp~ 2007-04-05 09:47:44.000000000 +0000 -+++ plugins/src/inputmethods/imsw-none/qnoneinputcontextplugin.cpp 2007-04-05 09:48:08.000000000 +0000 -@@ -44,6 +44,7 @@ - #include "qnoneinputcontextplugin.h" - #include <qinputcontextfactory.h> - #include <qsettings.h> -+#include <cstdlib> - - - QNoneInputContextPlugin::QNoneInputContextPlugin() ---- plugins/src/inputmethods/simple/qsimpleinputcontext.cpp~ 2007-04-05 09:48:46.000000000 +0000 -+++ plugins/src/inputmethods/simple/qsimpleinputcontext.cpp 2007-04-05 09:48:54.000000000 +0000 -@@ -45,6 +45,7 @@ - #include <qnamespace.h> - #include <qevent.h> - #include <qglobal.h> -+#include <algorithm> - - static const int ignoreKeys[] = { - Qt::Key_Shift, diff --git a/x11-libs/qt/files/qt-3.3.8-libpng14.patch b/x11-libs/qt/files/qt-3.3.8-libpng14.patch deleted file mode 100644 index 8906e6f..0000000 --- a/x11-libs/qt/files/qt-3.3.8-libpng14.patch +++ /dev/null @@ -1,42 +0,0 @@ ---- qt-x11-free-3.3.8b-x/src/kernel/qpngio.cpp 2008-01-15 20:09:13.000000000 +0100 -+++ qt-x11-free-3.3.8b/src/kernel/qpngio.cpp 2010-02-16 00:13:11.000000000 +0100 -@@ -162,7 +162,11 @@ - image.setColor( i, qRgba(c,c,c,0xff) ); - } - if ( png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) ) { -+#if PNG_LIBPNG_VER_MAJOR>1 || ( PNG_LIBPNG_VER_MAJOR==1 && PNG_LIBPNG_VER_MINOR>=4 ) -+ const int g = info_ptr->trans_color.gray; -+#else - const int g = info_ptr->trans_values.gray; -+#endif - if (g < ncols) { - image.setAlphaBuffer(TRUE); - image.setColor(g, image.color(g) & RGB_MASK); -@@ -190,7 +194,11 @@ - info_ptr->palette[i].red, - info_ptr->palette[i].green, - info_ptr->palette[i].blue, -+#if PNG_LIBPNG_VER_MAJOR>1 || ( PNG_LIBPNG_VER_MAJOR==1 && PNG_LIBPNG_VER_MINOR>=4 ) -+ info_ptr->trans_alpha[i] -+#else - info_ptr->trans[i] -+#endif - ) - ); - i++; -@@ -324,9 +332,15 @@ - png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) - if (image.depth()==32 && png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) { - QRgb trans = 0xFF000000 | qRgb( -+#if PNG_LIBPNG_VER_MAJOR>1 || ( PNG_LIBPNG_VER_MAJOR==1 && PNG_LIBPNG_VER_MINOR>=4 ) -+ (info_ptr->trans_color.red << 8 >> bit_depth)&0xff, -+ (info_ptr->trans_color.green << 8 >> bit_depth)&0xff, -+ (info_ptr->trans_color.blue << 8 >> bit_depth)&0xff); -+#else - (info_ptr->trans_values.red << 8 >> bit_depth)&0xff, - (info_ptr->trans_values.green << 8 >> bit_depth)&0xff, - (info_ptr->trans_values.blue << 8 >> bit_depth)&0xff); -+#endif - for (uint y=0; y<height; y++) { - for (uint x=0; x<info_ptr->width; x++) { - if (((uint**)jt)[y][x] == trans) { diff --git a/x11-libs/qt/files/qt-3.3.8-mips.patch b/x11-libs/qt/files/qt-3.3.8-mips.patch deleted file mode 100644 index 1f70900..0000000 --- a/x11-libs/qt/files/qt-3.3.8-mips.patch +++ /dev/null @@ -1,39 +0,0 @@ -Bug 210551. -Fix compilation on mips - -Original commit message by Christopher Martin, debian bug 342545. - - * Add a patch, courtesy of Steve Langasek, that fixes - qt-x11-free's longstanding intermittent FTBFS on hppa, caused - by "the bogus assumption in src/tools/qlocale.cpp that a - char[] can be cast to a double *." (Closes: #342545) - ---- qt-x11-free-3.3.6.orig/src/tools/qlocale.cpp -+++ qt-x11-free-3.3.6/src/tools/qlocale.cpp -@@ -122,13 +122,24 @@ - #endif - - // We can't rely on -NAN, since all operations on a NAN should return a NAN. -+static double be_neg_nan; -+static double le_neg_nan; - static const unsigned char be_neg_nan_bytes[] = { 0xff, 0xf8, 0, 0, 0, 0, 0, 0 }; - static const unsigned char le_neg_nan_bytes[] = { 0, 0, 0, 0, 0, 0, 0xf8, 0xff }; -+static bool neg_nan_init = false; -+ - static inline double negNan() - { -+ if (!neg_nan_init) -+ { -+ memcpy(&be_neg_nan,be_neg_nan_bytes,sizeof(be_neg_nan_bytes)); -+ memcpy(&le_neg_nan,le_neg_nan_bytes,sizeof(le_neg_nan_bytes)); -+ neg_nan_init = true; -+ } - return (ByteOrder == BigEndian ? -- *((const double *) be_neg_nan_bytes) : -- *((const double *) le_neg_nan_bytes)); -+ be_neg_nan : -+ le_neg_nan); -+ - } - - // Sizes as defined by the ISO C99 standard - fallback diff --git a/x11-libs/qt/files/qt-3.3.8-seli-xinerama.patch b/x11-libs/qt/files/qt-3.3.8-seli-xinerama.patch deleted file mode 100644 index 9fdd97a..0000000 --- a/x11-libs/qt/files/qt-3.3.8-seli-xinerama.patch +++ /dev/null @@ -1,49 +0,0 @@ ---- src/kernel/qapplication_x11.cpp.sav 2006-06-01 13:31:04.000000000 +0200 -+++ src/kernel/qapplication_x11.cpp 2006-06-01 13:33:07.000000000 +0200 -@@ -271,6 +271,7 @@ Atom qt_net_wm_frame_strut = 0; // KDE - Atom qt_net_wm_state_stays_on_top = 0; // KDE extension - Atom qt_net_wm_pid = 0; - Atom qt_net_wm_user_time = 0; -+Atom qt_net_wm_full_placement = 0; // KDE extension - // Enlightenment support - Atom qt_enlightenment_desktop = 0; - -@@ -1922,6 +1923,7 @@ void qt_init_internal( int *argcptr, cha - &qt_net_wm_state_stays_on_top ); - qt_x11_intern_atom( "_NET_WM_PID", &qt_net_wm_pid ); - qt_x11_intern_atom( "_NET_WM_USER_TIME", &qt_net_wm_user_time ); -+ qt_x11_intern_atom( "_NET_WM_FULL_PLACEMENT", &qt_net_wm_full_placement ); - qt_x11_intern_atom( "ENLIGHTENMENT_DESKTOP", &qt_enlightenment_desktop ); - qt_x11_intern_atom( "_NET_WM_NAME", &qt_net_wm_name ); - qt_x11_intern_atom( "_NET_WM_ICON_NAME", &qt_net_wm_icon_name ); ---- src/dialogs/qdialog.cpp.sav 2006-03-17 14:33:44.000000000 +0100 -+++ src/dialogs/qdialog.cpp 2006-06-01 13:38:00.000000000 +0200 -@@ -670,6 +670,11 @@ bool QDialog::event( QEvent *e ) - - #if defined(Q_WS_X11) - extern "C" { int XSetTransientForHint( Display *, unsigned long, unsigned long ); } -+#include <private/qt_x11_p.h> -+#undef FocusIn -+// defined in qapplication_x11.cpp -+extern Atom qt_net_wm_full_placement; -+extern bool qt_net_supports(Atom atom); - #endif // Q_WS_X11 - - /*! -@@ -691,10 +696,12 @@ void QDialog::show() - - if ( !did_resize ) - adjustSize(); -- if ( has_relpos && !did_move ) { -- adjustPositionInternal( parentWidget(), TRUE ); -- } else if ( !did_move ) { -- adjustPositionInternal( parentWidget() ); -+ if( !qt_net_supports( qt_net_wm_full_placement )) { -+ if ( has_relpos && !did_move ) { -+ adjustPositionInternal( parentWidget(), TRUE ); -+ } else if ( !did_move ) { -+ adjustPositionInternal( parentWidget() ); -+ } - } - - if (windowState() != state) diff --git a/x11-libs/qt/files/qt-3.3.8-uic-fix.patch b/x11-libs/qt/files/qt-3.3.8-uic-fix.patch deleted file mode 100644 index 8e5bd55..0000000 --- a/x11-libs/qt/files/qt-3.3.8-uic-fix.patch +++ /dev/null @@ -1,18 +0,0 @@ -Index: tools/designer/uic/form.cpp -=================================================================== ---- tools/designer/uic/form.cpp (revision 460038) -+++ tools/designer/uic/form.cpp (working copy) -@@ -731,6 +731,13 @@ - while ( !n2.isNull() ) { - if ( n2.tagName() == "includehint" ) { - QString file = n2.firstChild().toText().data(); -+ int colons = file.find("::"); -+ -+ if (colons != -1) -+ { -+ file = file.right(file.length() - colons - 2); -+ } -+ - localIncludes += file; - } - n2 = n2.nextSibling().toElement(); diff --git a/x11-libs/qt/files/qt-3.3.8-visibility.patch b/x11-libs/qt/files/qt-3.3.8-visibility.patch deleted file mode 100644 index a5246b9..0000000 --- a/x11-libs/qt/files/qt-3.3.8-visibility.patch +++ /dev/null @@ -1,159 +0,0 @@ -Index: configure -=================================================================== ---- configure (revision 471775) -+++ configure (working copy) -@@ -1053,6 +1053,7 @@ - [ -d $outpath/src/tools ] || mkdir -p $outpath/src/tools - cat > $outpath/src/tools/qconfig.cpp.new <<EOF - /* Install paths from configure */ -+#include "qglobal.h" - - static const char QT_INSTALL_PREFIX [267] = "qt_nstpath=$QT_INSTALL_PREFIX"; - static const char QT_INSTALL_BINS [267] = "qt_binpath=$QT_INSTALL_BINS"; -Index: src/kernel/qgplugin.h -=================================================================== ---- src/kernel/qgplugin.h (revision 471775) -+++ src/kernel/qgplugin.h (working copy) -@@ -90,35 +90,19 @@ - return i->iface(); \ - } - --# ifdef Q_WS_WIN --# ifdef Q_CC_BOR --# define Q_EXPORT_PLUGIN(PLUGIN) \ -- Q_PLUGIN_VERIFICATION_DATA \ -- Q_EXTERN_C __declspec(dllexport) \ -- const char * __stdcall qt_ucm_query_verification_data() \ -- { return qt_ucm_verification_data; } \ -- Q_EXTERN_C __declspec(dllexport) QUnknownInterface* \ -- __stdcall ucm_instantiate() \ -- Q_PLUGIN_INSTANTIATE( PLUGIN ) --# else --# define Q_EXPORT_PLUGIN(PLUGIN) \ -- Q_PLUGIN_VERIFICATION_DATA \ -- Q_EXTERN_C __declspec(dllexport) \ -- const char *qt_ucm_query_verification_data() \ -- { return qt_ucm_verification_data; } \ -- Q_EXTERN_C __declspec(dllexport) QUnknownInterface* ucm_instantiate() \ -- Q_PLUGIN_INSTANTIATE( PLUGIN ) --# endif --# else --# define Q_EXPORT_PLUGIN(PLUGIN) \ -+#if defined(Q_WS_WIN) && defined(Q_CC_BOR) -+# define Q_STDCALL __stdcall -+#else -+# define Q_STDCALL -+#endif -+ -+#define Q_EXPORT_PLUGIN(PLUGIN) \ - Q_PLUGIN_VERIFICATION_DATA \ -- Q_EXTERN_C \ -- const char *qt_ucm_query_verification_data() \ -+ Q_EXTERN_C Q_EXPORT \ -+ const char * Q_STDCALL qt_ucm_query_verification_data() \ - { return qt_ucm_verification_data; } \ -- Q_EXTERN_C QUnknownInterface* ucm_instantiate() \ -+ Q_EXTERN_C Q_EXPORT QUnknownInterface* Q_STDCALL ucm_instantiate() \ - Q_PLUGIN_INSTANTIATE( PLUGIN ) --# endif -- - #endif - - struct QUnknownInterface; -Index: src/kernel/qapplication_x11.cpp -=================================================================== ---- src/kernel/qapplication_x11.cpp (revision 471775) -+++ src/kernel/qapplication_x11.cpp (working copy) -@@ -314,7 +314,7 @@ - - // flags for extensions for special Languages, currently only for RTL languages - static bool qt_use_rtl_extensions = FALSE; --bool qt_hebrew_keyboard_hack = FALSE; -+Q_EXPORT bool qt_hebrew_keyboard_hack = FALSE; - - static Window mouseActWindow = 0; // window where mouse is - static int mouseButtonPressed = 0; // last mouse button pressed -@@ -3800,7 +3800,7 @@ - } - - --bool qt_try_modal( QWidget *widget, XEvent *event ) -+Q_EXPORT bool qt_try_modal( QWidget *widget, XEvent *event ) - { - if (qt_xdnd_dragging) { - // allow mouse events while DnD is active -Index: src/kernel/qtextengine_p.h -=================================================================== ---- src/kernel/qtextengine_p.h (revision 471775) -+++ src/kernel/qtextengine_p.h (working copy) -@@ -280,7 +280,7 @@ - - class QFontPrivate; - --class QTextEngine { -+class Q_EXPORT QTextEngine { - public: - QTextEngine( const QString &str, QFontPrivate *f ); - ~QTextEngine(); -Index: src/tools/qglobal.h -=================================================================== ---- src/tools/qglobal.h (revision 471775) -+++ src/tools/qglobal.h (working copy) -@@ -865,6 +865,10 @@ - # define Q_TEMPLATE_EXTERN - # undef Q_DISABLE_COPY /* avoid unresolved externals */ - # endif -+#elif defined(Q_CC_GNU) && __GNUC__ - 0 >= 4 -+# define Q_EXPORT __attribute__((visibility("default"))) -+# undef QT_MAKEDLL /* ignore these for other platforms */ -+# undef QT_DLL - #else - # undef QT_MAKEDLL /* ignore these for other platforms */ - # undef QT_DLL -Index: tools/designer/uilib/qwidgetfactory.h -=================================================================== ---- tools/designer/uilib/qwidgetfactory.h (revision 471775) -+++ tools/designer/uilib/qwidgetfactory.h (working copy) -@@ -48,7 +48,7 @@ - class QWidgetFactoryPrivate; - class UibStrTable; - --class QWidgetFactory -+class Q_EXPORT QWidgetFactory - { - public: - QWidgetFactory(); -Index: tools/designer/uilib/qwidgetfactory.cpp -=================================================================== ---- tools/designer/uilib/qwidgetfactory.cpp (revision 471775) -+++ tools/designer/uilib/qwidgetfactory.cpp (working copy) -@@ -113,13 +113,13 @@ - static QMap<QString, bool> *availableWidgetMap = 0; - static QStringList *availableWidgetList = 0; - --QMap<QWidget*, QString> *qwf_forms = 0; -+Q_EXPORT QMap<QWidget*, QString> *qwf_forms = 0; - QString *qwf_language = 0; --bool qwf_execute_code = TRUE; -+Q_EXPORT bool qwf_execute_code = TRUE; - bool qwf_stays_on_top = FALSE; - QString qwf_currFileName = ""; - QObject *qwf_form_object = 0; --QString *qwf_plugin_dir = 0; -+Q_EXPORT QString *qwf_plugin_dir = 0; - - static void setupPluginDir() - { -Index: tools/designer/shared/domtool.h -=================================================================== ---- tools/designer/shared/domtool.h (revision 471775) -+++ tools/designer/shared/domtool.h (working copy) -@@ -33,7 +33,7 @@ - class QDomElement; - class QDomDocument; - --class DomTool : public Qt -+class Q_EXPORT DomTool : public Qt - { - public: - static QVariant readProperty( const QDomElement& e, const QString& name, const QVariant& defValue ); diff --git a/x11-libs/qt/files/qt-3.3.8b-cjk-fix.patch b/x11-libs/qt/files/qt-3.3.8b-cjk-fix.patch deleted file mode 100644 index 5372bdb..0000000 --- a/x11-libs/qt/files/qt-3.3.8b-cjk-fix.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- src/kernel/qfontdatabase.cpp 2008-07-10 06:17:31.000000000 +0800 -+++ src/kernel/qfontdatabase.cpp 2008-07-10 06:27:53.000000000 +0800 -@@ -960,19 +960,17 @@ - #ifdef Q_WS_X11 - if (script == QFont::Han) { - // modify script according to locale -- static QFont::Script defaultHan = QFont::UnknownScript; -- if (defaultHan == QFont::UnknownScript) { -- QCString locale = setlocale(LC_ALL, NULL); -- if (locale.contains("ko")) -- defaultHan = QFont::Han_Korean; -- else if (locale.contains("zh_TW") || locale.contains("zh_HK")) -- defaultHan = QFont::Han_TraditionalChinese; -- else if (locale.contains("zh")) -- defaultHan = QFont::Han_SimplifiedChinese; -- else -- defaultHan = QFont::Han_Japanese; -+ static QFont::Script defaultHan = QFont::Han; -+ QCString locale = setlocale(LC_ALL, NULL); -+ if (locale.contains("ko")) -+ defaultHan = QFont::Han_Korean; -+ else if (locale.contains("zh_TW") || locale.contains("zh_HK")) -+ defaultHan = QFont::Han_TraditionalChinese; -+ else if (locale.contains("zh")) -+ defaultHan = QFont::Han_SimplifiedChinese; -+ else if (locale.contains("jp")) -+ defaultHan = QFont::Han_Japanese; -- } - script = defaultHan; - } - #endif - diff --git a/x11-libs/qt/files/qt-ulibc.patch b/x11-libs/qt/files/qt-ulibc.patch deleted file mode 100644 index f188778..0000000 --- a/x11-libs/qt/files/qt-ulibc.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- qt-x11-free-3.3.4.orig/src/tools/qlocale.cpp 2005-01-21 17:16:05.000000000 +0000 -+++ qt-x11-free-3.3.4/src/tools/qlocale.cpp 2005-02-18 13:36:59.000000000 +0000 -@@ -55,6 +55,10 @@ - # undef INFINITY - #endif - -+#if defined(Q_OS_LINUX) && defined(__UCLIBC__) -+# undef Q_OS_LINUX -+#endif -+ - #ifdef Q_OS_LINUX - # include <fenv.h> - #endif diff --git a/x11-libs/qt/files/qt-x11-immodule-unified-qt3.3.8-20070321-gentoo.diff.bz2 b/x11-libs/qt/files/qt-x11-immodule-unified-qt3.3.8-20070321-gentoo.diff.bz2 Binary files differdeleted file mode 100644 index 321fe6d..0000000 --- a/x11-libs/qt/files/qt-x11-immodule-unified-qt3.3.8-20070321-gentoo.diff.bz2 +++ /dev/null diff --git a/x11-libs/qt/metadata.xml b/x11-libs/qt/metadata.xml deleted file mode 100644 index 30c31e9..0000000 --- a/x11-libs/qt/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<herd>qt</herd> -<use> - <flag name='immqt-bc'>Enable binary compatible version of immodule for - Qt</flag> - <flag name='immqt'>Enable binary incompatible version of immodule for - Qt</flag> -</use> -</pkgmetadata> diff --git a/x11-libs/qt/qt-3.3.8b-r1.ebuild b/x11-libs/qt/qt-3.3.8b-r1.ebuild deleted file mode 100644 index 9ea198b..0000000 --- a/x11-libs/qt/qt-3.3.8b-r1.ebuild +++ /dev/null @@ -1,372 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt/qt-3.3.8b-r1.ebuild,v 1.9 2009/12/03 18:25:47 yngwin Exp $ - -# *** Please remember to update qt3.eclass when revbumping this *** - -inherit eutils flag-o-matic toolchain-funcs - -SRCTYPE="free" -DESCRIPTION="The Qt toolkit is a comprehensive C++ application development framework." -HOMEPAGE="http://qt.nokia.com/" - -IMMQT_P="qt-x11-immodule-unified-qt3.3.8-20070321-gentoo" - -SRC_URI="ftp://ftp.trolltech.com/qt/source/qt-x11-${SRCTYPE}-${PV}.tar.gz - immqt? ( mirror://gentoo/${IMMQT_P}.diff.bz2 ) - immqt-bc? ( mirror://gentoo/${IMMQT_P}.diff.bz2 )" -LICENSE="|| ( QPL-1.0 GPL-2 GPL-3 )" - -SLOT="3" -KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd" -IUSE="cups debug doc examples firebird ipv6 mysql nas nis odbc opengl postgres sqlite xinerama immqt immqt-bc" - -RDEPEND=" - media-libs/jpeg - >=media-libs/freetype-2 - >=media-libs/libmng-1.0.9 - media-libs/libpng - sys-libs/zlib - x11-libs/libXft - x11-libs/libXcursor - x11-libs/libXi - x11-libs/libXrandr - x11-libs/libSM - cups? ( net-print/cups ) - firebird? ( dev-db/firebird ) - mysql? ( virtual/mysql ) - nas? ( >=media-libs/nas-1.5 ) - opengl? ( virtual/opengl virtual/glu ) - postgres? ( virtual/postgresql-base ) - xinerama? ( x11-libs/libXinerama )" -DEPEND="${RDEPEND} - x11-proto/inputproto - x11-proto/xextproto - xinerama? ( x11-proto/xineramaproto ) - immqt? ( x11-proto/xineramaproto ) - immqt-bc? ( x11-proto/xineramaproto )" -PDEPEND="odbc? ( ~dev-db/qt-unixODBC-$PV )" - -S="${WORKDIR}/qt-x11-${SRCTYPE}-${PV}" - -QTBASE="/usr/qt/3" - -pkg_setup() { - if use immqt && use immqt-bc ; then - ewarn - ewarn "immqt and immqt-bc are exclusive. You cannot set both." - ewarn "Please specify either immqt or immqt-bc." - ewarn - die - elif use immqt ; then - ewarn - ewarn "You are going to compile binary imcompatible immodule for Qt. This means" - ewarn "you have to recompile everything depending on Qt after you install it." - ewarn "Be aware." - ewarn - fi - - export QTDIR="${S}" - - CXX=$(tc-getCXX) - if [[ ${CXX/g++/} != ${CXX} ]]; then - PLATCXX="g++" - elif [[ ${CXX/icpc/} != ${CXX} ]]; then - PLATCXX="icc" - else - die "Unknown compiler ${CXX}." - fi - - case ${CHOST} in - *-freebsd*|*-dragonfly*) - PLATNAME="freebsd" ;; - *-openbsd*) - PLATNAME="openbsd" ;; - *-netbsd*) - PLATNAME="netbsd" ;; - *-darwin*) - PLATNAME="darwin" ;; - *-linux-*|*-linux) - PLATNAME="linux" ;; - *) - die "Unknown CHOST, no platform choosed." - esac - - # probably this should be '*-64' for 64bit archs - # in a fully multilib environment (no compatibility symlinks) - export PLATFORM="${PLATNAME}-${PLATCXX}" -} - -src_unpack() { - unpack ${A} - cd "${S}" - - sed -i -e 's:read acceptance:acceptance=yes:' configure - - # Do not link with -rpath. See bug #75181. - find "${S}"/mkspecs -name qmake.conf | xargs \ - sed -i -e 's:QMAKE_RPATH.*:QMAKE_RPATH =:' - - # Patch for uic includehint errors (aseigo patch) - epatch "${FILESDIR}"/qt-3.3.8-uic-fix.patch - - # KDE related patches - epatch "${FILESDIR}"/0001-dnd_optimization.patch - epatch "${FILESDIR}"/0002-dnd_active_window_fix.patch - epatch "${FILESDIR}"/0038-dragobject-dont-prefer-unknown.patch - epatch "${FILESDIR}"/0044-qscrollview-windowactivate-fix.diff - epatch "${FILESDIR}"/0047-fix-kmenu-widget.diff - epatch "${FILESDIR}"/0048-qclipboard_hack_80072.patch - - # ulibc patch (bug #100246) - epatch "${FILESDIR}"/qt-ulibc.patch - - # xinerama patch: http://ktown.kde.org/~seli/xinerama/ - epatch "${FILESDIR}"/qt-3.3.8-seli-xinerama.patch - - # Visibility patch, apply only on GCC 4.1 and later for safety - # [[ $(gcc-major-version)$(gcc-minor-version) -ge 41 ]] && \ - epatch "${FILESDIR}"/qt-3.3.8-visibility.patch - - # Fix configure to correctly pick up gcc version, bug 244732 - epatch "${FILESDIR}"/qt-3.3.8-fix-compiler-detection.patch - - # Fix CJK script rendering, bug 229567 - epatch "${FILESDIR}"/qt-3.3.8b-cjk-fix.patch - - if use immqt || use immqt-bc ; then - epatch ../${IMMQT_P}.diff - sh make-symlinks.sh || die "make symlinks failed" - - epatch "${FILESDIR}"/qt-3.3.8-immqt+gcc-4.3.patch - fi - - if use mips; then - epatch "${FILESDIR}"/qt-3.3.8-mips.patch - fi - - # known working flags wrt #77623 - use sparc && export CFLAGS="-O1" && export CXXFLAGS="${CFLAGS}" - # set c/xxflags and ldflags - strip-flags - append-flags -fno-strict-aliasing - - if [[ $( gcc-fullversion ) == "3.4.6" && gcc-specs-ssp ]] ; then - ewarn "Appending -fno-stack-protector to CFLAGS/CXXFLAGS" - append-flags -fno-stack-protector - fi - - sed -i -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ - -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ - -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ - -e "s:\<QMAKE_CC\>.*=.*:QMAKE_CC=$(tc-getCC):" \ - -e "s:\<QMAKE_CXX\>.*=.*:QMAKE_CXX=$(tc-getCXX):" \ - -e "s:\<QMAKE_LINK\>.*=.*:QMAKE_LINK=$(tc-getCXX):" \ - -e "s:\<QMAKE_LINK_SHLIB\>.*=.*:QMAKE_LINK_SHLIB=$(tc-getCXX):" \ - "${S}"/mkspecs/${PLATFORM}/qmake.conf || die - - if [ $(get_libdir) != "lib" ] ; then - sed -i -e "s:/lib$:/$(get_libdir):" \ - "${S}"/mkspecs/${PLATFORM}/qmake.conf || die - fi - - sed -i -e "s:CXXFLAGS.*=:CXXFLAGS=${CXXFLAGS} :" \ - -e "s:LFLAGS.*=:LFLAGS=${LDFLAGS} :" \ - "${S}"/qmake/Makefile.unix || die -} - -src_compile() { - export SYSCONF="${D}${QTBASE}"/etc/settings - - # Let's just allow writing to these directories during Qt emerge - # as it makes Qt much happier. - addwrite "${QTBASE}/etc/settings" - addwrite "${HOME}/.qt" - - [ "$(get_libdir)" != "lib" ] && myconf="${myconf} -L/usr/$(get_libdir)" - - # unixODBC support is now a PDEPEND on dev-db/qt-unixODBC; see bug 14178. - use nas && myconf+=" -system-nas-sound" - use nis && myconf+=" -nis" || myconf+=" -no-nis" - use mysql && myconf+=" -plugin-sql-mysql -I/usr/include/mysql -L/usr/$(get_libdir)/mysql" || myconf+=" -no-sql-mysql" - use postgres && myconf+=" -plugin-sql-psql -I/usr/include/postgresql/server -I/usr/include/postgresql/pgsql -I/usr/include/postgresql/pgsql/server" || myconf+=" -no-sql-psql" - use firebird && myconf+=" -plugin-sql-ibase -I/opt/firebird/include" || myconf+=" -no-sql-ibase" - use sqlite && myconf+=" -plugin-sql-sqlite" || myconf+=" -no-sql-sqlite" - use cups && myconf+=" -cups" || myconf+=" -no-cups" - use opengl && myconf+=" -enable-module=opengl" || myconf+=" -disable-opengl" - use debug && myconf+=" -debug" || myconf+=" -release -no-g++-exceptions" - use xinerama && myconf+=" -xinerama" || myconf+=" -no-xinerama" - - myconf="${myconf} -system-zlib -qt-gif" - - use ipv6 && myconf+=" -ipv6" || myconf+=" -no-ipv6" - use immqt-bc && myconf+=" -inputmethod" - use immqt && myconf+=" -inputmethod -inputmethod-ext" - - export YACC='byacc -d' - tc-export CC CXX - export LINK="$(tc-getCXX)" - - ./configure -sm -thread -stl -system-libjpeg -verbose -largefile \ - -qt-imgfmt-{jpeg,mng,png} -tablet -system-libmng \ - -system-libpng -xft -platform ${PLATFORM} -xplatform \ - ${PLATFORM} -xrender -prefix ${QTBASE} -libdir ${QTBASE}/$(get_libdir) \ - -fast -no-sql-odbc ${myconf} -dlopen-opengl || die - - emake src-qmake src-moc sub-src || die - - export DYLD_LIBRARY_PATH="${S}/lib:/usr/X11R6/lib:${DYLD_LIBRARY_PATH}" - export LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" - - emake sub-tools || die - - if use examples; then - emake sub-tutorial sub-examples || die - fi - - # Make the msg2qm utility (not made by default) - cd "${S}"/tools/msg2qm - ../../bin/qmake - emake - - # Make the qembed utility (not made by default) - cd "${S}"/tools/qembed - ../../bin/qmake - emake - -} - -src_install() { - # binaries - into ${QTBASE} - dobin bin/* - dobin tools/msg2qm/msg2qm - dobin tools/qembed/qembed - - # libraries - dolib.so lib/lib{editor,qassistantclient,designercore}.a - dolib.so lib/libqt-mt.la - dolib.so lib/libqt-mt.so.${PV/b} lib/libqui.so.1.0.0 - cd "${D}"/${QTBASE}/$(get_libdir) - - for x in libqui.so ; do - ln -s $x.1.0.0 $x.1.0 - ln -s $x.1.0 $x.1 - ln -s $x.1 $x - done - - # version symlinks - 3.3.5->3.3->3->.so - ln -s libqt-mt.so.${PV/b} libqt-mt.so.3.3 - ln -s libqt-mt.so.3.3 libqt-mt.so.3 - ln -s libqt-mt.so.3 libqt-mt.so - - # libqt -> libqt-mt symlinks - ln -s libqt-mt.so.${PV/b} libqt.so.${PV/b} - ln -s libqt-mt.so.3.3 libqt.so.3.3 - ln -s libqt-mt.so.3 libqt.so.3 - ln -s libqt-mt.so libqt.so - - # plugins - cd "${S}" - local plugins=$(find plugins -name "lib*.so" -print) - for x in ${plugins}; do - exeinto ${QTBASE}/$(dirname ${x}) - doexe ${x} - done - - # Past this point just needs to be done once - is_final_abi || return 0 - - # includes - cd "${S}" - dodir ${QTBASE}/include/private - cp include/*\.h "${D}"/${QTBASE}/include/ - cp include/private/*\.h "${D}"/${QTBASE}/include/private/ - - # prl files - sed -i -e "s:${S}:${QTBASE}:g" "${S}"/lib/*.prl - insinto ${QTBASE}/$(get_libdir) - doins "${S}"/lib/*.prl - - # pkg-config file - insinto ${QTBASE}/$(get_libdir)/pkgconfig - doins "${S}"/lib/*.pc - - # List all the multilib libdirs - local libdirs - for alibdir in $(get_all_libdirs); do - libdirs="${libdirs}:${QTBASE}/${alibdir}" - done - - # environment variables - cat <<EOF > "${T}"/45qt3 -PATH=${QTBASE}/bin -ROOTPATH=${QTBASE}/bin -LDPATH=${libdirs:1} -QMAKESPEC=${PLATFORM} -MANPATH=${QTBASE}/doc/man -PKG_CONFIG_PATH=${QTBASE}/$(get_libdir)/pkgconfig -EOF - - cat <<EOF > "${T}"/50qtdir3 -QTDIR=${QTBASE} -EOF - - cat <<EOF > "${T}"/50-qt3-revdep -SEARCH_DIRS="${QTBASE}" -EOF - - insinto /etc/revdep-rebuild - doins "${T}"/50-qt3-revdep - - doenvd "${T}"/45qt3 "${T}"/50qtdir3 - - if [ "${SYMLINK_LIB}" = "yes" ]; then - dosym $(get_abi_LIBDIR ${DEFAULT_ABI}) ${QTBASE}/lib - fi - - insinto ${QTBASE}/tools/designer - doins -r tools/designer/templates - - insinto ${QTBASE} - doins -r translations - - keepdir ${QTBASE}/etc/settings - - if use doc; then - insinto ${QTBASE} - doins -r "${S}"/doc - fi - - if use examples; then - find "${S}"/examples "${S}"/tutorial -name Makefile | \ - xargs sed -i -e "s:${S}:${QTBASE}:g" - - cp -r "${S}"/examples "${D}"${QTBASE}/ - cp -r "${S}"/tutorial "${D}"${QTBASE}/ - fi - - # misc build reqs - insinto ${QTBASE}/mkspecs - doins -r "${S}"/mkspecs/${PLATFORM} - - sed -e "s:${S}:${QTBASE}:g" \ - "${S}"/.qmake.cache > "${D}"${QTBASE}/.qmake.cache - - dodoc FAQ README README-QT.TXT changes* - if use immqt || use immqt-bc ; then - dodoc "${S}"/README.immodule - fi -} - -pkg_postinst() { - echo - elog "After a rebuild of Qt, it can happen that Qt plugins (such as Qt/KDE styles," - elog "or widgets for the Qt designer) are no longer recognized. If this situation" - elog "occurs you should recompile the packages providing these plugins," - elog "and you should also make sure that Qt and its plugins were compiled with the" - elog "same version of GCC. Packages that may need to be rebuilt are, for instance," - elog "kde-base/kdelibs, kde-base/kdeartwork and kde-base/kdeartwork-styles." - elog "See http://doc.trolltech.com/3.3/plugins-howto.html for more infos." - echo -} diff --git a/x11-libs/qt/qt-3.3.8b-r2.ebuild b/x11-libs/qt/qt-3.3.8b-r2.ebuild deleted file mode 100644 index d5f6fe6..0000000 --- a/x11-libs/qt/qt-3.3.8b-r2.ebuild +++ /dev/null @@ -1,371 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt/qt-3.3.8b-r2.ebuild,v 1.7 2009/12/03 18:25:47 yngwin Exp $ - -# *** Please remember to update qt3.eclass when revbumping this *** - -inherit eutils flag-o-matic toolchain-funcs - -SRCTYPE="free" -DESCRIPTION="The Qt toolkit is a comprehensive C++ application development framework." -HOMEPAGE="http://qt.nokia.com/" - -IMMQT_P="qt-x11-immodule-unified-qt3.3.8-20070321-gentoo" - -SRC_URI="ftp://ftp.trolltech.com/qt/source/qt-x11-${SRCTYPE}-${PV}.tar.gz - immqt? ( mirror://gentoo/${IMMQT_P}.diff.bz2 ) - immqt-bc? ( mirror://gentoo/${IMMQT_P}.diff.bz2 )" -LICENSE="|| ( QPL-1.0 GPL-2 GPL-3 )" - -SLOT="3" -KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ~ppc64 sparc x86 ~x86-fbsd" -IUSE="cups debug doc examples firebird ipv6 mysql nas nis odbc opengl postgres sqlite xinerama immqt immqt-bc" - -RDEPEND=" - media-libs/jpeg - >=media-libs/freetype-2 - >=media-libs/libmng-1.0.9 - media-libs/libpng - sys-libs/zlib - x11-libs/libXft - x11-libs/libXcursor - x11-libs/libXi - x11-libs/libXrandr - x11-libs/libSM - cups? ( net-print/cups ) - firebird? ( dev-db/firebird ) - mysql? ( virtual/mysql ) - nas? ( >=media-libs/nas-1.5 ) - opengl? ( virtual/opengl virtual/glu ) - postgres? ( virtual/postgresql-base ) - xinerama? ( x11-libs/libXinerama )" -DEPEND="${RDEPEND} - x11-proto/inputproto - x11-proto/xextproto - xinerama? ( x11-proto/xineramaproto ) - immqt? ( x11-proto/xineramaproto ) - immqt-bc? ( x11-proto/xineramaproto )" -PDEPEND="odbc? ( ~dev-db/qt-unixODBC-$PV )" - -S="${WORKDIR}/qt-x11-${SRCTYPE}-${PV}" - -QTBASE="/usr/qt/3" - -pkg_setup() { - if use immqt && use immqt-bc ; then - ewarn - ewarn "immqt and immqt-bc are exclusive. You cannot set both." - ewarn "Please specify either immqt or immqt-bc." - ewarn - die - elif use immqt ; then - ewarn - ewarn "You are going to compile binary imcompatible immodule for Qt. This means" - ewarn "you have to recompile everything depending on Qt after you install it." - ewarn "Be aware." - ewarn - fi - - export QTDIR="${S}" - - CXX=$(tc-getCXX) - if [[ ${CXX/g++/} != ${CXX} ]]; then - PLATCXX="g++" - elif [[ ${CXX/icpc/} != ${CXX} ]]; then - PLATCXX="icc" - else - die "Unknown compiler ${CXX}." - fi - - case ${CHOST} in - *-freebsd*|*-dragonfly*) - PLATNAME="freebsd" ;; - *-openbsd*) - PLATNAME="openbsd" ;; - *-netbsd*) - PLATNAME="netbsd" ;; - *-darwin*) - PLATNAME="darwin" ;; - *-linux-*|*-linux) - PLATNAME="linux" ;; - *) - die "Unknown CHOST, no platform choosed." - esac - - # probably this should be '*-64' for 64bit archs - # in a fully multilib environment (no compatibility symlinks) - export PLATFORM="${PLATNAME}-${PLATCXX}" -} - -src_unpack() { - unpack ${A} - cd "${S}" - - sed -i -e 's:read acceptance:acceptance=yes:' configure - - # Do not link with -rpath. See bug #75181. - find "${S}"/mkspecs -name qmake.conf | xargs \ - sed -i -e 's:QMAKE_RPATH.*:QMAKE_RPATH =:' - - # Patch for uic includehint errors (aseigo patch) - epatch "${FILESDIR}"/qt-3.3.8-uic-fix.patch - - # KDE related patches - epatch "${FILESDIR}"/0001-dnd_optimization.patch - epatch "${FILESDIR}"/0002-dnd_active_window_fix.patch - epatch "${FILESDIR}"/0038-dragobject-dont-prefer-unknown.patch - epatch "${FILESDIR}"/0044-qscrollview-windowactivate-fix.diff - epatch "${FILESDIR}"/0047-fix-kmenu-widget.diff - epatch "${FILESDIR}"/0048-qclipboard_hack_80072.patch - - # ulibc patch (bug #100246) - epatch "${FILESDIR}"/qt-ulibc.patch - - # xinerama patch: http://ktown.kde.org/~seli/xinerama/ - epatch "${FILESDIR}"/qt-3.3.8-seli-xinerama.patch - - # Visibility patch, apply only on GCC 4.1 and later for safety - # [[ $(gcc-major-version)$(gcc-minor-version) -ge 41 ]] && \ - epatch "${FILESDIR}"/qt-3.3.8-visibility.patch - - # Fix configure to correctly pick up gcc version, bug 244732 - epatch "${FILESDIR}"/qt-3.3.8-fix-compiler-detection.patch - - # Fix CJK script rendering, bug 229567 - epatch "${FILESDIR}"/qt-3.3.8b-cjk-fix.patch - - if use immqt || use immqt-bc ; then - epatch ../${IMMQT_P}.diff - sh make-symlinks.sh || die "make symlinks failed" - - epatch "${FILESDIR}"/qt-3.3.8-immqt+gcc-4.3.patch - fi - - if use mips; then - epatch "${FILESDIR}"/qt-3.3.8-mips.patch - fi - - # known working flags wrt #77623 - use sparc && export CFLAGS="-O1" && export CXXFLAGS="${CFLAGS}" - # set c/xxflags and ldflags - strip-flags - append-flags -fno-strict-aliasing - - if [[ $( gcc-fullversion ) == "3.4.6" && gcc-specs-ssp ]] ; then - ewarn "Appending -fno-stack-protector to CFLAGS/CXXFLAGS" - append-flags -fno-stack-protector - fi - - sed -i -e "s:QMAKE_CFLAGS_RELEASE.*=.*:QMAKE_CFLAGS_RELEASE=${CFLAGS}:" \ - -e "s:QMAKE_CXXFLAGS_RELEASE.*=.*:QMAKE_CXXFLAGS_RELEASE=${CXXFLAGS}:" \ - -e "s:QMAKE_LFLAGS_RELEASE.*=.*:QMAKE_LFLAGS_RELEASE=${LDFLAGS}:" \ - -e "s:\<QMAKE_CC\>.*=.*:QMAKE_CC=$(tc-getCC):" \ - -e "s:\<QMAKE_CXX\>.*=.*:QMAKE_CXX=$(tc-getCXX):" \ - -e "s:\<QMAKE_LINK\>.*=.*:QMAKE_LINK=$(tc-getCXX):" \ - -e "s:\<QMAKE_LINK_SHLIB\>.*=.*:QMAKE_LINK_SHLIB=$(tc-getCXX):" \ - "${S}"/mkspecs/${PLATFORM}/qmake.conf || die - - if [ $(get_libdir) != "lib" ] ; then - sed -i -e "s:/lib$:/$(get_libdir):" \ - "${S}"/mkspecs/${PLATFORM}/qmake.conf || die - fi - - sed -i -e "s:CXXFLAGS.*=:CXXFLAGS=${CXXFLAGS} :" \ - -e "s:LFLAGS.*=:LFLAGS=${LDFLAGS} :" \ - "${S}"/qmake/Makefile.unix || die -} - -src_compile() { - export SYSCONF="${D}${QTBASE}"/etc/settings - - # Let's just allow writing to these directories during Qt emerge - # as it makes Qt much happier. - addwrite "${QTBASE}/etc/settings" - addwrite "${HOME}/.qt" - - [ "$(get_libdir)" != "lib" ] && myconf="${myconf} -L/usr/$(get_libdir)" - - # unixODBC support is now a PDEPEND on dev-db/qt-unixODBC; see bug 14178. - use nas && myconf+=" -system-nas-sound" - use nis && myconf+=" -nis" || myconf+=" -no-nis" - use mysql && myconf+=" -plugin-sql-mysql -I/usr/include/mysql -L/usr/$(get_libdir)/mysql" || myconf+=" -no-sql-mysql" - use postgres && myconf+=" -plugin-sql-psql -I/usr/include/postgresql/server -I/usr/include/postgresql/pgsql -I/usr/include/postgresql/pgsql/server" || myconf+=" -no-sql-psql" - use firebird && myconf+=" -plugin-sql-ibase -I/opt/firebird/include" || myconf+=" -no-sql-ibase" - use sqlite && myconf+=" -plugin-sql-sqlite" || myconf+=" -no-sql-sqlite" - use cups && myconf+=" -cups" || myconf+=" -no-cups" - use opengl && myconf+=" -enable-module=opengl" || myconf+=" -disable-opengl" - use debug && myconf+=" -debug" || myconf+=" -release -no-g++-exceptions" - use xinerama && myconf+=" -xinerama" || myconf+=" -no-xinerama" - - myconf="${myconf} -system-zlib -qt-gif" - - use ipv6 && myconf+=" -ipv6" || myconf+=" -no-ipv6" - use immqt-bc && myconf+=" -inputmethod" - use immqt && myconf+=" -inputmethod -inputmethod-ext" - - export YACC='byacc -d' - tc-export CC CXX - export LINK="$(tc-getCXX)" - - ./configure -sm -thread -stl -system-libjpeg -verbose -largefile \ - -qt-imgfmt-{jpeg,mng,png} -tablet -system-libmng \ - -system-libpng -xft -platform ${PLATFORM} -xplatform \ - ${PLATFORM} -xrender -prefix ${QTBASE} -libdir ${QTBASE}/$(get_libdir) \ - -fast -no-sql-odbc ${myconf} -dlopen-opengl || die - - emake src-qmake src-moc sub-src || die - - export DYLD_LIBRARY_PATH="${S}/lib:/usr/X11R6/lib:${DYLD_LIBRARY_PATH}" - export LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}" - - emake sub-tools || die - - if use examples; then - emake sub-tutorial sub-examples || die - fi - - # Make the msg2qm utility (not made by default) - cd "${S}"/tools/msg2qm - ../../bin/qmake - emake - - # Make the qembed utility (not made by default) - cd "${S}"/tools/qembed - ../../bin/qmake - emake - -} - -src_install() { - # binaries - into ${QTBASE} - dobin bin/* - dobin tools/msg2qm/msg2qm - dobin tools/qembed/qembed - - # libraries - dolib.so lib/lib{editor,qassistantclient,designercore}.a - dolib.so lib/libqt-mt.la - dolib.so lib/libqt-mt.so.${PV/b} lib/libqui.so.1.0.0 - cd "${D}"/${QTBASE}/$(get_libdir) - - for x in libqui.so ; do - ln -s $x.1.0.0 $x.1.0 - ln -s $x.1.0 $x.1 - ln -s $x.1 $x - done - - # version symlinks - 3.3.5->3.3->3->.so - ln -s libqt-mt.so.${PV/b} libqt-mt.so.3.3 - ln -s libqt-mt.so.3.3 libqt-mt.so.3 - ln -s libqt-mt.so.3 libqt-mt.so - - # libqt -> libqt-mt symlinks - ln -s libqt-mt.so.${PV/b} libqt.so.${PV/b} - ln -s libqt-mt.so.3.3 libqt.so.3.3 - ln -s libqt-mt.so.3 libqt.so.3 - ln -s libqt-mt.so libqt.so - - # plugins - cd "${S}" - local plugins=$(find plugins -name "lib*.so" -print) - for x in ${plugins}; do - exeinto ${QTBASE}/$(dirname ${x}) - doexe ${x} - done - - # Past this point just needs to be done once - is_final_abi || return 0 - - # includes - cd "${S}" - dodir ${QTBASE}/include/private - cp include/*\.h "${D}"/${QTBASE}/include/ - cp include/private/*\.h "${D}"/${QTBASE}/include/private/ - - # prl files - sed -i -e "s:${S}:${QTBASE}:g" "${S}"/lib/*.prl - insinto ${QTBASE}/$(get_libdir) - doins "${S}"/lib/*.prl - - # pkg-config file - insinto /usr/$(get_libdir)/pkgconfig - doins "${S}"/lib/*.pc - - # List all the multilib libdirs - local libdirs - for alibdir in $(get_all_libdirs); do - libdirs="${libdirs}:${QTBASE}/${alibdir}" - done - - # environment variables - cat <<EOF > "${T}"/45qt3 -PATH=${QTBASE}/bin -ROOTPATH=${QTBASE}/bin -LDPATH=${libdirs:1} -QMAKESPEC=${PLATFORM} -MANPATH=${QTBASE}/doc/man -EOF - - cat <<EOF > "${T}"/50qtdir3 -QTDIR=${QTBASE} -EOF - - cat <<EOF > "${T}"/50-qt3-revdep -SEARCH_DIRS="${QTBASE}" -EOF - - insinto /etc/revdep-rebuild - doins "${T}"/50-qt3-revdep - - doenvd "${T}"/45qt3 "${T}"/50qtdir3 - - if [ "${SYMLINK_LIB}" = "yes" ]; then - dosym $(get_abi_LIBDIR ${DEFAULT_ABI}) ${QTBASE}/lib - fi - - insinto ${QTBASE}/tools/designer - doins -r tools/designer/templates - - insinto ${QTBASE} - doins -r translations - - keepdir ${QTBASE}/etc/settings - - if use doc; then - insinto ${QTBASE} - doins -r "${S}"/doc - fi - - if use examples; then - find "${S}"/examples "${S}"/tutorial -name Makefile | \ - xargs sed -i -e "s:${S}:${QTBASE}:g" - - cp -r "${S}"/examples "${D}"${QTBASE}/ - cp -r "${S}"/tutorial "${D}"${QTBASE}/ - fi - - # misc build reqs - insinto ${QTBASE}/mkspecs - doins -r "${S}"/mkspecs/${PLATFORM} - - sed -e "s:${S}:${QTBASE}:g" \ - "${S}"/.qmake.cache > "${D}"${QTBASE}/.qmake.cache - - dodoc FAQ README README-QT.TXT changes* - if use immqt || use immqt-bc ; then - dodoc "${S}"/README.immodule - fi -} - -pkg_postinst() { - echo - elog "After a rebuild of Qt, it can happen that Qt plugins (such as Qt/KDE styles," - elog "or widgets for the Qt designer) are no longer recognized. If this situation" - elog "occurs you should recompile the packages providing these plugins," - elog "and you should also make sure that Qt and its plugins were compiled with the" - elog "same version of GCC. Packages that may need to be rebuilt are, for instance," - elog "kde-base/kdelibs, kde-base/kdeartwork and kde-base/kdeartwork-styles." - elog "See http://doc.trolltech.com/3.3/plugins-howto.html for more infos." - echo -} |