# HG changeset patch # User Da Risk # Date 1283174220 -7200 # Node ID 58d5cc68f9224cffd7bc998b4f6a9c73c9c50a31 Initial import diff -r 000000000000 -r 58d5cc68f922 dev-tex/tex4ht/Manifest --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dev-tex/tex4ht/Manifest Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,4 @@ +AUX 50tex4ht.cnf 192 RMD160 5b1858ef986eee4d9cc353e2147bee99938d7529 SHA1 6e7e561eb5bbf86dcd32b058e55cd5947e59e783 SHA256 5c9659aad7091b763e4a1363d78629a1ad8e1fe5ba679c151b95c69f4de9d9c1 +DIST tex4ht-1.0.2009_06_11_1038.tar.gz 2576719 RMD160 09bce74e23058d02bc251305632cea4a4ee6595d SHA1 7d46488059316dec3234b6478cd0d2ca8f4d110f SHA256 9f3e259641bb7d5f32b8efaa85cb7c1a9f1a17f5fc6a859c81449d9984ec91a3 +EBUILD tex4ht-20090611_p1038-r2.ebuild 3402 RMD160 6e5377424c600025672eb5698ef0882cb46134c0 SHA1 ec4599c695ef68b7fdf31e1ef07fc3453c70eb16 SHA256 af5d9b649a6a98b941f27ea07fb2b5c847c05178c7c8b6a37bc842a815618a7c +MISC tex4ht-20090611_p1038-r2.ebuild~ 3394 RMD160 87a4c33e53ac7d115ec941035083049a0c003eff SHA1 aed8daa4b2be39d13156a175090f19dba719cf90 SHA256 2d4c20d748e005533cff2ec1a6ad2c87daa5f5a2a78beab4af5c9f493a5110a5 diff -r 000000000000 -r 58d5cc68f922 dev-tex/tex4ht/files/50tex4ht.cnf --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dev-tex/tex4ht/files/50tex4ht.cnf Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,4 @@ +% -- tex4ht configuration params added by texmf-update -- +TEX4HTINPUTS=.;$TEXMF/tex4ht/base//;$TEXMF/tex4ht/ht-fonts// +T4HTINPUTS=.;$TEXMF/tex4ht/base// +% -- tex4ht configuration ends here -- diff -r 000000000000 -r 58d5cc68f922 dev-tex/tex4ht/tex4ht-20090611_p1038-r2.ebuild --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dev-tex/tex4ht/tex4ht-20090611_p1038-r2.ebuild Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,115 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/tex4ht/tex4ht-20090611_p1038-r1.ebuild,v 1.8 2010/07/18 12:25:15 nixnut Exp $ + +EAPI=2 + +inherit latex-package toolchain-funcs java-pkg-opt-2 + +IUSE="" + +# tex4ht-20050331_p2350 -> tex4ht-1.0.2005_03_31_2350 +MY_P="${PN}-1.0.${PV:0:4}_${PV:4:2}_${PV:6:2}_${PV/*_p/}" + +DESCRIPTION="Converts (La)TeX to (X)HTML, XML and OO.org" +HOMEPAGE="http://www.cse.ohio-state.edu/~gurari/TeX4ht/ + http://www.cse.ohio-state.edu/~gurari/TeX4ht/bugfixes.html" +SRC_URI="http://www.cse.ohio-state.edu/~gurari/TeX4ht/fix/${MY_P}.tar.gz" + +LICENSE="LPPL-1.2" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~x86-fbsd" +SLOT="0" + +DEPEND=">=sys-apps/sed-4 + java? ( >=virtual/jdk-1.5 )" + +RDEPEND="app-text/ghostscript-gpl + || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] ) + java? ( >=virtual/jre-1.5 )" + +IUSE="java" + +S="${WORKDIR}/${MY_P}" + +src_unpack() { + unpack ${A} + cd "${S}/texmf/tex4ht/base/unix" + sed -i -e \ + 's#~/tex4ht.dir#/usr/share#' tex4ht.env || die + sed -i -e \ + 's#tpath/tex/texmf/fonts/tfm/!#t/usr/share/texmf/fonts/tfm/!\nt/usr/local/share/texmf/fonts/tfm/!\nt/var/cache/fonts/tfm/!#' tex4ht.env || die + sed -i -e \ + 's#%%~/texmf-dist#/usr/share/texmf#g' tex4ht.env || die + + einfo "Removing precompiled java stuff" + find "${S}" '(' -name '*.class' -o -name '*.jar' ')' -print -delete +} + +src_compile() { + cd "${S}/src/" + einfo "Compiling postprocessor sources..." + for f in tex4ht t4ht htcmd ; do + $(tc-getCC) ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} -o $f $f.c \ + -DENVFILE='"/usr/share/texmf/tex4ht/base/tex4ht.env"' \ + -DHAVE_DIRENT_H -DKPATHSEA -lkpathsea \ + || die "Compiling $f failed" + done + if use java; then + einfo "Compiling java files..." + cd java + ejavac *.java */*.java */*/*.java -d ../../texmf/tex4ht/bin + cd "${S}/texmf/tex4ht/bin" + # Create the jar needed by oolatex + jar -cf "${S}/${PN}.jar" * || die "failed to create jar" + fi +} + +src_install () { + # install the binaries + dobin "${S}/src/tex4ht" "${S}/src/t4ht" "${S}/src/htcmd" + # install the scripts + if ! use java; then + rm -f "${S}"/bin/unix/oo* + rm -f "${S}"/bin/unix/jh* + fi + dobin "${S}"/bin/unix/mk4ht || die + + # install the .4ht scripts + insinto /usr/share/texmf/tex/generic/tex4ht + doins "${S}"/texmf/tex/generic/tex4ht/* || die + + # install the special htf fonts + insinto /usr/share/texmf/tex4ht + doins -r "${S}/texmf/tex4ht/ht-fonts" || die + + if use java; then + # install the java files + doins -r "${S}/texmf/tex4ht/bin" + java-pkg_jarinto /usr/share/texmf/tex4ht/bin + java-pkg_dojar "${S}/${PN}.jar" + fi + + # install the .4xt files + doins -r "${S}/texmf/tex4ht/xtpipes" || die + + # install the env file + insinto /usr/share/texmf/tex4ht/base + newins "${S}/texmf/tex4ht/base/unix/tex4ht.env" tex4ht.env || die + + if latex-package_has_tetex_3 ; then + insinto /etc/texmf/texmf.d + doins "${FILESDIR}/50tex4ht.cnf" || die + fi + + insinto /usr/share/texmf/tex/generic/${PN} + insopts -m755 + doins "${S}"/bin/ht/unix/* || die +} + +pkg_postinst() { + use java || elog 'ODF converters (oolatex & friends) require the java use flag' + latex-package_pkg_postinst + elog "In order to avoid collisions with multiple packages" + elog "We are not installing the scripts in /usr/bin anymore" + elog "If you want to use, say, htlatex, you can use 'mk4ht htlatex file'" +} diff -r 000000000000 -r 58d5cc68f922 dev-util/android-sdk-update-manager/Manifest --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dev-util/android-sdk-update-manager/Manifest Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,9 @@ +AUX android-sdk-update-manager-6-swt.patch 1274 RMD160 fc2ceab8c9a3f9525e7f73ab50281a3e8211b534 SHA1 9d047ece9626ecd8cc8ecc26fc46cde8a22fbce2 SHA256 40d6d969cd612b7e3fddcc4d8f0e933ff2fc405f91279a251c36eba461ac1e0e +AUX android-sdk-update-manager-6-swt.patch~ 634 RMD160 2839f1b3b1ab146d2f891b5d5bc24514df464b6a SHA1 40b98ac385c8b61800e6f8025fce82839b7e341d SHA256 8c12a28a27c922a05d7ddafd9d4306df238ced6330c597e4ae3e5ec77d872732 +DIST android-sdk_r04-linux_86.tgz 15984887 RMD160 370cb158a815f0acc2c1185794ce7fa3ac7daf2a SHA1 3e86b9a6a7420deaa9829c4b3e668c189cd79365 SHA256 61f356de22f8d2069f970b638dfd6a6e23edad13c093a7f20e9f4415e8563a2d +DIST android-sdk_r06-linux_86.tgz 16971139 RMD160 099b6c613063c9a603e3b283579eeb79f30c144c SHA1 41e656c101e0037c875ce1ef448552312e7a5f46 SHA256 9d1f5e2fff0deac3d39dbb8318c96d54f344e731f3a646a910057c6de38bfc40 +EBUILD android-sdk-update-manager-4.ebuild 2405 RMD160 e2cf70bd803c4e41594726f46505d7fed53c9750 SHA1 bc727ef342952e32340e38ac607b83c593cd12bc SHA256 cefc086ef6306bc975455390b5d3cd7cb0b10c5a1735b4c4586fcba087a05b90 +EBUILD android-sdk-update-manager-6-r2.ebuild 2492 RMD160 2cfc9eca24cae8448220c1bd8bb8351e93e81dfe SHA1 76b0a9a0c347b2480fc379837089944a2a98f038 SHA256 c7a4e8d3778c5252ccca8f796a01951cccead17f9c3c7b61cddccf1b6d0cbe00 +MISC ddms 3041 RMD160 c73091ce6d91901788475a0e7a3bb028156ea763 SHA1 a4b2fde70a0dc571a7297bad3130431f9993734c SHA256 104ffdfdca9641cdcacaff7ff987efd3fed97670982b99c627b3a9435fc7593f +MISC ddms-swt.patch 640 RMD160 1f6123ccf75ac8c7f272d2f29488137b26ef6211 SHA1 76f68162ff200edbba836c07977b6aa374a16c63 SHA256 18e8e9d666ae9f626d8d6b96f5c27c3d6cbd10a4810def1fc683fc0047447b79 +MISC ddms-swt.patch~ 600 RMD160 bd6dd1827af3840dc32adea9f07063aff3354c16 SHA1 3aa988e0fc1adecf5643529a87dc3d6461174bd5 SHA256 d64c64df2bed93fa3969ed852df4e651976c4389a55329825c73ba2fe48a8677 diff -r 000000000000 -r 58d5cc68f922 dev-util/android-sdk-update-manager/android-sdk-update-manager-4.ebuild --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dev-util/android-sdk-update-manager/android-sdk-update-manager-4.ebuild Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,72 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/android-sdk-update-manager/android-sdk-update-manager-3-r1.ebuild,v 1.2 2009/11/19 02:41:03 mr_bones_ Exp $ + +EAPI="2" + +inherit eutils + +MY_P="android-sdk_r0${PV}-linux_86" + +DESCRIPTION="Open Handset Alliance's Android SDK/" +HOMEPAGE="http://developer.android.com" +SRC_URI="http://dl.google.com/android/${MY_P}.tgz" +IUSE="" +RESTRICT="mirror strip" + +LICENSE="Apache-2.0 as-is BSD BZIP2 CPL-1.0 EPL-1.0 GPL-2 LGPL-2.1 MIT SPL ZLIB" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=virtual/jdk-1.5 + >=dev-java/ant-core-1.6.5 + amd64? ( app-emulation/emul-linux-x86-gtklibs ) + x86? ( x11-libs/gtk+:2 )" + +ANDROID_SDK_DIR="/opt/${PN}" +QA_DT_HASH_x86=" + ${ANDROID_SDK_DIR/\/}/tools/emulator + ${ANDROID_SDK_DIR/\/}/tools/adb + ${ANDROID_SDK_DIR/\/}/tools/mksdcard + ${ANDROID_SDK_DIR/\/}/tools/sqlite3 + ${ANDROID_SDK_DIR/\/}/tools/hprof-conv + ${ANDROID_SDK_DIR/\/}/tools/zipalign + ${ANDROID_SDK_DIR/\/}/tools/dmtracedump +" +QA_DT_HASH_amd64="${QA_DT_HASH_x86}" + +S="${WORKDIR}/android-sdk-linux_86" + +pkg_setup() { + enewgroup android || die +} + +src_install(){ + dodoc tools/NOTICE.txt "SDK Readme.txt" || die + rm -f tools/NOTICE.txt "SDK Readme.txt" + + insinto "${ANDROID_SDK_DIR}/tools" + doins -r tools/lib || die "failed to doins tools/lib" + rm -rf tools/lib || die + + exeinto "${ANDROID_SDK_DIR}/tools" + doexe tools/* || die "failed to doexe tools/" + + # Maybe this is needed for the tools directory too. + #keepdir "${ANDROID_SDK_DIR}"/{add-ons,docs,platforms,temp} || die "failed to keepdir" + dodir "${ANDROID_SDK_DIR}"/{add-ons,docs,platforms,temp} || die "failed to dodir" + + fowners root:android "${ANDROID_SDK_DIR}"/{,add-ons,docs,platforms,temp} || die + fperms 0775 "${ANDROID_SDK_DIR}"/{,add-ons,docs,platforms,temp} || die + + echo "PATH=\"${ANDROID_SDK_DIR}/tools\"" > "${T}/80${PN}" || die + doenvd "${T}/80${PN}" || die +} + +pkg_postinst() { + elog "The Android SDK now uses its own manager for the development environment." + elog "You must be in the android group to manage the development environment." + elog "Just run 'gpasswd -a android', then have re-login." + elog "See http://dev.android.com/sdk/adding-components.html for more information." + elog "If you have problems downloading the SDK, see http://code.google.com/p/android/issues/detail?id=4406" +} diff -r 000000000000 -r 58d5cc68f922 dev-util/android-sdk-update-manager/android-sdk-update-manager-6-r2.ebuild --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dev-util/android-sdk-update-manager/android-sdk-update-manager-6-r2.ebuild Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,82 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/android-sdk-update-manager/android-sdk-update-manager-6-r1.ebuild,v 1.1 2010/08/17 00:38:06 rich0 Exp $ + +EAPI="2" + +inherit eutils + +MY_P="android-sdk_r0${PV}-linux_86" + +DESCRIPTION="Open Handset Alliance's Android SDK" +HOMEPAGE="http://developer.android.com" +SRC_URI="http://dl.google.com/android/${MY_P}.tgz" +IUSE="" +RESTRICT="mirror" + +LICENSE="android" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="app-arch/tar + app-arch/gzip" +RDEPEND=">=virtual/jdk-1.5 + >=dev-java/ant-core-1.6.5 + =dev-java/swt-3.5* + amd64? ( app-emulation/emul-linux-x86-gtklibs ) + x86? ( x11-libs/gtk+:2 )" + +ANDROID_SDK_DIR="${ROOT}/opt/${PN}" +QA_DT_HASH_x86=" + ${ANDROID_SDK_DIR/\/}/tools/emulator + ${ANDROID_SDK_DIR/\/}/tools/adb + ${ANDROID_SDK_DIR/\/}/tools/mksdcard + ${ANDROID_SDK_DIR/\/}/tools/sqlite3 + ${ANDROID_SDK_DIR/\/}/tools/hprof-conv + ${ANDROID_SDK_DIR/\/}/tools/zipalign + ${ANDROID_SDK_DIR/\/}/tools/dmtracedump +" +QA_DT_HASH_amd64="${QA_DT_HASH_x86}" + +S="${WORKDIR}/android-sdk-linux_86" + +pkg_setup() { + enewgroup android || die +} + +src_prepare(){ + epatch "${FILESDIR}/${PN}-6-swt.patch" + + rm -rf tools/lib/x86* +} + +src_install(){ + dodoc tools/NOTICE.txt "SDK Readme.txt" || die + rm -f tools/NOTICE.txt "SDK Readme.txt" + + insinto "${ANDROID_SDK_DIR}/tools" + doins -r tools/lib || die "failed to doins tools/lib" + rm -rf tools/lib || die + + exeinto "${ANDROID_SDK_DIR}/tools" + doexe tools/* || die "failed to doexe tools/" + + # Maybe this is needed for the tools directory too. + #keepdir "${ANDROID_SDK_DIR}"/{add-ons,docs,platforms,temp} || die "failed to keepdir" + dodir "${ANDROID_SDK_DIR}"/{add-ons,docs,platforms,temp} || die "failed to dodir" + + fowners root:android "${ANDROID_SDK_DIR}"/{,add-ons,docs,platforms,temp} || die + fperms 0775 "${ANDROID_SDK_DIR}"/{,add-ons,docs,platforms,temp} || die + + echo "PATH=\"${ANDROID_SDK_DIR}/tools\"" > "${T}/80${PN}" || die + doenvd "${T}/80${PN}" || die +} + +pkg_postinst() { + elog "The Android SDK now uses its own manager for the development environment." + elog "You must be in the android group to manage the development environment." + elog "Just run 'gpasswd -a android', then have re-login." + elog "See http://developer.android.com/sdk/adding-components.html for more" + elog "information." + elog "If you have problems downloading the SDK, see http://code.google.com/p/android/issues/detail?id=4406" +} diff -r 000000000000 -r 58d5cc68f922 dev-util/android-sdk-update-manager/ddms --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dev-util/android-sdk-update-manager/ddms Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,102 @@ +#!/bin/bash +# Copyright 2005-2007, The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Set up prog to be the path of this script, including following symlinks, +# and set up progdir to be the fully-qualified pathname of its directory. +prog="$0" +while [ -h "${prog}" ]; do + newProg=`/bin/ls -ld "${prog}"` + newProg=`expr "${newProg}" : ".* -> \(.*\)$"` + if expr "x${newProg}" : 'x/' >/dev/null; then + prog="${newProg}" + else + progdir=`dirname "${prog}"` + prog="${progdir}/${newProg}" + fi +done +oldwd=`pwd` +progdir=`dirname "${prog}"` +cd "${progdir}" +progdir=`pwd` +prog="${progdir}"/`basename "${prog}"` +cd "${oldwd}" + +jarfile=ddms.jar +frameworkdir="$progdir" +libdir="$progdir" +if [ ! -r "$frameworkdir/$jarfile" ] +then + frameworkdir=`dirname "$progdir"`/tools/lib + libdir=`dirname "$progdir"`/tools/lib +fi +if [ ! -r "$frameworkdir/$jarfile" ] +then + frameworkdir=`dirname "$progdir"`/framework + libdir=`dirname "$progdir"`/lib +fi +if [ ! -r "$frameworkdir/$jarfile" ] +then + echo `basename "$prog"`": can't find $jarfile" + exit 1 +fi + + +# Check args. +if [ debug = "$1" ]; then + # add this in for debugging + java_debug=-agentlib:jdwp=transport=dt_socket,server=y,address=8050,suspend=y + shift 1 +else + java_debug= +fi + +javaCmd="java" + +# Mac OS X needs an additional arg, or you get an "illegal thread" complaint. +if [ `uname` = "Darwin" ]; then + os_opts="-XstartOnFirstThread" +else + os_opts= +fi + +if [ `uname` = "Linux" ]; then + export GDK_NATIVE_WINDOWS=true +fi + +jarpath="$frameworkdir/$jarfile" + +# Figure out the path to the swt.jar for the current architecture. +# if ANDROID_SWT is defined, then just use this. +# else, if running in the Android source tree, then look for the correct swt folder in prebuilt +# else, look for the correct swt folder in the SDK under tools/lib/ +swtpath="" +if [ -n "$ANDROID_SWT" ]; then + swtpath="$ANDROID_SWT" +else + swtpath=`dirname \`java-config -p swt-3.5\`` +fi + +# Combine the swtpath and the framework dir path. +if [ -d "$swtpath" ]; then + frameworkdir="${swtpath}:${frameworkdir}" +else + echo "SWT folder '${swtpath}' does not exist." + echo "Please export ANDROID_SWT to point to the folder containing swt.jar for your platform." + exit 1 +fi + +# need to use "java.ext.dirs" because "-jar" causes classpath to be ignored +# might need more memory, e.g. -Xmx128M +exec "$javaCmd" -Xmx256M $os_opts $java_debug -Djava.ext.dirs="$frameworkdir" -Dcom.android.ddms.bindir="$progdir" -jar "$jarpath" "$@" diff -r 000000000000 -r 58d5cc68f922 dev-util/android-sdk-update-manager/ddms-swt.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dev-util/android-sdk-update-manager/ddms-swt.patch Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,17 @@ +--- android-sdk-linux_86/tools/ddms.old 2010-08-21 18:25:12.000000000 +0200 ++++ android-sdk-linux_86/tools/ddms 2010-08-26 14:44:36.000000000 +0200 +@@ -85,13 +85,7 @@ + if [ -n "$ANDROID_SWT" ]; then + swtpath="$ANDROID_SWT" + else +- vmarch=`${javaCmd} -jar "${frameworkdir}"/archquery.jar` +- if [ -n "$ANDROID_BUILD_TOP" ]; then +- osname=`uname -s | tr A-Z a-z` +- swtpath="${ANDROID_BUILD_TOP}/prebuilt/${osname}-${vmarch}/swt" +- else +- swtpath="${frameworkdir}/${vmarch}" +- fi ++ swtpath=`dirname \`java-config -p swt-3.5\`` + fi + + # Combine the swtpath and the framework dir path. diff -r 000000000000 -r 58d5cc68f922 dev-util/android-sdk-update-manager/files/android-sdk-update-manager-6-swt.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dev-util/android-sdk-update-manager/files/android-sdk-update-manager-6-swt.patch Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,34 @@ +--- android-sdk-linux_86/tools/android.old 2010-08-16 19:56:17.522813374 -0400 ++++ android-sdk-linux_86/tools/android 2010-08-16 19:56:57.876813929 -0400 +@@ -93,13 +93,7 @@ + if [ -n "$ANDROID_SWT" ]; then + swtpath="$ANDROID_SWT" + else +- vmarch=`"${java_cmd}" -jar "${frameworkdir}/archquery.jar"` +- if [ -n "$ANDROID_BUILD_TOP" ]; then +- osname=`uname -s | tr A-Z a-z` +- swtpath="${ANDROID_BUILD_TOP}/prebuilt/${osname}-${vmarch}/swt" +- else +- swtpath="${frameworkdir}/${vmarch}" +- fi ++ swtpath=`dirname \`java-config -p swt-3.5\`` + fi + + # Combine the swtpath and the framework dir path. +--- android-sdk-linux_86/tools/ddms.old 2010-08-21 18:25:12.000000000 +0200 ++++ android-sdk-linux_86/tools/ddms 2010-08-26 14:44:36.000000000 +0200 +@@ -85,13 +85,7 @@ + if [ -n "$ANDROID_SWT" ]; then + swtpath="$ANDROID_SWT" + else +- vmarch=`${javaCmd} -jar "${frameworkdir}"/archquery.jar` +- if [ -n "$ANDROID_BUILD_TOP" ]; then +- osname=`uname -s | tr A-Z a-z` +- swtpath="${ANDROID_BUILD_TOP}/prebuilt/${osname}-${vmarch}/swt" +- else +- swtpath="${frameworkdir}/${vmarch}" +- fi ++ swtpath=`dirname \`java-config -p swt-3.5\`` + fi + + # Combine the swtpath and the framework dir path. diff -r 000000000000 -r 58d5cc68f922 media-video/perroquet/Manifest --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/media-video/perroquet/Manifest Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,4 @@ +DIST perroquet-1.0.0.tar.gz 185621 RMD160 633728a3905f7a3655fc6a21d290c38721b1ddd7 SHA1 02a4da05236b581ccb038de4690ffde36b4a01c2 SHA256 77e61e1bd54e5d46e79f007b0c278bf5e883e381d86e0eff6f1b85a72a79c3ff +EBUILD perroquet-1.0.0.ebuild 521 RMD160 ee954a35b8eb9878c5c272f67a77e99abe09baa4 SHA1 902a4d7c9ea793d7b132a775306c8998b7e32c07 SHA256 a71195f593ec03e73ea5e39ca9d2fc554a65f1d621e42caa9a788e454883746f +MISC perroquet-1.0.0.ebuild~ 520 RMD160 1cf80081f8d53714be8df5a276c682bb01a8de77 SHA1 6de2e49ec09c5337a895b6b1f1a4dc9353b3f21a SHA256 584b2a8f8189a36048d30c4ab10e81d0efc12dc36024aafc11c0564ec06efaec +MISC perroquet-1.0.ebuild~ 423 RMD160 e709ae888d3bc4abf2ef70d4fe3edfb4d9b16389 SHA1 676628f3baf4b672a40943483a383dadc91697b8 SHA256 eafade4f0050b58c1f17442849d617a64ffe9cb57e25470d3f088bde527ba577 diff -r 000000000000 -r 58d5cc68f922 media-video/perroquet/perroquet-1.0.0.ebuild --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/media-video/perroquet/perroquet-1.0.0.ebuild Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,22 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +DESCRIPTION="" +HOMEPAGE="http://perroquet.b219.org/index.html" +SRC_URI="http://launchpad.net/perroquet/trunk/${PV}/+download/${PN}-${PV}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +# maybe I miss some deps +DEPEND=">=dev-python/pygtk-2.14 + >=dev-lang/python-2.6 + dev-python/gst-python" +RDEPEND="${DEPEND}" + +src_install() { + emake DESTDIR=${D} install || die "install failed" +} diff -r 000000000000 -r 58d5cc68f922 net-im/nosoucy/.NoSoucy-0.3d.ebuild.swp Binary file net-im/nosoucy/.NoSoucy-0.3d.ebuild.swp has changed diff -r 000000000000 -r 58d5cc68f922 net-im/nosoucy/Manifest --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/net-im/nosoucy/Manifest Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,3 @@ +DIST NoSoucy-0.3d.tar.gz 117822 RMD160 ba2fe14eade4ef06bce3fe5a265694c91ba43e10 SHA1 a9e4011ea07999e2c8472123f616e33df73909c2 SHA256 03108c7daf33cf14abdbf157c6414ec8711c02a83ea04d2d942820b86797d121 +EBUILD nosoucy-0.3d.ebuild 553 RMD160 aac797b23464f3e750719b3dc4abef90abb56ea1 SHA1 e4198f20b2378bf2f7316b8dd6beec69df96ee0e SHA256 0bbe62e6c93b01d600ee66d91086d4411c901d91590043599c26fff3b86fe134 +MISC NoSoucy-0.3d.tar.gz 117822 RMD160 ba2fe14eade4ef06bce3fe5a265694c91ba43e10 SHA1 a9e4011ea07999e2c8472123f616e33df73909c2 SHA256 03108c7daf33cf14abdbf157c6414ec8711c02a83ea04d2d942820b86797d121 diff -r 000000000000 -r 58d5cc68f922 net-im/nosoucy/NoSoucy-0.3d.tar.gz Binary file net-im/nosoucy/NoSoucy-0.3d.tar.gz has changed diff -r 000000000000 -r 58d5cc68f922 net-im/nosoucy/nosoucy-0.3d.ebuild --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/net-im/nosoucy/nosoucy-0.3d.ebuild Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,38 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +DESCRIPTION="A Netsoul client for Epita/Epitech schools" +HOMEPAGE="" +SRC_URI="http://ks358216.kimsufi.com/~darisk/NoSoucy-0.3d.tar.gz" + +LICENSE="" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="=x11-libs/gtk+-1.2* + media-libs/imlib + dev-libs/libxml2" +RDEPEND="" + +S="NoSoucy-${PV}" + +src_unpack() +{ + unpack ${A} + cd "${S}" +} + +src_compile() +{ + cd ${S} + emake || die "emake failed" +} + +src_install() +{ + cd ${S} + dobin NoSoucy +} + diff -r 000000000000 -r 58d5cc68f922 net-misc/keychain/.keychain-2.7.0.ebuild.swp Binary file net-misc/keychain/.keychain-2.7.0.ebuild.swp has changed diff -r 000000000000 -r 58d5cc68f922 net-misc/keychain/ChangeLog --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/net-misc/keychain/ChangeLog Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,390 @@ +# ChangeLog for net-misc/keychain +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/keychain/ChangeLog,v 1.85 2010/01/16 19:36:22 armin76 Exp $ + + 16 Jan 2010; Raúl Porcel keychain-2.7.0.ebuild: + arm/ia64/s390/sh stable wrt #296404 + + 16 Jan 2010; Jonathan Callen keychain-2.7.0.ebuild: + Add prefix keywords + + 01 Jan 2010; Tobias Klausmann keychain-2.7.0.ebuild: + Stable on alpha, bug #296404 + + 28 Dec 2009; nixnut keychain-2.7.0.ebuild: + ppc stable #296404 + + 17 Dec 2009; Pacho Ramos keychain-2.7.0.ebuild: + stable amd64, bug 296404 + + 14 Dec 2009; Brent Baude keychain-2.7.0.ebuild: + stable ppc64, bug 296404 + + 11 Dec 2009; Tiago Cunha keychain-2.7.0.ebuild: + stable sparc, bug 296404 + + 10 Dec 2009; Jeroen Roovers keychain-2.7.0.ebuild: + Stable for HPPA (bug #296404). + + 10 Dec 2009; Christian Faulhammer + keychain-2.7.0.ebuild: + stable x86, bug 296404 + +*keychain-2.7.0 (27 Oct 2009) + + 27 Oct 2009; Jeremy Olexa +keychain-2.7.0.ebuild: + Version bump. closes bug 250328 & 196060 + + 02 Aug 2009; Jeremy Olexa metadata.xml: + add drobbins to metadata per discussion with him + +*keychain-2.6.9 (02 Aug 2009) + + 02 Aug 2009; Jeremy Olexa -keychain-2.6.6.ebuild, + +keychain-2.6.9.ebuild: + version bump, bug fix release + + 02 Aug 2009; Jeremy Olexa metadata.xml: + add myself as maintainer as discussed with robbat2 of the base-system herd + + 11 Mar 2008; keychain-2.6.6.ebuild: + Drop to ~mips due to unstable deps + + 02 Mar 2008; Wulf C. Krueger + keychain-2.6.8.ebuild: + Marked stable on amd64 as per bug 188440. + + 15 Jan 2008; Raúl Porcel keychain-2.6.8.ebuild: + alpha/ia64/sparc stable wrt #188440 + + 10 Jan 2008; Brent Baude keychain-2.6.8.ebuild: + Marking keychain-2.6.8 ppc and ppc64 for bug 18840 + + 10 Jan 2008; Markus Meier keychain-2.6.8.ebuild: + x86 stable, bug #188440 + + 10 Jan 2008; Jeroen Roovers keychain-2.6.8.ebuild: + Stable for HPPA (bug #188440). + + 15 Sep 2007; Mike Frysinger keychain-2.6.6.ebuild, + keychain-2.6.8.ebuild: + Use mirror://gentoo in SRC_URI #192390. + + 29 Aug 2007; Christian Heim metadata.xml: + Removing agriffis from metadata due to his retirement (see #182294 for + reference). + + 02 Dec 2006; Diego Pettenò keychain-2.6.6.ebuild: + There is no stable for x86-fbsd, again. + +*keychain-2.6.8 (24 Oct 2006) + + 24 Oct 2006; Aron Griffis +keychain-2.6.8.ebuild: + Bump to 2.6.8. Fix pinentry problems with some locale combinations. + + 17 Oct 2006; Roy Marples keychain-2.6.6.ebuild: + Added ~sparc-fbsd keyword. + + 14 Oct 2006; Aron Griffis -keychain-2.6.2.ebuild, + keychain-2.6.6.ebuild: + Mark 2.6.6 stable everywhere. Remove 2.6.2 + +*keychain-2.6.6 (08 Sep 2006) + + 08 Sep 2006; Aron Griffis -keychain-2.6.4.ebuild, + +keychain-2.6.6.ebuild: + Bump to 2.6.6 (from 2.6.4). Make --lockwait -1 mean forever. Previously + 0 meant forever but was undocumented #137981. + Break out of loop when empty lockfile can't be removed #127471. + Remove 2.6.4 + +*keychain-2.6.4 (08 Sep 2006) + + 08 Sep 2006; Aron Griffis -keychain-2.6.3.ebuild, + +keychain-2.6.4.ebuild: + Bump to 2.6.4. Postpone validity checking of SSH_AUTH_SOCK for + --inherit=any-once and --inherit=local-once, so that warning messages aren't + emitted unnecessarily. Fix --eval for fish. Remove 2.6.3 + + 08 Sep 2006; Aron Griffis keychain-2.6.2.ebuild, + keychain-2.6.3.ebuild: + Remove virtual/libc from DEPEND; this is just a (high-quality!) shell script + + 08 Sep 2006; Diego Pettenò keychain-2.6.2.ebuild: + There's no stable for x86-fbsd, revert. + +*keychain-2.6.3 (07 Sep 2006) + + 07 Sep 2006; Aron Griffis -keychain-2.6.1.ebuild, + keychain-2.6.2.ebuild, +keychain-2.6.3.ebuild: + Bump to 2.6.3: Support fish: http://roo.no-ip.org/fish/ Thanks to Ilkka + Poutanen for the patch. Mark 2.6.2 stable everywhere. Remove 2.6.1 + + 03 Apr 2006; Diego Pettenò keychain-2.6.2.ebuild: + Add ~x86-fbsd keyword. + +*keychain-2.6.2 (20 Mar 2006) + + 20 Mar 2006; Aron Griffis +keychain-2.6.2.ebuild: + Bump to 2.6.2: Add --confirm option and corresponding regression tests for + Debian bug 296382. Thanks to Liyang HU for the patch. Also add + initialization for $ssh_timeout which was being inherited from the + environment and add regression tests for --timeout + + 13 Jan 2006; Aron Griffis -keychain-2.5.5.ebuild: + Remove 2.5.5 + + 13 Jan 2006; Aron Griffis keychain-2.6.1.ebuild: + Mark 2.6.1 stable on + alpha/amd64/arm/hppa/ia64/mips/ppc/ppc-macos/ppc64/s390/sparc/x86 + + 13 Oct 2005; Aron Griffis keychain-2.5.5.ebuild, + keychain-2.6.1.ebuild: + Remove coreutils dep for the sake of ppc-macos and fbsd, etc + +*keychain-2.6.1 (10 Oct 2005) + + 10 Oct 2005; Aron Griffis -keychain-2.6.0.ebuild, + +keychain-2.6.1.ebuild: + Bump to 2.6.1 (from 2.6.0) with a one-line fix. Remove 2.6.0 + +*keychain-2.6.0 (10 Oct 2005) + + 10 Oct 2005; Aron Griffis -keychain-2.5.3.1.ebuild, + -keychain-2.5.4.1.ebuild, keychain-2.5.5.ebuild, +keychain-2.6.0.ebuild: + Bump to 2.6.0 (from 2.5.5). Mark 2.5.5 stable on + alpha/amd64/arm/hppa/ia64/mips/ppc/ppc-macos/ppc64/s390/sparc/x86. Remove + 2.5.4.1, 2.5.3.1 + + 05 Oct 2005; Fabian Groffen keychain-2.5.5.ebuild: + Marking ~ppc-macos as it seems to work fine. + +*keychain-2.5.5 (28 Jul 2005) + + 28 Jul 2005; Aron Griffis +keychain-2.5.5.ebuild: + Bump to 2.5.5, which adds support for --env + + 28 May 2005; Aron Griffis keychain-2.5.4.1.ebuild: + Stable everywhere + +*keychain-2.5.4.1 (12 May 2005) + + 12 May 2005; Aron Griffis -keychain-2.5.4.ebuild, + +keychain-2.5.4.1.ebuild: + Update to 2.5.4.1, which doesn't always exit(1) + +*keychain-2.5.4 (12 May 2005) + + 12 May 2005; Aron Griffis -keychain-2.5.1.ebuild, + +keychain-2.5.4.ebuild: + Update to 2.5.4: If any locale variables are set, override them + with LC_ALL=C. This fixes a multibyte issue with awk that could keep a running + ssh-agent from being found #92316. Use files instead of symlinks for locking, + since symlink creation is not atomic on cygwin #87340 + + 14 Mar 2005; Aron Griffis keychain-2.5.3.1.ebuild: + Stable everywhere + +*keychain-2.5.3.1 (10 Mar 2005) + + 10 Mar 2005; Aron Griffis -keychain-2.5.3.ebuild, + +keychain-2.5.3.1.ebuild: + Update to 2.5.3.1: Fix problem introduced in 2.5.3 wrt adding gpg keys to + the agent. Thanks to Azarah for spotting it. + +*keychain-2.5.3 (09 Mar 2005) + + 09 Mar 2005; Aron Griffis -keychain-2.5.2.ebuild, + +keychain-2.5.3.ebuild: + Bump to 2.5.3 with minor gpg and DISPLAY fixes + +*keychain-2.5.2 (07 Mar 2005) + + 07 Mar 2005; Aron Griffis -keychain-2.4.3.ebuild, + +keychain-2.5.2.ebuild: + Update to 2.5.2 + + 15 Jan 2005; Aron Griffis keychain-2.5.1.ebuild: + keychain-2.5.1 stable everywhere + + 12 Jan 2005; Aron Griffis keychain-2.5.1.ebuild: + add reference to Keychain Guide in pkg_postinst #59382 + +*keychain-2.5.1 (12 Jan 2005) + + 12 Jan 2005; Aron Griffis -keychain-2.5.0.ebuild, + +keychain-2.5.1.ebuild: + Update to 2.5.1 which prevents inheriting a forwarded agent unless --inherit + any or any-once is specified + +*keychain-2.5.0 (07 Jan 2005) + + 07 Jan 2005; Aron Griffis -keychain-2.3.5.ebuild, + keychain-2.4.3.ebuild, +keychain-2.5.0.ebuild: + Mark 2.4.3 stable, bump testing to 2.5.0 + +*keychain-2.4.2.1 (18 Nov 2004) + + 18 Nov 2004; Aron Griffis -keychain-2.4.2.1.ebuild, + +keychain-2.4.3.ebuild: + Update to 2.4.3 which fixes ps issues on BSD + + 30 Sep 2004; Aron Griffis -keychain-2.4.2.ebuild: + Update to 2.4.2.1 which fixes some minor issues with gpg + +*keychain-2.4.2 (30 Sep 2004) + + 30 Sep 2004; Aron Griffis -keychain-2.4.0.ebuild, + +keychain-2.4.2.ebuild: + Update to 2.4.2, remove 2.4.0 + - Fix gpg-agent support and make it more complete. Allow adding + keys, clearing the agent, etc. + - Fix --quick support to work properly again; it was broken since + 2.4.0 + - Change default --attempts to 1 since the progs ask multiple times + anyway + +*keychain-2.4.0 (09 Sep 2004) + + 09 Sep 2004; Aron Griffis -keychain-2.3.4.ebuild, + keychain-2.3.5.ebuild, +keychain-2.4.0.ebuild: + Update to 2.4.0, bump 2.3.5 to stable, remove 2.3.4 + - Fix bug 26970 with first pass at gpg-agent support. + - Fix Debian bug 269722: don't filter output of ssh-add. + - Fix bug reported by Marko Myllynen regarding keychain and + Solaris awk's inability to process -F'[ :]' + - Fix bug in now_seconds calculation, noticed by me. + +*keychain-2.3.5 (28 Jul 2004) + + 28 Jul 2004; Aron Griffis -keychain-2.3.3.ebuild, + keychain-2.3.4.ebuild, +keychain-2.3.5.ebuild: + Update to 2.3.5, mark 2.3.4 stable, remove 2.3.3 + - Fix problem where keychain would report the wrong number of keys + being added, thanks to Daniel Westermann-Clark for providing a patch + in bug 58623 + + 24 Jul 2004; Aron Griffis -keychain-2.3.2.ebuild, + keychain-2.3.3.ebuild, +keychain-2.3.4.ebuild: + Update to 2.3.4, mark 2.3.3 stable, remove 2.3.2 + - Fix bug where keychain would mistake defunct ssh-agent processes + as running #28599 + + 01 Jul 2004; Jon Hood keychain-2.3.2.ebuild, + keychain-2.3.3.ebuild: + change virtual/glibc to virtual/libc + +*keychain-2.3.3 (01 Jul 2004) + + 01 Jul 2004; Aron Griffis -keychain-2.2.2.ebuild, + -keychain-2.3.0.ebuild, +keychain-2.3.3.ebuild: + Bump version to 2.3.3 and trim older ebuilds + - Fix bug reported by Matthew S. Moore in email; escape the backticks + in --help output + - Fix bug reported by Herbie Ong in email; set pidf, cshpidf and lockf + variables after parsing command-line to honor --dir setting + - Fix bug reported by Stephan Stahl in email; make spaces in filenames + work throughout keychain, even in pure Bourne shell + - Fix operation on HP-UX with older OpenSSH by interpreting output of + ssh-add as well as the error status + + 18 Jun 2004; Aron Griffis -keychain-2.3.1.ebuild, + keychain-2.3.2.ebuild: + Mark 2.3.2 stable everywhere, trim 2.3.1 ebuild + +*keychain-2.3.2 (16 Jun 2004) + + 16 Jun 2004; Aron Griffis +keychain-2.3.2.ebuild: + Fix bug 53837 (keychain needs ssh-askpass) by unsetting SSH_ASKPASS when + --nogui is specified + +*keychain-2.3.1 (03 Jun 2004) + + 03 Jun 2004; Aron Griffis +keychain-2.3.1.ebuild: + Fix bug 52874: problems when using csh + + 28 May 2004; Aron Griffis -keychain-2.0.2.ebuild, + -keychain-2.0.3.ebuild, -keychain-2.2.0.ebuild, keychain-2.2.2.ebuild, + keychain-2.3.0.ebuild: + Mark 2.2.2 and 2.3.0 stable on all arches + +*keychain-2.3.0 (14 May 2004) + + 14 May 2004; Aron Griffis +keychain-2.3.0.ebuild: + Version bump to 2.3.0, which removes the dependency on procmail for locking + +*keychain-2.2.2 (03 May 2004) + + 03 May 2004; Aron Griffis keychain-2.2.0.ebuild, + +keychain-2.2.2.ebuild: + Update to 2.2.2 with fixes for Solaris and csh. Mark 2.2.0 stable, 2.2.2 will + follow soon. + +*keychain-2.2.0 (21 Apr 2004) + + 21 Apr 2004; Aron Griffis +keychain-2.2.0.ebuild: + Rewrote most of the code, organized into functions, fixed speed issues + involving ps, fixed compatibility issues for various UNIXes, hopefully + didn't introduce too many bugs. This version has a --quick option + (for me) and a --timeout option (for carpaski). + + 19 Apr 2004; Mike Frysinger keychain-2.0.3.ebuild: + Marked 2.0.3 stable on all arches + + 16 Apr 2004; Michael McCabe keychain-2.0.3.ebuild: + added s390 keywords + + 11 Mar 2004; Michael Sterrett keychain-2.0.2.ebuild, + keychain-2.0.3.ebuild: + error checking; don't use S=${WORKDIR}/${P} + + 05 Mar 2004; Tom Gall keychain-2.0.3.ebuild: + Marked stable on ppc64 + + 05 Jan 2004; Jason Wever keychain-2.0.3.ebuild: + Marked stable on sparc. + +*keychain-2.0.3 (22 Apr 2003) + + 22 Apr 2003; Seth Chandler ; keychain-2.0.3.ebuild: + a couple of changes...one for cygwin ($grepopts), and a colorized doc + change...oh oh oh, we have a man page now ! man keychain =) We also + Have COPYING included in the tar.bz2 now...not that it matters for us + Gentoo folk... + + 26 Mar 2003; Graham Forest keychain-2.0.2.ebuild : + Automated cleanup of LICENSE + + 19 Dec 2002; Martin Holzer keychain-2.0.2.ebuild Changelog : + Fixed Homepage url (#12455). + + 16 Dec 2002; Daniel Robbins added sh-utils runtime dep + to the 2.0.2 ebuild; this closes bug #10376. No rev bump. + + 06 Dec 2002; Rodney Rees changed sparc ~sparc keywords + +*keychain-2.0.2 (27 Mar 2003) + + 13 Jul 2003; Daniel Ahlberg : + Added missing changelog entry. + +*keychain-1.9 (23 Feb 2002) + + 28 Aug 2002; Calum Selkirk keychain-2.0.2.ebuild : + + New ebuild + + 3 Aug 2002; Calum Selkirk keychain-1.9.ebuild + + Added ppc to KEYWORDS. + + 07 Jul 2002; phoen][x keychain-1.9.ebuild : + Added KEYWORDS, LICENSE, SLOT. + + 23 Feb 2002; Daniel Robbins : New release + +*keychain-1.8 (1 Feb 2002) + + 1 Feb 2002; Donny Davies : + Added Daniel Robbins' keychain utility to portage. Feels weird but + hey, somebody's gotta do it right? :) diff -r 000000000000 -r 58d5cc68f922 net-misc/keychain/Manifest --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/net-misc/keychain/Manifest Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,6 @@ +AUX keychain-2.7.0-fix-pinentry.patch 952 RMD160 a23446060a6e25c496f0351c49763c6e9cb27860 SHA1 556c498ddc172a1d1c5c356155dba587e4cf7031 SHA256 049728c338c0aeea39b33f7fcb5b98cbffeaac28fbe7f738354cc4cf7571b822 +DIST keychain-2.7.0.tar.bz2 57072 RMD160 368cee883231183bbd677c72e32fb3977d8b7987 SHA1 3c9e43252011dd275bcf5f5a4da2141416fc6c60 SHA256 7784773ca4eaed559c0ad7be1d9a0b7c3d96bad1be03696a3dffa90458737a22 +EBUILD keychain-2.7.0.ebuild 1122 RMD160 b90887afc9489956ed3e02cd786b49d01c6ff461 SHA1 6792c0c3be8f949ae99c77f6270b46a3505a36a5 SHA256 620565370b800314517b07ba72ef37cb72140a91e29ad3f051ea2559aef2d703 +MISC ChangeLog 14386 RMD160 8fc4895268ded13c8d4d43f48182945794ec2e3c SHA1 da328ac48100a371c04f8e3c1026d9ee4c9b0576 SHA256 e865a1990d703190f98bb97152df743699d5a7e4cd5bae3f7aab5beeaea50284 +MISC keychain-2.7.0.ebuild~ 1106 RMD160 f6902579d3bb4dd6c98d7cbd2bd802f5580e01d4 SHA1 908ca41b54aaea8c78daef170af7a8ff07118df8 SHA256 1bf5344c0a82ebc08e2ae80d0ab5d3fce9af438021c316ef38c1c90df3f51d70 +MISC metadata.xml 383 RMD160 4303eb296f14cc34afa9bdb2e8b9532b69c7c9b8 SHA1 660a8ddc6aa3b53ca5525e4f8f6fd108a12904fa SHA256 c58a504e8eb4c78dd0c307371819f04871461e299e95a2307d9954e277cec824 diff -r 000000000000 -r 58d5cc68f922 net-misc/keychain/files/keychain-2.7.0-fix-pinentry.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/net-misc/keychain/files/keychain-2.7.0-fix-pinentry.patch Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,21 @@ +diff -Nur keychain-2.7.0/keychain.sh keychain-2.7.0-b/keychain.sh +--- keychain-2.7.0/keychain.sh 2009-10-23 22:23:07.000000000 +0200 ++++ keychain-2.7.0-b/keychain.sh 2010-04-11 22:58:25.570963964 +0200 +@@ -767,6 +767,8 @@ + gpg_listmissing() { + unset glm_missing + ++ GPG_TTY=`tty` ++ + # Parse $gpgkeys into positional params to preserve spaces in filenames + set -f # disable globbing + glm_IFS="$IFS" # save current IFS +@@ -778,7 +780,7 @@ + + for glm_k in "$@"; do + # Check if this key is known to the agent. Don't know another way... +- if echo | env -i PATH="$PATH" GPG_AGENT_INFO="$GPG_AGENT_INFO" \ ++ if echo | env -i GPG_TTY="$GPG_TTY" PATH="$PATH" GPG_AGENT_INFO="$GPG_AGENT_INFO" \ + gpg --no-options --use-agent --no-tty --sign --local-user "$glm_k" -o- >/dev/null 2>&1; then + # already know about this key + mesg "Known gpg key: ${CYANN}${glm_k}${OFF}" diff -r 000000000000 -r 58d5cc68f922 net-misc/keychain/keychain-2.7.0.ebuild --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/net-misc/keychain/keychain-2.7.0.ebuild Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,39 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/keychain/keychain-2.7.0.ebuild,v 1.10 2010/01/16 19:36:22 armin76 Exp $ + +EAPI=2 + +DESCRIPTION="manage ssh and GPG keys in a convenient and secure manner. Frontend for ssh-agent/ssh-add" +HOMEPAGE="http://www.funtoo.org/en/security/keychain/intro/" +SRC_URI="http://www.funtoo.org/archive/keychain/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" + +DEPEND="" +RDEPEND="app-shells/bash + || ( net-misc/openssh net-misc/ssh )" + +inherit eutils + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}/${P}-fix-pinentry.patch" +} + + +src_install() { + dobin keychain || die "dobin failed" + doman keychain.1.gz || die "doman failed" + dodoc ChangeLog README.rst || die +} + +src_test() { + # Work in progress, not all pass so we don't die yet. + ./runtests +} diff -r 000000000000 -r 58d5cc68f922 net-misc/keychain/metadata.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/net-misc/keychain/metadata.xml Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,13 @@ + + + +base-system + + darkside@gentoo.org + + + drobbins@funtoo.org + Daniel Robbins + Upstream contact, please CC on bugs + + diff -r 000000000000 -r 58d5cc68f922 profiles/repo_name --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/profiles/repo_name Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,1 @@ +Da Risk Personal repos diff -r 000000000000 -r 58d5cc68f922 www-apps/redmine/Manifest --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/www-apps/redmine/Manifest Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,5 @@ +AUX 10_redmine_vhost.conf 343 RMD160 b4d6188a7579162b5d3ce891cab3ed1b7a1fc2f8 SHA1 e176c667402308b8475bec75890cca3a22d99a42 SHA256 4067d312a5fc8e7f1f98e8917d2e9c296a70a7e9847efaf92a8415d753387435 +AUX redmine.confd 267 RMD160 03b2a3d9d4e156bc0a6bd6969a3ae8800c9a51d9 SHA1 9402fd36df731413ce130e7e63411729de391444 SHA256 2ac6b7dfc2d055554b7ee9380fcf1a49a708bbd866987b775507d7a3b30f2d41 +AUX redmine.initd 1087 RMD160 13ab93c43d9107e0aba194ec7fa091eee07fccfe SHA1 41d8731f4e24743778c8ea45266dd1a56d95bb74 SHA256 f39996beac3cafb023086795baa277e8ec6342697feff28dc89641869bfaaee6 +DIST redmine-1.0.0.tar.gz 4703623 RMD160 49d72dc47b7333868604120fd04691d391470568 SHA1 afda75d5c38f7417b96258b4e2f3129631f52b9b SHA256 3799bdee475cdefc2ad03dc6df81680376bc173a6dbb1492734249e464dee948 +EBUILD redmine-1.0.0.ebuild 4927 RMD160 006ebe0403f2f054752ae0330ca9a3b98277f4d2 SHA1 62d788ef6875248730869c31429bde8e80cc00cb SHA256 3b1e5a9f288e58e9b9a0fe760389732f0761c550131942431da624a983751dd2 diff -r 000000000000 -r 58d5cc68f922 www-apps/redmine/files/10_redmine_vhost.conf --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/www-apps/redmine/files/10_redmine_vhost.conf Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,12 @@ + +Listen 3000 + + DocumentRoot /var/lib/redmine/public +# RailsEnv production + + Options FollowSymLinks + Order allow,deny + Allow from all + + + diff -r 000000000000 -r 58d5cc68f922 www-apps/redmine/files/redmine.confd --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/www-apps/redmine/files/redmine.confd Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,13 @@ +# /etc/conf.d/redmine: config file for /etc/init.d/redmine +# Bind to specified address +# You can set to 0.0.0.0 to accept requests anywhere +#REDMINE_ADDRESS="localhost" + +# Port +#REDMINE_PORT=3000 + +# RAILS_ENV +#RAILS_ENV=production + +# additional opts +#REDMINE_OPTS="" diff -r 000000000000 -r 58d5cc68f922 www-apps/redmine/files/redmine.initd --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/www-apps/redmine/files/redmine.initd Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,35 @@ +#!/sbin/runscript +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/redmine/files/redmine.initd,v 1.1 2010/02/10 16:40:42 matsuu Exp $ + +RAILS_ENV=${RAILS_ENV:-production} +REDMINE_DIR=${REDMINE_DIR:-/var/lib/redmine} +REDMINE_ADDRESS=${REDMINE_ADDRESS:-localhost} +REDMINE_PORT=${REDMINE_PORT:-3000} +REDMINE_USER=${REDMINE_USER:-redmine} +REDMINE_GROUP=${REDMINE_GROUP:-redmine} +REDMINE_PIDFILE="${REDMINE_DIR}/tmp/pids/server.pid" + +depend() { + use apache2 git-daemon mysql net postgresql svnserve +} + +start() { + ebegin "Starting redmine" + cd "${REDMINE_DIR}" + start-stop-daemon --start --quiet --chuid ${REDMINE_USER}:${REDMINE_GROUP} \ + --pidfile "${REDMINE_PIDFILE}" \ + --exec /usr/bin/ruby "${REDMINE_DIR}"/script/server -- \ + --daemon --environment=${RAILS_ENV} \ + --binding=${REDMINE_ADDRESS} --port=${REDMINE_PORT} \ + ${REDMINE_OPTS} + eend $? +} + +stop() { + ebegin "Stopping redmine" + cd "${REDMINE_DIR}" + start-stop-daemon --stop --quiet --pidfile "${REDMINE_PIDFILE}" + eend $? +} diff -r 000000000000 -r 58d5cc68f922 www-apps/redmine/redmine-1.0.0.ebuild --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/www-apps/redmine/redmine-1.0.0.ebuild Mon Aug 30 15:17:00 2010 +0200 @@ -0,0 +1,152 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/redmine/redmine-0.9.6.ebuild,v 1.2 2010/07/10 04:54:33 matsuu Exp $ + +EAPI="2" +USE_RUBY="ruby18" +inherit eutils confutils depend.apache ruby-ng + +DESCRIPTION="Redmine is a flexible project management web application written using Ruby on Rails framework" +HOMEPAGE="http://www.redmine.org/" +SRC_URI="mirror://rubyforge/${PN}/${P}.tar.gz" + +KEYWORDS="~amd64 ~x86" +LICENSE="GPL-2" +SLOT="0" +IUSE="cvs darcs fastcgi git imagemagick mercurial mysql openid passenger postgres sqlite3 subversion" + +ruby_add_rdepend ">=dev-ruby/rails-2.3.5:2.3 + >=dev-ruby/coderay-0.7.6.227 + >=dev-ruby/rubygems-1.3.5 + >=dev-ruby/ruby-net-ldap-0.0.4" +#ruby_add_rdepend "dev-ruby/activerecord:2.3[mysql?,postgres?,sqlite3?]" +ruby_add_rdepend fastcgi dev-ruby/ruby-fcgi +ruby_add_rdepend imagemagick dev-ruby/rmagick +ruby_add_rdepend openid dev-ruby/ruby-openid +#ruby_add_rdepend passenger "=dev-ruby/rack-1.0.1* www-apache/passenger" + +RDEPEND="${RDEPEND} + passenger? ( =dev-ruby/rack-1.0.1* www-apache/passenger ) + dev-ruby/activerecord:2.3[mysql?,postgres?,sqlite3?] + cvs? ( >=dev-vcs/cvs-1.12 ) + darcs? ( dev-vcs/darcs ) + git? ( dev-vcs/git ) + mercurial? ( dev-vcs/mercurial ) + subversion? ( >=dev-vcs/subversion-1.3 )" + +REDMINE_DIR="/var/lib/${PN}" + +pkg_setup() { + confutils_require_any mysql postgres sqlite3 + enewgroup redmine + # home directory is required for SCM. + enewuser redmine -1 -1 "${REDMINE_DIR}" redmine +} + +all_ruby_prepare() { + rm -fr log files/delete.me || die + rm -fr vendor/plugins/coderay-0.7.6.227 || die + rm -fr vendor/plugins/ruby-net-ldap-0.0.4 || die + rm -fr vendor/rails || die + echo "CONFIG_PROTECT=\"${REDMINE_DIR}/config\"" > "${T}/50${PN}" +} + +all_ruby_install() { + dodoc doc/{CHANGELOG,INSTALL,README_FOR_APP,RUNNING_TESTS,UPGRADING} || die + rm -fr doc || die + + keepdir /var/log/${PN} || die + dosym /var/log/${PN}/ "${REDMINE_DIR}/log" || die + + insinto "${REDMINE_DIR}" + doins -r . || die + keepdir "${REDMINE_DIR}/files" || die + keepdir "${REDMINE_DIR}/public/plugin_assets" || die + + fowners -R redmine:redmine \ + "${REDMINE_DIR}/config/environment.rb" \ + "${REDMINE_DIR}/files" \ + "${REDMINE_DIR}/public/plugin_assets" \ + "${REDMINE_DIR}/tmp" \ + /var/log/${PN} || die + # for SCM + fowners redmine:redmine "${REDMINE_DIR}" || die + + if use passenger ; then + has_apache + insinto "${APACHE_VHOSTS_CONFDIR}" + doins "${FILESDIR}/10_redmine_vhost.conf" || die + else + newconfd "${FILESDIR}/${PN}.confd" ${PN} || die + newinitd "${FILESDIR}/${PN}.initd" ${PN} || die + keepdir /var/run/${PN} || die + fowners -R redmine:redmine /var/run/${PN} || die + dosym /var/run/${PN}/ "${REDMINE_DIR}/tmp/pids" || die + fi + doenvd "${T}/50${PN}" || die +} + +pkg_postinst() { + einfo + if [ -e "${ROOT}${REDMINE_DIR}/config/initializers/session_store.rb" ] ; then + elog "Execute the following command to upgrade environment:" + elog + elog "# emerge --config =${CATEGORY}/${PF}" + elog + elog "For upgrade instructions take a look at:" + elog "http://www.redmine.org/wiki/redmine/RedmineUpgrade" + else + elog "Execute the following command to initlize environment:" + elog + elog "# cd ${REDMINE_DIR}" + elog "# cp config/database.yml.example config/database.yml" + elog "# \${EDITOR} config/database.yml" + elog "# emerge --config =${CATEGORY}/${PF}" + elog + elog "Installation notes are at official site" + elog "http://www.redmine.org/wiki/redmine/RedmineInstall" + fi + einfo +} + +pkg_config() { + if [ ! -e "${REDMINE_DIR}/config/database.yml" ] ; then + eerror "Copy ${REDMINE_DIR}/config/database.yml.example to ${REDMINE_DIR}/config/database.yml and edit this file in order to configure your database settings for \"production\" environment." + die + fi + + local RAILS_ENV=${RAILS_ENV:-production} + + cd "${REDMINE_DIR}" + if [ -e "${REDMINE_DIR}/config/initializers/session_store.rb" ] ; then + einfo + einfo "Upgrade database." + einfo + + einfo "Migrate database." + RAILS_ENV="${RAILS_ENV}" rake db:migrate || die + einfo "Upgrade the plugin migrations." + RAILS_ENV="${RAILS_ENV}" rake db:migrate:upgrade_plugin_migrations # || die + RAILS_ENV="${RAILS_ENV}" rake db:migrate_plugins || die + einfo "Clear the cache and the existing sessions." + rake tmp:cache:clear || die + rake tmp:sessions:clear || die + else + einfo + einfo "Initialize database." + einfo + + einfo "Generate a session store secret." + rake config/initializers/session_store.rb || die + einfo "Create the database structure." + RAILS_ENV="${RAILS_ENV}" rake db:migrate || die + einfo "Insert default configuration data in database." + RAILS_ENV="${RAILS_ENV}" rake redmine:load_default_data || die + fi + + if [ ! -e "${REDMINE_DIR}/config/email.yml" ] ; then + ewarn + ewarn "Copy ${REDMINE_DIR}/config/email.yml.example to ${REDMINE_DIR}/config/email.yml and edit this file to adjust your SMTP settings." + ewarn + fi +}