Sync with portage [Sat Jun 30 20:07:25 MSK 2012].

mhiretskiy
root 12 years ago
parent 7296a29929
commit 4f39f6674f

@ -0,0 +1,84 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/bcfg2/bcfg2-1.2.2-r1.ebuild,v 1.1 2012/06/29 06:28:40 xmw Exp $
EAPI="4"
PYTHON_DEPEND="2:2.6"
SUPPORT_PYTHON_ABIS="1"
# ssl module required.
RESTRICT_PYTHON_ABIS="2.4 2.5 3.*"
inherit distutils eutils
DESCRIPTION="configuration management tool"
HOMEPAGE="http://bcfg2.org"
SRC_URI="ftp://ftp.mcs.anl.gov/pub/bcfg/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris"
IUSE="doc cheetah genshi server"
DEPEND="dev-python/setuptools
doc? ( dev-python/sphinx )"
RDEPEND="app-portage/gentoolkit
cheetah? ( dev-python/cheetah )
genshi? ( dev-python/genshi )
server? (
virtual/fam
dev-python/lxml
dev-libs/libgamin[python] )"
PYTHON_MODNAME="Bcfg2"
distutils_src_install_post_hook() {
if ! use server; then
rm -f "$(distutils_get_intermediate_installation_image)${EPREFIX}/usr/sbin/bcfg2-"*
fi
}
src_prepare() {
epatch "${FILESDIR}"/${P}-CVE-2012-3366-Trigger-plugin.patch
distutils_src_prepare
}
src_compile() {
distutils_src_compile
if use doc; then
einfo "Building Bcfg2 documentation"
PYTHONPATH="build-$(PYTHON -f --ABI)" \
sphinx-build doc doc_output || die
fi
}
src_install() {
distutils_src_install --record=PY_SERVER_LIBS --install-scripts "${EPREFIX}/usr/sbin"
if ! use server; then
rm -rf "${ED}usr/share/bcfg2" || die
rm -rf "${ED}usr/share/man/man8" || die
else
newinitd "${FILESDIR}/${PN}-server-1.2.0.rc" bcfg2-server
fi
insinto /etc
doins examples/bcfg2.conf
if use doc; then
pushd doc_output > /dev/null
insinto /usr/share/doc/${PF}/html
doins -r [a-z]* _images _static || die "Failed to install documentation"
popd > /dev/null
fi
}
pkg_postinst () {
distutils_pkg_postinst
if use server; then
einfo "If this is a new installation, you probably need to run:"
einfo " bcfg2-admin init"
fi
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/bcfg2/bcfg2-1.2.2.ebuild,v 1.3 2012/04/16 13:03:06 xmw Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/bcfg2/bcfg2-1.2.2.ebuild,v 1.4 2012/06/29 06:16:32 xmw Exp $
EAPI="4"
@ -18,11 +18,12 @@ SRC_URI="ftp://ftp.mcs.anl.gov/pub/bcfg/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris"
IUSE="doc genshi server"
IUSE="doc cheetah genshi server"
DEPEND="dev-python/setuptools
doc? ( dev-python/sphinx )"
RDEPEND="app-portage/gentoolkit
cheetah? ( dev-python/cheetah )
genshi? ( dev-python/genshi )
server? (
virtual/fam

@ -0,0 +1,63 @@
Downloaded from http://trac.mcs.anl.gov/projects/bcfg2/changeset/a524967e8d5c4c22e49cd619aed20c87a316c0be/
Index: src/lib/Server/Plugins/Trigger.py
===================================================================
--- src/lib/Server/Plugins/Trigger.py (revision bf5040f75e71e25af0b9b5c2a9c098c5933d4acc)
+++ src/lib/Server/Plugins/Trigger.py (revision a524967e8d5c4c22e49cd619aed20c87a316c0be)
@@ -1,16 +1,6 @@
import os
+import pipes
import Bcfg2.Server.Plugin
-
-
-def async_run(prog, args):
- pid = os.fork()
- if pid:
- os.waitpid(pid, 0)
- else:
- dpid = os.fork()
- if not dpid:
- os.system(" ".join([prog] + args))
- os._exit(0)
-
+from subprocess import Popen, PIPE
class Trigger(Bcfg2.Server.Plugin.Plugin,
@@ -31,8 +21,29 @@
raise Bcfg2.Server.Plugin.PluginInitError
+ def async_run(self, args):
+ pid = os.fork()
+ if pid:
+ os.waitpid(pid, 0)
+ else:
+ dpid = os.fork()
+ if not dpid:
+ self.debug_log("Running %s" % " ".join(pipes.quote(a)
+ for a in args))
+ proc = Popen(args, stdin=PIPE, stdout=PIPE, stderr=PIPE)
+ (out, err) = proc.communicate()
+ rv = proc.wait()
+ if rv != 0:
+ self.logger.error("Trigger: Error running %s (%s): %s" %
+ (args[0], rv, err))
+ elif err:
+ self.debug_log("Trigger: Error: %s" % err)
+ os._exit(0)
+
def process_statistics(self, metadata, _):
args = [metadata.hostname, '-p', metadata.profile, '-g',
':'.join([g for g in metadata.groups])]
+ self.debug_log("running triggers")
for notifier in os.listdir(self.data):
+ self.debug_log("running %s" % notifier)
if ((notifier[-1] == '~') or
(notifier[:2] == '.#') or
@@ -40,5 +51,4 @@
(notifier in ['SCCS', '.svn', '4913'])):
continue
- npath = self.data + '/' + notifier
- self.logger.debug("Running %s %s" % (npath, " ".join(args)))
- async_run(npath, args)
+ npath = os.path.join(self.data, notifier)
+ self.async_run([npath] + args)

@ -11,7 +11,8 @@
<name>Michael Jinks</name>
</maintainer>
<use>
<flag name='server'>Installs scripts to be used on the server-side of this app</flag>
<flag name='cheetah'>Include dev-python/cheetah support</flag>
<flag name='genshi'>Include dev-python/genshi support</flag>
<flag name='server'>Installs scripts to be used on the server-side of this app</flag>
</use>
</pkgmetadata>

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/pwgen/pwgen-2.06-r1.ebuild,v 1.7 2012/06/22 15:39:45 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/pwgen/pwgen-2.06-r1.ebuild,v 1.9 2012/06/29 14:53:34 jer Exp $
EAPI="3"
@ -12,11 +12,9 @@ SRC_URI="mirror://sourceforge/pwgen/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="livecd"
DEPEND=""
src_prepare() {
epatch "${FILESDIR}"/${PV}-special-char.patch
sed -i -e 's:$(prefix)/man/man1:$(mandir)/man1:g' Makefile.in

@ -0,0 +1 @@
DIST innoextract-1.2.tar.gz 106162 RMD160 9442f535a673667db93c07e0c523e89c625ce3db SHA1 8d7b822597e92a881dcbfe5db40df75c96f765a7 SHA256 a56b11bab2e209c7b37a93b3bd7416eb7359824071fc3ae1cf16a8421747cb9a

@ -0,0 +1,49 @@
From: Julian Ospald <hasufell@gentoo.org>
Date: Wed Jun 27 23:41:12 UTC 2012
Subject: build system
respect flags
--- CMakeLists.txt
+++ CMakeLists.txt
@@ -54,40 +54,13 @@
link_directories("${Boost_LIBRARY_DIRS}")
include_directories(SYSTEM "${Boost_INCLUDE_DIR}")
-add_cxxflag("-Wall")
-add_cxxflag("-Wextra")
-add_cxxflag("-Wformat=2")
-add_cxxflag("-Wundef")
-add_cxxflag("-Wpointer-arith")
-add_cxxflag("-Wcast-qual")
-add_cxxflag("-Woverloaded-virtual")
-add_cxxflag("-Wlogical-op")
-add_cxxflag("-Wliteral-conversion")
-add_cxxflag("-Wshift-overflow")
-add_cxxflag("-Woverflow")
-add_cxxflag("-Wbool-conversions")
-add_cxxflag("-Wconversion")
-add_cxxflag("-Wsign-conversion")
-add_cxxflag("-Wmissing-declarations")
-add_cxxflag("-Wredundant-decls")
-
if(DEBUG_EXTRA)
add_cxxflag("-ftrapv") # to add checks for (undefined) signed integer overflow
add_cxxflag("-fbounds-checking")
add_cxxflag("-fcatch-undefined-behavior")
add_cxxflag("-Wstrict-aliasing=1")
-else()
- # -Wuninitialized causes too many false positives - thanks very much, gcc
- add_cxxflag("-Wno-uninitialized")
- # (clang only) Conflicts with using const variables for configuration.
- add_cxxflag("-Wno-constant-logical-operand")
- add_cxxflag("-Wno-unneeded-internal-declaration")
- add_cxxflag("-Wno-unused-function")
endif()
-# Because i'm lazy
-add_cxxflag("-Wl,--as-needed")
-
check_symbol_exists(isatty "unistd.h" HAVE_ISATTY)
check_symbol_exists(ioctl "sys/ioctl.h" HAVE_IOCTL)

@ -0,0 +1,37 @@
# Copyright 2012-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/innoextract/innoextract-1.2.ebuild,v 1.1 2012/06/29 21:26:51 hasufell Exp $
EAPI=4
inherit cmake-utils
DESCRIPTION="A tool to unpack installers created by Inno Setup"
HOMEPAGE="http://innoextract.constexpr.org/"
SRC_URI="mirror://github/dscharrer/InnoExtract/${P}.tar.gz
mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug +lzma"
DEPEND=">=dev-libs/boost-1.37
lzma? ( app-arch/xz-utils )"
RDEPEND="${DEPEND}"
DOCS=( README.md CHANGELOG )
src_prepare() {
epatch "${FILESDIR}"/${P}-gentoo.patch
}
src_configure() {
use debug && CMAKE_BUILD_TYPE=Debug
local mycmakeargs=(
$(cmake-utils_use lzma USE_LZMA)
)
cmake-utils_src_configure
}

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

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-backup/sarab/sarab-1.0.0.ebuild,v 1.2 2012/06/27 10:20:45 rich0 Exp $
# $Header: /var/cvsroot/gentoo-x86/app-backup/sarab/sarab-1.0.0.ebuild,v 1.3 2012/06/29 06:59:15 jdhore Exp $
inherit eutils
@ -9,7 +9,7 @@ HOMEPAGE="http://sarab.sourceforge.net/"
SRC_URI="mirror://sourceforge/sarab/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""

@ -1,2 +1,3 @@
DIST bootchart2-0.14.2.tar.bz2 775770 RMD160 cdfc030c12060737768cd6f6b55be508a8c517bc SHA1 75b3db97c239e8eee4c3143e35f77505480ec415 SHA256 0a9c9cd4065a1ad4d9e27e36888cf6258bb8c830a719e1a4afbf3b1092e728a4
DIST bootchart2-0.14.4.tar.bz2 775936 RMD160 b54be20ce0f74d21cd58f78daa427dc12658588c SHA1 a5e9702717792e085e1d1798eb8d9317c2669be7 SHA256 9b2bd785569e0c49fe6082abfb488135f65bc82f7919e04857a4bd94471add7f
DIST bootchart2-0.14.5.tar.bz2 776490 RMD160 19f880fdeebae1b8ca3bff77e22b5909cccdead0 SHA1 3714ada42e099f595cada2ca44814a7c99f626f1 SHA256 8a36596dcb67cd24b02feb20805588277680933478597557e96e7e3c744bf68f

@ -0,0 +1,83 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/bootchart2/bootchart2-0.14.5.ebuild,v 1.1 2012/06/30 12:11:47 jlec Exp $
EAPI=4
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="*-pypy-*"
inherit linux-info python systemd toolchain-funcs
DESCRIPTION="Performance analysis and visualization of the system boot process"
HOMEPAGE="https://github.com/mmeeks/bootchart/"
SRC_URI="mirror://github/mmeeks/bootchart/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="svg"
RDEPEND="
!app-benchmarks/bootchart
dev-python/pycairo[svg?]
dev-python/pygtk
sys-apps/lsb-release"
DEPEND="${RDEPEND}"
CONFIG_CHECK="~PROC_EVENTS ~TASKSTATS ~TASK_DELAY_ACCT ~TMPFS"
src_prepare() {
tc-export CC
sed \
-e "/^install/s:py-install-compile::g" \
-e "/^SYSTEMD_UNIT_DIR/s:=.*:= $(systemd_get_unitdir):g" \
-i Makefile || die
sed \
-e '/^EXIT_PROC/s:^.*$:EXIT_PROC="agetty mgetty mingetty":g' \
-i bootchartd.conf bootchartd.in || die
}
src_test() {
testing() {
emake test
}
python_execute_function testing
}
src_install() {
export NO_PYTHON_COMPILE=0
export DOCDIR=/usr/share/doc/${PF}
default
# Note: LIBDIR is hardcoded as /lib in collector/common.h, so we shouldn't
# just change it. Since no libraries are installed, /lib is fine.
keepdir /lib/bootchart/tmpfs
installation() {
emake \
DESTDIR="${D}" \
PY_SITEDIR=$(python_get_sitedir) \
py-install-compile
}
python_execute_function installation
# does not like python3 as active interpreter
python_convert_shebangs 2 "${ED}"/usr/bin/pybootchartgui
newinitd "${FILESDIR}"/${PN}.init ${PN}
}
pkg_postinst() {
elog "If you are using an initrd during boot"
echo
elog "please add the init script to your default runlevel"
elog "rc-update add bootchart2 default"
echo
python_mod_optimize pybootchartgui
}
pkg_postrm() {
python_mod_cleanup pybootchartgui
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.19.ebuild,v 1.9 2012/06/28 12:55:13 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.19.ebuild,v 1.10 2012/06/29 14:27:20 jer Exp $
EAPI="4"
@ -13,7 +13,7 @@ SRC_URI="mirror://gnupg/gnupg/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="adns bzip2 doc ldap nls readline static selinux smartcard usb"
COMMON_DEPEND_LIBS="

@ -1,7 +1,2 @@
DIST myspell-hyph_nl_NL-20060316.zip 55655 RMD160 3d2f193503d66171c7cf07fbb3e2ef4a143a7cd2 SHA1 2f8627a7444397ae2ae87b912a38384ac1bea89e SHA256 f48cb8a7ec86b94fe7383fd0c781c83b69c57b595cb10a6a69a5444f4f2368a7
DIST myspell-hyph_nl_NL-20070607.zip 55655 RMD160 3d2f193503d66171c7cf07fbb3e2ef4a143a7cd2 SHA1 2f8627a7444397ae2ae87b912a38384ac1bea89e SHA256 f48cb8a7ec86b94fe7383fd0c781c83b69c57b595cb10a6a69a5444f4f2368a7
DIST myspell-hyph_nl_NL-20090725.zip 55919 RMD160 206c560f9b487cd2d7060e9b4b359fc1fb5850e3 SHA1 8b929870a160ae531713eae889bd1a5d2eb16205 SHA256 813e25b836385d0e1adcfd65ce38616a609967c120d719d9b97d7d251abe7327
DIST myspell-nl_NL-20060316.zip 744387 RMD160 4fa5ccf1cc4ecc2d8aea1e9af79d1202bb01080a SHA1 9f5432aeb20ab7e9a3c72877b71056a33b2bd9ba SHA256 1ba25f286a53c8ff335f0bb7c138111cc6e9b4b69f328def147aeec4d3588f60
DIST myspell-nl_NL-20070607.zip 973588 RMD160 cba8f4957efa5d8c7de84ae731b7ea0a7d989f13 SHA1 34fa7451e8585772ea0101f7b41a1241f334c9f0 SHA256 e4380b8233e77ded7a11d6e1c2dbc9c03d78eaae7027ba6e8a011a85aab525fe
DIST myspell-nl_NL-20090725.zip 1020987 RMD160 6f9a02b9ecc1873721bff1f4f1550469965c6bba SHA1 280d016b9eb662890c6d0bf89e3de2202d654337 SHA256 f4683534ab291c7a6889ad19ee162d38d53fcfd4365857ad2ffcf2107fea72fd
DIST myspell-nl_med-20060316.zip 9140 RMD160 be989f2affb9a4a6c378182875f6c9b4f1a83212 SHA1 06f64c7871a44e0fe84c583135da60bf23b2b469 SHA256 c1226669efc540953f7af2f19f32854b02636c3ef0aac5efa6fd0faa4fe44a70
DIST myspell-nl-2.10g.oxt 868845 RMD160 05af26235474ab1ff5abe89e31f00c4ac4d237c7 SHA1 b81870e2decc3671c066e77b4f3764f819b5a86a SHA256 21eec296d80dac89f9dfa3093d22ef8f25900afa8bd49714fa13a7cf356316c2
DIST myspell-nl-2.10g_thes.oxt 1956026 RMD160 7e42e3006cb02e652af5e2d983db3e9de2adfdf7 SHA1 b4a7bb1ce91d5b7c3c1ddfc46ec3660ccc568d95 SHA256 18471446bb2bfbb610433d39bd8b054ac611a0dbdf5341e55177b29b19c2b2d9

@ -0,0 +1,44 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-nl/myspell-nl-2.10g.ebuild,v 1.1 2012/06/30 08:34:28 scarabeus Exp $
EAPI=4
MYSPELL_DICT=(
"nl_NL.aff"
"nl_NL.dic"
)
MYSPELL_HYPH=(
"hyph_nl_NL.dic"
)
MYSPELL_THES=(
"th_nl_NL_v2.dat"
"th_nl_NL_v2.idx"
)
inherit myspell-r2
DESCRIPTION="Czech dictionaries for myspell/hunspell"
HOMEPAGE="http://www.liberix.cz/doplnky/slovniky/ooo/"
# Thesarus is not versioned at all, I suppose we could bump it with each dict
# release, or when people say that the download uri checksum changed.
SRC_URI="
http://opentaal.org/bestanden/license_result/20-woordenlijst-v-${PV//./}-voor-openofficeorg-3?bid=20&agree=1 -> ${P}.oxt
http://data.opentaal.org/opentaalbank/thesaurus/download/thes_nl.oxt -> ${P}_thes.oxt
"
LICENSE="BSD-2 CCPL-Attribution-3.0"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE=""
src_prepare() {
# thesarus has ugly name
mv th_nl_v2.dat th_nl_NL_v2.dat || die
mv th_nl_v2.idx th_nl_NL_v2.idx || die
# remove dutch translated license so it aint installed
rm -rf licentie* || die
}

@ -1,23 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-nl/myspell-nl-20060316.ebuild,v 1.11 2012/05/17 18:24:46 aballier Exp $
MYSPELL_SPELLING_DICTIONARIES=(
"nl,NL,nl_NL,Dutch (Netherlands),nl_NL.zip"
"nl,NL,nl_med,Dutch (medical),nl_med.zip"
)
MYSPELL_HYPHENATION_DICTIONARIES=(
"nl,NL,hyph_nl_NL,Dutch (Netherlands), hyph_nl_NL.zip"
)
MYSPELL_THESAURUS_DICTIONARIES=(
)
inherit myspell
DESCRIPTION="Dutch dictionaries for myspell/hunspell"
LICENSE="GPL-2"
HOMEPAGE="http://lingucomponent.openoffice.org/ http://www.goddijn.com/words.htm"
KEYWORDS="alpha amd64 arm ia64 ppc sh sparc x86 ~amd64-fbsd ~x86-fbsd"

@ -1,22 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-nl/myspell-nl-20070607.ebuild,v 1.8 2012/05/17 18:24:46 aballier Exp $
MYSPELL_SPELLING_DICTIONARIES=(
"nl,NL,nl_NL,Dutch (Netherlands),nl_NL.zip"
)
MYSPELL_HYPHENATION_DICTIONARIES=(
"nl,NL,hyph_nl_NL,Dutch (Netherlands), hyph_nl_NL.zip"
)
MYSPELL_THESAURUS_DICTIONARIES=(
)
inherit myspell
DESCRIPTION="Dutch dictionaries for myspell/hunspell"
LICENSE="GPL-2"
HOMEPAGE="http://lingucomponent.openoffice.org/ http://wiki.services.openoffice.org/wiki/Dictionaries#Dutch_.28Netherlands.29"
KEYWORDS="alpha ~amd64 arm hppa ia64 ~ppc ~ppc64 sh sparc ~x86 ~amd64-fbsd ~x86-fbsd"

@ -1,22 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-nl/myspell-nl-20090725.ebuild,v 1.9 2012/05/17 18:24:46 aballier Exp $
MYSPELL_SPELLING_DICTIONARIES=(
"nl,NL,nl_NL,Dutch (Netherlands),nl_NL.zip"
)
MYSPELL_HYPHENATION_DICTIONARIES=(
"nl,NL,hyph_nl_NL,Dutch (Netherlands), hyph_nl_NL.zip"
)
MYSPELL_THESAURUS_DICTIONARIES=(
)
inherit myspell
DESCRIPTION="Dutch dictionaries for myspell/hunspell"
LICENSE="GPL-2"
HOMEPAGE="http://lingucomponent.openoffice.org/ http://wiki.services.openoffice.org/wiki/Dictionaries#Dutch_.28Netherlands.29"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-24.1.9999-r1.ebuild,v 1.6 2012/06/24 15:13:05 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-24.1.9999-r1.ebuild,v 1.7 2012/06/29 07:59:16 ulm Exp $
EAPI=4
@ -30,11 +30,11 @@ HOMEPAGE="http://www.gnu.org/software/emacs/"
LICENSE="GPL-3 FDL-1.3 BSD as-is MIT W3C unicode PSF-2"
SLOT="24"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="alsa athena dbus gconf gif gnutls gpm gsettings gtk gtk3 gzip-el hesiod imagemagick jpeg kerberos libxml2 m17n-lib motif pax_kernel png selinux sound source svg tiff toolkit-scroll-bars wide-int X Xaw3d xft +xpm"
IUSE="alsa athena dbus games gconf gif gnutls gpm gsettings gtk gtk3 gzip-el hesiod imagemagick jpeg kerberos libxml2 m17n-lib motif pax_kernel png selinux sound source svg tiff toolkit-scroll-bars wide-int X Xaw3d xft +xpm"
RDEPEND="sys-libs/ncurses
>=app-admin/eselect-emacs-1.2
>=app-emacs/emacs-common-gentoo-1.3[X?]
>=app-emacs/emacs-common-gentoo-1.3[games?,X?]
net-libs/liblockfile
hesiod? ( net-dns/hesiod )
kerberos? ( virtual/krb5 )

@ -19,6 +19,7 @@
<use>
<flag name='athena'>Enable the MIT Athena widget set
(<pkg>x11-libs/libXaw</pkg>)</flag>
<flag name='games'>Support shared score files for games</flag>
<flag name='gconf'>Use <pkg>gnome-base/gconf</pkg> to read the system
font name</flag>
<flag name='gsettings'>Use gsettings (<pkg>dev-libs/glib</pkg>) to read the

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r10.ebuild,v 1.1 2012/06/10 15:13:09 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-22.3-r10.ebuild,v 1.2 2012/06/29 07:58:35 ulm Exp $
EAPI=4
WANT_AUTOMAKE="none"
@ -15,11 +15,11 @@ SRC_URI="mirror://gnu/emacs/${P}.tar.gz
LICENSE="GPL-3 FDL-1.2 BSD as-is MIT"
SLOT="22"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="alsa gif gtk gzip-el hesiod jpeg kerberos motif png sound source tiff toolkit-scroll-bars X Xaw3d +xpm"
IUSE="alsa games gif gtk gzip-el hesiod jpeg kerberos motif png sound source tiff toolkit-scroll-bars X Xaw3d +xpm"
RDEPEND="sys-libs/ncurses
>=app-admin/eselect-emacs-1.2
>=app-emacs/emacs-common-gentoo-1.3-r3[X?]
>=app-emacs/emacs-common-gentoo-1.3-r3[games?,X?]
net-libs/liblockfile
hesiod? ( net-dns/hesiod )
kerberos? ( virtual/krb5 )

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-23.4-r3.ebuild,v 1.5 2012/06/28 14:16:26 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-23.4-r3.ebuild,v 1.6 2012/06/29 07:58:35 ulm Exp $
EAPI=4
WANT_AUTOMAKE="none"
@ -15,12 +15,12 @@ SRC_URI="mirror://gnu/emacs/${P}.tar.bz2
LICENSE="GPL-3 FDL-1.3 BSD as-is MIT W3C unicode PSF-2"
SLOT="23"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="alsa aqua athena dbus gconf gif gpm gtk gzip-el hesiod jpeg kerberos livecd m17n-lib motif pax_kernel png sound source svg tiff toolkit-scroll-bars X Xaw3d xft +xpm"
IUSE="alsa aqua athena dbus games gconf gif gpm gtk gzip-el hesiod jpeg kerberos livecd m17n-lib motif pax_kernel png sound source svg tiff toolkit-scroll-bars X Xaw3d xft +xpm"
REQUIRED_USE="aqua? ( !X )"
RDEPEND="sys-libs/ncurses
>=app-admin/eselect-emacs-1.2
>=app-emacs/emacs-common-gentoo-1.3-r3[X?]
>=app-emacs/emacs-common-gentoo-1.3-r3[games?,X?]
net-libs/liblockfile
hesiod? ( net-dns/hesiod )
kerberos? ( virtual/krb5 )

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-24.1.ebuild,v 1.4 2012/06/24 15:12:02 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-24.1.ebuild,v 1.5 2012/06/29 07:58:35 ulm Exp $
EAPI=4
@ -14,12 +14,12 @@ SRC_URI="mirror://gnu/emacs/${P}.tar.bz2
LICENSE="GPL-3 FDL-1.3 BSD as-is MIT W3C unicode PSF-2"
SLOT="24"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="alsa aqua athena dbus gconf gif gnutls gpm gsettings gtk gtk3 gzip-el hesiod imagemagick jpeg kerberos libxml2 livecd m17n-lib motif pax_kernel png selinux sound source svg tiff toolkit-scroll-bars wide-int X Xaw3d xft +xpm"
IUSE="alsa aqua athena dbus games gconf gif gnutls gpm gsettings gtk gtk3 gzip-el hesiod imagemagick jpeg kerberos libxml2 livecd m17n-lib motif pax_kernel png selinux sound source svg tiff toolkit-scroll-bars wide-int X Xaw3d xft +xpm"
REQUIRED_USE="aqua? ( !X )"
RDEPEND="sys-libs/ncurses
>=app-admin/eselect-emacs-1.2
>=app-emacs/emacs-common-gentoo-1.3-r3[X?]
>=app-emacs/emacs-common-gentoo-1.3-r3[games?,X?]
net-libs/liblockfile
hesiod? ( net-dns/hesiod )
kerberos? ( virtual/krb5 )

@ -19,6 +19,7 @@
<use>
<flag name='athena'>Enable the MIT Athena widget set
(<pkg>x11-libs/libXaw</pkg>)</flag>
<flag name='games'>Support shared score files for games</flag>
<flag name='gconf'>Use <pkg>gnome-base/gconf</pkg> to read the system
font name</flag>
<flag name='gsettings'>Use gsettings (<pkg>dev-libs/glib</pkg>) to read the

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/ess/ess-5.14.ebuild,v 1.3 2012/06/17 07:07:19 jdhore Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emacs/ess/ess-5.14.ebuild,v 1.4 2012/06/29 12:44:26 ranger Exp $
EAPI=4
@ -12,7 +12,7 @@ SRC_URI="http://ess.r-project.org/downloads/ess/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~ppc ~sparc x86 ~amd64-linux ~x86-linux ~x86-macos"
KEYWORDS="~alpha amd64 ppc ~sparc x86 ~amd64-linux ~x86-linux ~x86-macos"
IUSE=""
DEPEND="app-text/texi2html

@ -1,5 +1,6 @@
DIST libvirt-0.9.10-bp-1.tar.bz2 4359 RMD160 1b064c56007001f509cd0e940ec337d6281b19bb SHA1 ba11fd52aec15fb80e461a1fbc49c142e58ed3b5 SHA256 038791b47489a831718f98ba9cdf77cff88a6e26003f81a0c2f11581f0bde4a3
DIST libvirt-0.9.10.tar.gz 19085438 RMD160 8f103b176fc7b943a88cf7196709865edc5db5e8 SHA1 cf32d6bea295cb30461901d987f049c9547ff1e8 SHA256 5b81d9f054ee4b395b0ab4f59845d082baaa6d6c2a038c966309156dde16e11d
DIST libvirt-0.9.11.3.tar.gz 19615688 RMD160 dcfb5c7e9bd5a35d08c8940f3e24164f71a04276 SHA1 2bcb00a901113f53fb5eb3fd2d2a3b3e68dcc0f4 SHA256 aa73b329d2f6eb200991b9dc378d4636c15cd2f95ca224995d01b45257584fa2
DIST libvirt-0.9.11.4.tar.gz 19684316 RMD160 908d4ff274e23f149f51392889e80cfbe53c3fd8 SHA1 3eddc993e7ad93f83c867c3cc3f1c54cc6f9c5a0 SHA256 f3e16a62dff9720e1541da5561f448853e9821baa4622a0064dc28589eebed45
DIST libvirt-0.9.12.tar.gz 20054618 RMD160 16b38dc2e2f5df9b427ca89ab8c1fb25b63e17e1 SHA1 3743dc4f3e58d5912a98f568c3e854d97d81f216 SHA256 298ffc7f2a6d6e78aae46f11a0980f4bc17fa2928f5de6cd9e8abaf5990336e7
DIST libvirt-0.9.8.tar.gz 18403525 RMD160 51bfb25dbd11a7cb5529c692d843f8ac2b1c9101 SHA1 09df699513af63b73444d776c2d02945dc9cee43 SHA256 31b20864e44bb18a2d01b7ac6569f114cbe1007689219bf24a07ddb7528abe0e

@ -0,0 +1,295 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-0.9.11.4.ebuild,v 1.1 2012/06/30 01:44:00 cardoe Exp $
EAPI=4
#BACKPORTS=1
#AUTOTOOLIZE=yes
MY_P="${P/_rc/-rc}"
if [[ ${PV} = *9999* ]]; then
EGIT_REPO_URI="git://libvirt.org/libvirt.git"
AUTOTOOLIZE=yes
fi
PYTHON_DEPEND="python? 2:2.5"
#RESTRICT_PYTHON_ABIS="3.*"
#SUPPORT_PYTHON_ABIS="1"
inherit eutils python
if [[ ${PV} = *9999* ]]; then
inherit autotools git-2
SRC_URI=""
KEYWORDS=""
else
SRC_URI="http://libvirt.org/sources/stable_updates/${MY_P}.tar.gz
ftp://libvirt.org/libvirt/stable_updates/${MY_P}.tar.gz
${BACKPORTS:+
http://dev.gentoo.org/~cardoe/distfiles/${MY_P}-bp-${BACKPORTS}.tar.bz2}"
KEYWORDS="~amd64 ~x86"
fi
S="${WORKDIR}/${P%_rc*}"
DESCRIPTION="C toolkit to manipulate virtual machines"
HOMEPAGE="http://www.libvirt.org/"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="avahi caps debug iscsi +libvirtd lvm +lxc macvtap nfs \
nls numa openvz parted pcap phyp policykit python qemu sasl selinux +udev \
uml virtualbox virt-network xen elibc_glibc"
# IUSE=one : bug #293416 & bug #299011
REQUIRED_USE="libvirtd? ( || ( lxc openvz qemu uml virtualbox xen ) )
lxc? ( libvirtd ) openvz? ( libvirtd ) qemu? ( libvirtd ) uml? ( libvirtd )
virtualbox? ( libvirtd ) xen? ( libvirtd )"
# gettext.sh command is used by the libvirt command wrappers, and it's
# non-optional, so put it into RDEPEND.
RDEPEND="sys-libs/readline
sys-libs/ncurses
>=net-misc/curl-7.18.0
dev-libs/libgcrypt
>=dev-libs/libxml2-2.7.6
>=dev-libs/libnl-1.1:1.1
>=net-libs/gnutls-1.0.25
sys-apps/dmidecode
>=sys-apps/util-linux-2.17
sys-devel/gettext
>=net-analyzer/netcat6-1.0-r2
app-misc/scrub
avahi? ( >=net-dns/avahi-0.6[dbus] )
caps? ( sys-libs/libcap-ng )
iscsi? ( sys-block/open-iscsi )
lxc? ( sys-power/pm-utils )
lvm? ( >=sys-fs/lvm2-2.02.48-r2 )
nfs? ( net-fs/nfs-utils )
numa? ( >sys-process/numactl-2.0.2 )
openvz? ( sys-kernel/openvz-sources )
parted? (
>=sys-block/parted-1.8[device-mapper]
sys-fs/lvm2
)
pcap? ( >=net-libs/libpcap-1.0.0 )
phyp? ( net-libs/libssh2 )
policykit? ( >=sys-auth/polkit-0.9 )
qemu? (
|| ( app-emulation/qemu-kvm >=app-emulation/qemu-0.10.0 )
dev-libs/yajl
sys-power/pm-utils
)
sasl? ( dev-libs/cyrus-sasl )
selinux? ( >=sys-libs/libselinux-2.0.85 )
virtualbox? ( || ( app-emulation/virtualbox >=app-emulation/virtualbox-bin-2.2.0 ) )
xen? ( app-emulation/xen-tools app-emulation/xen )
udev? ( >=sys-fs/udev-145 >=x11-libs/libpciaccess-0.10.9 )
virt-network? ( net-dns/dnsmasq
>=net-firewall/iptables-1.4.10
net-firewall/ebtables
sys-apps/iproute2[-minimal] )
elibc_glibc? ( || ( >=net-libs/libtirpc-0.2.2-r1 <sys-libs/glibc-2.14 ) )"
# one? ( dev-libs/xmlrpc-c )
DEPEND="${RDEPEND}
virtual/pkgconfig
app-text/xhtml1"
pkg_setup() {
use python && python_set_active_version 2
python_pkg_setup
}
src_prepare() {
[[ -n ${BACKPORTS} ]] && \
EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \
epatch
if [[ ${PV} = *9999* ]]; then
# git checkouts require bootstrapping to create the configure script.
# Additionally the submodules must be cloned to the right locations
# bug #377279
./bootstrap || die "bootstrap failed"
(
git submodule status | sed 's/^[ +-]//;s/ .*//'
git hash-object bootstrap.conf
) >.git-module-status
fi
[[ -n ${AUTOTOOLIZE} ]] && eautoreconf
}
src_configure() {
local myconf=""
myconf="${myconf} $(use_enable debug)"
## enable/disable daemon, otherwise client only utils
myconf="${myconf} $(use_with libvirtd)"
## enable/disable the daemon using avahi to find VMs
myconf="${myconf} $(use_with avahi)"
## hypervisors on the local host
myconf="${myconf} $(use_with xen) $(use_with xen xen-inotify)"
# leave it automagic as it depends on the version of xen used.
use xen || myconf+=" --without-libxl"
myconf="${myconf} $(use_with openvz)"
myconf="${myconf} $(use_with lxc)"
if use virtualbox && has_version app-emulation/virtualbox-ose; then
myconf="${myconf} --with-vbox=/usr/lib/virtualbox-ose/"
else
myconf="${myconf} $(use_with virtualbox vbox)"
fi
myconf="${myconf} $(use_with uml)"
myconf="${myconf} $(use_with qemu)"
myconf="${myconf} $(use_with qemu yajl)" # Use QMP over HMP
# doesn't belong with hypervisors but links to libvirtd for some reason
#myconf="${myconf} $(use_with one)"
## hypervisor protocols
myconf="${myconf} $(use_with phyp)"
myconf="${myconf} --with-esx"
## additional host drivers
myconf="${myconf} $(use_with virt-network network)"
myconf="${myconf} --with-storage-fs"
myconf="${myconf} $(use_with lvm storage-lvm)"
myconf="${myconf} $(use_with iscsi storage-iscsi)"
myconf="${myconf} $(use_with parted storage-disk)"
myconf="${myconf} $(use_with lvm storage-mpath)"
myconf="${myconf} $(use_with numa numactl)"
myconf="${myconf} $(use_with selinux)"
# udev for device support details
myconf="${myconf} $(use_with udev)"
# linux capability support so we don't need privileged accounts
myconf="${myconf} $(use_with caps capng)"
## auth stuff
myconf="${myconf} $(use_with policykit polkit)"
myconf="${myconf} $(use_with sasl)"
# network bits
myconf="${myconf} $(use_with macvtap)"
myconf="${myconf} $(use_with pcap libpcap)"
## other
myconf="${myconf} $(use_enable nls)"
myconf="${myconf} $(use_with python)"
## stuff we don't yet support
myconf="${myconf} --without-netcf --without-audit"
# we use udev over hal
myconf="${myconf} --without-hal"
# locking support
myconf="${myconf} --without-sanlock"
# this is a nasty trick to work around the problem in bug
# #275073. The reason why we don't solve this properly is that
# it'll require us to rebuild autotools (and we don't really want
# to do that right now). The proper solution has been sent
# upstream and should hopefully land in 0.7.7, in the mean time,
# mime the same functionality with this.
case ${CHOST} in
*cygwin* | *mingw* )
;;
*)
ac_cv_prog_WINDRES=no
;;
esac
econf \
${myconf} \
--disable-static \
--docdir=/usr/share/doc/${PF} \
--with-remote \
--localstatedir=/var
if [[ ${PV} = *9999* ]]; then
# Restore gnulib's config.sub and config.guess
# bug #377279
(cd .gnulib && git reset --hard > /dev/null)
fi
}
src_test() {
# Explicitly allow parallel build of tests
HOME="${T}" emake check || die "tests failed"
}
src_install() {
emake install \
DESTDIR="${D}" \
HTML_DIR=/usr/share/doc/${PF}/html \
DOCS_DIR=/usr/share/doc/${PF}/python \
EXAMPLE_DIR=/usr/share/doc/${PF}/python/examples \
|| die "emake install failed"
find "${D}" -name '*.la' -delete || die
use libvirtd || return 0
# From here, only libvirtd-related instructions, be warned!
newinitd "${FILESDIR}/libvirtd.init-r8" libvirtd || die
newconfd "${FILESDIR}/libvirtd.confd-r3" libvirtd || die
keepdir /var/lib/libvirt/images
}
pkg_preinst() {
# we only ever want to generate this once
if [[ -e "${ROOT}"/etc/libvirt/qemu/networks/default.xml ]]; then
rm -rf "${D}"/etc/libvirt/qemu/networks/default.xml
fi
# We really don't want to use or support old PolicyKit cause it
# screws with the new polkit integration
if has_version sys-auth/policykit; then
rm -rf "${D}"/usr/share/PolicyKit/policy/org.libvirt.unix.policy
fi
# Only sysctl files ending in .conf work
mv "${D}"/etc/sysctl.d/libvirtd "${D}"/etc/sysctl.d/libvirtd.conf
}
pkg_postinst() {
use python && python_mod_optimize libvirt.py
elog
if use policykit && has_version sys-auth/policykit; then
elog "You must have run the following at least once:"
elog
elog "$ polkit-auth --grant org.libvirt.unix.manage --user \"USERNAME\""
elog
elog "to grant USERNAME access to libvirt when using USE=policykit"
else
elog "To allow normal users to connect to libvirtd you must change the"
elog " unix sock group and/or perms in /etc/libvirt/libvirtd.conf"
fi
use libvirtd || return 0
# From here, only libvirtd-related instructions, be warned!
elog
elog "For the basic networking support (bridged and routed networks)"
elog "you don't need any extra software. For more complex network modes"
elog "including but not limited to NATed network, you can enable the"
elog "'virt-network' USE flag."
elog
if has_version net-dns/dnsmasq; then
ewarn "If you have a DNS server setup on your machine, you will have"
ewarn "to configure /etc/dnsmasq.conf to enable the following settings: "
ewarn " bind-interfaces"
ewarn " interface or except-interface"
ewarn
ewarn "Otherwise you might have issues with your existing DNS server."
fi
}
pkg_postrm() {
use python && python_mod_cleanup libvirt.py
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/autopsy/autopsy-2.24-r1.ebuild,v 1.2 2012/06/28 10:04:46 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-forensics/autopsy/autopsy-2.24-r1.ebuild,v 1.4 2012/06/29 12:39:22 ranger Exp $
EAPI=4
@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/autopsy/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~hppa ~ppc ~x86"
KEYWORDS="amd64 ~hppa ppc x86"
IUSE=""
# Runtime depend on grep and file deliberate

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/sleuthkit-3.2.3.ebuild,v 1.4 2012/06/28 10:05:11 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-forensics/sleuthkit/sleuthkit-3.2.3.ebuild,v 1.6 2012/06/29 12:38:24 ranger Exp $
EAPI="4"
@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2 IBM"
SLOT=0
KEYWORDS="amd64 ~hppa ~ppc ~x86"
KEYWORDS="amd64 ~hppa ppc x86"
IUSE="aff ewf static-libs"
DEPEND="dev-db/sqlite:3

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table-cangjie/ibus-table-cangjie-1.2.0.20100305.ebuild,v 1.3 2012/05/03 19:24:31 jdhore Exp $
# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table-cangjie/ibus-table-cangjie-1.2.0.20100305.ebuild,v 1.4 2012/06/29 10:45:58 naota Exp $
DESCRIPTION="The CangJie for IBus Tables"
HOMEPAGE="http://code.google.com/p/ibus/"
@ -11,7 +11,8 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=app-i18n/ibus-table-1.2"
RDEPEND=">=app-i18n/ibus-table-1.2
!>app-i18n/ibus-table-1.3.9"
DEPEND="${RDEPEND}
virtual/pkgconfig"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table-yinma/ibus-table-yinma-1.2.0.20100305.ebuild,v 1.2 2012/05/03 19:24:27 jdhore Exp $
# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table-yinma/ibus-table-yinma-1.2.0.20100305.ebuild,v 1.3 2012/06/29 07:02:37 naota Exp $
DESCRIPTION="The yinma tables for IBus-Table"
HOMEPAGE="http://code.google.com/p/ibus/"
@ -11,7 +11,9 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=app-i18n/ibus-table-1.2.0.20100111"
RDEPEND=">=app-i18n/ibus-table-1.2.0.20100111
!>app-i18n/ibus-table-1.3.9
!app-i18n/ibus-table-chinese"
DEPEND="${RDEPEND}
virtual/pkgconfig"

@ -0,0 +1,12 @@
diff --git a/src/scim_hangul_imengine.cpp b/src/scim_hangul_imengine.cpp
index 7d70654..d678902 100644
--- a/src/scim_hangul_imengine.cpp
+++ b/src/scim_hangul_imengine.cpp
@@ -30,6 +30,7 @@
#define Uses_SCIM_CONFIG_BASE
#include <cstring>
+#include <unistd.h>
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-hangul/scim-hangul-0.3.2.ebuild,v 1.8 2012/05/03 19:24:25 jdhore Exp $
# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-hangul/scim-hangul-0.3.2.ebuild,v 1.9 2012/06/30 13:53:34 naota Exp $
EAPI=2
inherit base
@ -21,7 +21,9 @@ DEPEND="${RDEPEND}
virtual/pkgconfig
nls? ( sys-devel/gettext )"
PATCHES=( "${FILESDIR}/${P}+gcc-4.3.patch" )
PATCHES=(
"${FILESDIR}/${P}+gcc-4.3.patch"
"${FILESDIR}/${P}+gcc-4.7.patch" )
src_configure() {
econf \

@ -1,10 +1,10 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/freesmee/freesmee-0.7-r2.ebuild,v 1.1 2012/06/26 13:07:49 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/freesmee/freesmee-0.7-r2.ebuild,v 1.2 2012/06/30 13:49:59 ago Exp $
EAPI=4
inherit eutils qt4-r2
inherit qt4-r2
DESCRIPTION="Tool for sending SMS and sending/receiving Freesmee-Message-Service"
HOMEPAGE="http://www.freesmee.com"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/psh/psh-1.8.1.ebuild,v 1.6 2012/06/28 10:39:14 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-shells/psh/psh-1.8.1.ebuild,v 1.7 2012/06/29 13:00:23 ranger Exp $
inherit perl-module
@ -10,7 +10,7 @@ SRC_URI="http://www.focusresearch.com/gregor/download/${P}.tar.gz"
LICENSE="|| ( Artistic GPL-2 )"
SLOT="0"
KEYWORDS="~alpha amd64 ~ia64 ~ppc ~sparc x86"
KEYWORDS="~alpha amd64 ~ia64 ppc ~sparc x86"
IUSE="readline"
DEPEND=">=dev-lang/perl-5"

@ -4,10 +4,5 @@
<maintainer>
<email>blueness@gentoo.org</email>
<name>Anthony G. Basile</name>
<description>Proxy Maintainer</description>
</maintainer>
<maintainer>
<email>eplumlee@yahoo.com</email>
<name>Evan Plumlee</name>
</maintainer>
</pkgmetadata>

@ -1,3 +1,3 @@
DIST calibre-0.8.52.tar.xz 24690364 RMD160 3041d07f0c9b8a67fc0457550968814be4d826e9 SHA1 7ec70aa251f90991be876cac9ea731ddd619b4da SHA256 29eebc8c82dd2cacc70e3fb5bc309020348028752a23765d8956769b79deaf2a
DIST calibre-0.8.56.tar.xz 24928600 RMD160 622c0a2ef5f28395cea3d99ae2df690cf4580e3b SHA1 86f49233bfedfd186706193ab1c735e8ba7011c7 SHA256 877f7d1cfd3098b880f7981e01028360369ed11da74384542c2f3025ce036455
DIST calibre-0.8.57.tar.xz 24957924 RMD160 1670c83aeb44f2ada38cbcb8e1579323eefb0dc0 SHA1 204ade1a2986d651fdc7967b4a74fabffd4eb23e SHA256 e724a3228eaf0089e2c59ec814ffdaf9734052cb4fb310df4cdfd0dc57a2c9f7
DIST calibre-0.8.58.tar.xz 24990000 RMD160 5579feb25d3b8ed601b4a9dd559d52ec7128e163 SHA1 57631957529596b32753c17855695ec0fc344094 SHA256 f0b9ca637793c9817e2051d4bd6eacd5388a030b11c1470ca5b5b929d4115149

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/calibre-0.8.56.ebuild,v 1.1 2012/06/15 21:35:36 zmedico Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/calibre-0.8.58.ebuild,v 1.1 2012/06/29 20:17:28 zmedico Exp $
EAPI=4
PYTHON_DEPEND=2:2.7

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/dos2unix/dos2unix-6.0.ebuild,v 1.1 2012/05/06 15:16:07 polynomial-c Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/dos2unix/dos2unix-6.0.ebuild,v 1.2 2012/06/30 11:06:26 ago Exp $
EAPI=4
@ -14,7 +14,7 @@ SRC_URI="
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
IUSE="debug nls"
RDEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/gv/gv-3.7.3-r1.ebuild,v 1.9 2012/06/08 11:41:31 phajdan.jr Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/gv/gv-3.7.3-r1.ebuild,v 1.10 2012/06/29 15:35:26 jer Exp $
EAPI=4
inherit eutils flag-o-matic toolchain-funcs
@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/gv/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ppc ppc64 ~sparc x86"
KEYWORDS="~alpha amd64 ~arm hppa ~mips ppc ppc64 ~sparc x86"
IUSE="unicode xinerama"
RDEPEND="app-text/ghostscript-gpl

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/html2text/html2text-1.3.2a.ebuild,v 1.5 2012/06/28 12:54:08 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/html2text/html2text-1.3.2a.ebuild,v 1.6 2012/06/29 15:08:41 jer Exp $
EAPI=4
@ -13,7 +13,7 @@ SRC_URI="http://www.mbayer.de/html2text/downloads/${P}.tar.gz
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
KEYWORDS="~alpha amd64 hppa ~ia64 ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE=""
DEPEND=""

@ -1,2 +1,2 @@
DIST iso-codes-3.24.2.tar.bz2 6218585 RMD160 0f606c184d9733d1bd88c9ee49a6427ed460269a SHA1 9e4b8d23f4ea4ea9e26f483056604d5745a7942b SHA256 4f48007c223a3fa700d287f93ba02540d4f0414dbc21caa6d3670c26a3073b46
DIST iso-codes-3.30.tar.bz2 6229897 RMD160 31b613f45a1f83e017418423e0d84b9e389b553e SHA1 00295d2becdea2a45510bbb05348b2f232e8fc3e SHA256 a4da396dc0f7c7ca85cfd4b99a1c2abc898453911c6594da0777e89bd75898bd
DIST iso-codes-3.37.tar.bz2 10192736 RMD160 1a7ebfd88924d90a970758bd5585dc61bcd8d390 SHA1 b7239dc8e028f354e0cc67e72a9e7fe1ad45e1ee SHA256 408d1b8bbbd0c496c70e1a94093bc1f88495a7c6f6135c65c1cd53bdb1c62d90

@ -1,18 +1,18 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/iso-codes-3.24.2.ebuild,v 1.8 2011/10/05 17:09:42 xarthisius Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/iso-codes-3.37.ebuild,v 1.1 2012/06/30 12:07:04 pacho Exp $
EAPI="3"
EAPI="4"
inherit eutils
DESCRIPTION="Provides the list of country and language names"
HOMEPAGE="http://alioth.debian.org/projects/pkg-isocodes/"
SRC_URI="ftp://pkg-isocodes.alioth.debian.org/pub/pkg-isocodes/${P}.tar.bz2"
SRC_URI="http://pkg-isocodes.alioth.debian.org/downloads/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE=""
RDEPEND=""
@ -44,9 +44,3 @@ src_prepare() {
fi
done
}
src_install() {
emake DESTDIR="${D}" install || die "Installation failed"
dodoc ChangeLog README TODO || die "dodoc failed"
}

@ -1,2 +1 @@
DIST libwps-0.2.6.tar.xz 288712 RMD160 bda88ef9de4e6e710efa745c20434fda63601120 SHA1 89696592cfe51b89fecabb3b64fe6c6a8b4ecb39 SHA256 622813b89755603a13b8e39ce5e0ff013193b7b9610081e58bdd282ef7f42162
DIST libwps-0.2.7.tar.xz 345148 RMD160 1025c875035e446191e6e5b0200326bdf6902eb6 SHA1 d26cbec758be1b555ef48fc73ef87186126c8d74 SHA256 07b8e6ba6dd327996638cef886d3d510b1438ab0a374dfeeda168244f630b304

@ -1,13 +0,0 @@
diff -urN libwps-0.2.6.old//src/lib/libwps_internal.h libwps-0.2.6/src/lib/libwps_internal.h
--- libwps-0.2.6.old//src/lib/libwps_internal.h 2012-05-28 13:59:43.855727293 +0200
+++ libwps-0.2.6/src/lib/libwps_internal.h 2012-05-28 14:00:16.373727679 +0200
@@ -25,6 +25,9 @@
#include <libwpd-stream/libwpd-stream.h>
#include <libwpd/libwpd.h>
#include <string>
+#ifdef DEBUG
+#include <stdio.h>
+#endif
#if defined(_MSC_VER) || defined(__DJGPP__)
typedef signed char int8_t;

@ -1,43 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/libwps/libwps-0.2.6.ebuild,v 1.5 2012/06/17 18:24:16 armin76 Exp $
EAPI=4
inherit base
DESCRIPTION="Microsoft Works file word processor format import filter library"
HOMEPAGE="http://libwps.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha amd64 ~ia64 ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="doc debug static-libs"
RDEPEND="
app-text/libwpd:0.9
dev-libs/boost
"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen )
"
PATCHES=(
"${FILESDIR}/${P}-debug.patch"
)
src_configure() {
econf \
--disable-werror \
$(use_enable static-libs static) \
--docdir=/usr/share/doc/${PF} \
$(use_with doc docs) \
$(use_enable debug)
}
src_install() {
default
find "${ED}" -name '*.la' -delete
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/libwps/libwps-0.2.7.ebuild,v 1.4 2012/06/17 18:24:16 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/libwps/libwps-0.2.7.ebuild,v 1.5 2012/06/29 11:51:33 scarabeus Exp $
EAPI=4
@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="~alpha amd64 ~ia64 ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="doc debug static-libs"
RDEPEND="

@ -1,4 +1,4 @@
DIST lodgeit-0.3_p20120507.py 12785 RMD160 f5d0ccd50f767b5766f6a8b1f2c9460bf185528d SHA1 adebcc1ecbdc20898dd49a69537405468e1b3134 SHA256 87dfd329e7d1fdf1902c6d1903a0b629b63749b69932235ed4d70c2e836400ab
DIST lodgeit-0.3_p20120507.vim 3882 RMD160 3b327948345e3e34388c1d4cd94a65bc610889ab SHA1 bf252b6c9cf0248c3354b8ab77d144cfd45fb8ff SHA256 b8c1e918a7d6e7c5675ccd05893ad7bf3dae19493248e85735fded16903b06bc
DIST lodgeit-0.3_p20120614.py 13001 RMD160 af348670c8365052c3c7aa9e9c1b3e920a6915be SHA1 8163b49d189d0082c6b937374b02382074a33031 SHA256 eaf6d4f69f386d91cb42ee9c80a66fea49aac6341c446d664d5521c1d253396f
DIST lodgeit-0.3_p20120614.vim 3882 RMD160 3b327948345e3e34388c1d4cd94a65bc610889ab SHA1 bf252b6c9cf0248c3354b8ab77d144cfd45fb8ff SHA256 b8c1e918a7d6e7c5675ccd05893ad7bf3dae19493248e85735fded16903b06bc
DIST lodgeit-0.3_p20120618.py 13010 RMD160 34e1f9d7afb362e48c4fa349da0498ecbc9b24c2 SHA1 38b3ccd890d66d6822dd5f73b37e580497fff00a SHA256 6a48885c6215d5b3abea55934cddc74a9fb3fdac03e29e269c7e7913b99f0f3b
DIST lodgeit-0.3_p20120618.vim 3882 RMD160 3b327948345e3e34388c1d4cd94a65bc610889ab SHA1 bf252b6c9cf0248c3354b8ab77d144cfd45fb8ff SHA256 b8c1e918a7d6e7c5675ccd05893ad7bf3dae19493248e85735fded16903b06bc

@ -1,10 +1,10 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/lodgeit/lodgeit-0.3_p20120614.ebuild,v 1.1 2012/06/26 17:46:04 maksbotan Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/lodgeit/lodgeit-0.3_p20120618.ebuild,v 1.1 2012/06/29 07:49:49 maksbotan Exp $
EAPI="4"
MY_REV="0f51a7cb1576"
MY_REV="1ca55b8189de"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"

@ -9,6 +9,10 @@
<email>wired@gentoo.org</email>
<name>Alex Alexander</name>
</maintainer>
<maintainer>
<email>maksbotan@gentoo.org</email>
<name>Maxim Koltsov</name>
</maintainer>
<use>
<flag name="lodgeit-default">Set one of lodgeit-like (ex http://paste.pocoo.org) services as default</flag>
</use>

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/wgetpaste-2.20-r1.ebuild,v 1.1 2012/06/26 17:52:48 maksbotan Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/wgetpaste-2.20-r1.ebuild,v 1.2 2012/06/29 16:17:38 ago Exp $
EAPI="4"
@ -10,7 +10,7 @@ SRC_URI="http://wgetpaste.zlin.dk/${P}.tar.bz2"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="zsh-completion +lodgeit-default"
DEPEND=""

@ -1 +1,2 @@
DIST xbase-2.0.0.tgz 493106 RMD160 577394ce21abc92df11127216f4199ec47549ce2 SHA1 11188393f2390a6b2765c1bf81faf95a8587e1e0 SHA256 4aa8aad84157422124a99a457863d52e4e9753656614dcdc67a6300a4a14bc90
DIST xbase64-3.1.2.tar.gz 425650 RMD160 8f2a16fcecd6098b7b3ca47354e33a387a7dc1d9 SHA1 5bd433a4f748a6fa1a7855b6a2325483d4ee7206 SHA256 5920c453e358ef4af8408c1998805af4537d288436dd7f3c31b5561bfe3c489c

@ -0,0 +1,11 @@
--- xbase-2.0.0/xbase-config.in.BAD 2005-07-10 08:38:03.000000000 -0500
+++ xbase-2.0.0/xbase-config.in 2005-07-10 08:37:25.000000000 -0500
@@ -5,7 +5,7 @@
exec_prefix_set=no
CC="@CC@"
CXX="@CXX@"
-LD="@SHARED_LD@"
+LD="@LD@"
usage="\
Usage: xbase-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags] [--cc] [--cxx] [--ld]"

@ -0,0 +1,11 @@
--- xbase-2.0.0/xbase/ntx.h.BAD 2006-06-04 08:36:08.000000000 -0500
+++ xbase-2.0.0/xbase/ntx.h 2006-06-04 08:36:13.000000000 -0500
@@ -218,7 +218,7 @@
xbShort KeyExists( char * Key ) { return FindKey( Key, strlen( Key ), 0 ); }
xbShort KeyExists( xbDouble );
- xbShort xbNtx::AllocKeyBufs(void);
+ xbShort AllocKeyBufs(void);
virtual void GetExpression(char *buf, int len);
};

@ -0,0 +1,21 @@
bin/dumprecs.cpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/bin/dumprecs.cpp b/bin/dumprecs.cpp
index 94baab0..b7eaa57 100644
--- a/bin/dumprecs.cpp
+++ b/bin/dumprecs.cpp
@@ -80,10 +80,10 @@ int main(int ac,char** av)
}
cout << "\nLoop through forwards...\n";
- int i = 0;
+ int j = 0;
while(i<MyFile.NoOfRecords()) {
- MyFile.DumpRecord(i+1);
- i++;
+ MyFile.DumpRecord(j+1);
+ j++;
}
MyFile.CloseDatabase(); /* close database */

@ -0,0 +1,20 @@
--- xbase-2.0.0/ltconfig.foo 2007-05-04 18:14:42.000000000 -0400
+++ xbase-2.0.0/ltconfig 2007-05-04 18:15:39.000000000 -0400
@@ -1664,16 +1664,7 @@ linux-gnu*)
shlibpath_var=LD_LIBRARY_PATH
check_shared_deplibs_method='file_magic ELF 32-bit LSB shared object'
sys_lib_search_path="/lib /usr/lib /usr/local/lib `echo $LD_LIBRARY_PATH | sed -e 's/:/ /g'`"
-
- if test -f /lib/ld.so.1; then
- dynamic_linker='GNU ld.so'
- else
- # Only the GNU ld.so supports shared libraries on MkLinux.
- case "$host_cpu" in
- powerpc*) dynamic_linker=no ;;
- *) dynamic_linker='Linux ld.so' ;;
- esac
- fi
+ dynamic_linker='GNU ld.so'
;;
netbsd* | openbsd*)

@ -0,0 +1,12 @@
diff -up xbase-2.0.0/config.sub.BAD xbase-2.0.0/config.sub
--- xbase-2.0.0/config.sub.BAD 2008-06-05 15:47:20.000000000 -0400
+++ xbase-2.0.0/config.sub 2008-06-05 15:49:10.000000000 -0400
@@ -182,7 +182,7 @@ case $basic_machine in
| sparc64-* | mips64-* | mipsel-* \
| mips64el-* | mips64orion-* | mips64orionel-* \
| mipstx39-* | mipstx39el-* \
- | f301-*)
+ | f301-* | x86_64-* | ppc64-*)
;;
# Recognize the various machine names and aliases which stand
# for a CPU type and a company and sometimes even an OS.

@ -0,0 +1,12 @@
diff -up xbase64-3.1.2/xbase64-config.in.BAD xbase64-3.1.2/xbase64-config.in
--- xbase64-3.1.2/xbase64-config.in.BAD 2009-08-19 22:58:42.081087534 -0400
+++ xbase64-3.1.2/xbase64-config.in 2009-08-19 22:58:45.604090002 -0400
@@ -5,7 +5,7 @@ exec_prefix=@exec_prefix@
exec_prefix_set=no
CC="@CC@"
CXX="@CXX@"
-LD="@SHARED_LD@"
+LD="@LD@"
usage="\
Usage: xbase-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags] [--cc] [--cxx] [--ld]"

@ -0,0 +1,16 @@
configure.in | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure.in b/configure.in
index 3110c70..5850231 100755
--- a/configure.in
+++ b/configure.in
@@ -74,7 +74,7 @@ AC_SUBST(RHREL)
# get G++ version
if test "$GXX" = "yes"; then
- GXXVER=`${CXX} -v 2>&1 | grep version | cut -d " " -f 3 -`
+ GXXVER=`${CXX} -v 2>&1 | grep " version " | cut -d " " -f 3 -`
GXXVER="gcc${GXXVER}"
else
GXXVER=""

@ -0,0 +1,24 @@
diff -up xbase64-3.1.2/xbase64/xbase64.cpp.gcc44 xbase64-3.1.2/xbase64/xbase64.cpp
--- xbase64-3.1.2/xbase64/xbase64.cpp.gcc44 2006-07-17 12:54:42.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbase64.cpp 2009-08-19 23:08:14.724079392 -0400
@@ -66,6 +66,8 @@
#include <dos.h>
#endif
+#include <cerrno>
+
/*! \file xbase64.cpp
*/
diff -up xbase64-3.1.2/xbase64/xblock.cpp.gcc44 xbase64-3.1.2/xbase64/xblock.cpp
--- xbase64-3.1.2/xbase64/xblock.cpp.gcc44 2009-08-19 23:08:59.408186578 -0400
+++ xbase64-3.1.2/xbase64/xblock.cpp 2009-08-19 23:09:11.416184844 -0400
@@ -65,6 +65,8 @@
//#include <stdio.h>
//#include <stdlib.h>
+#include <cerrno>
+
/*! \file xblock.cpp
*/
#ifdef XB_LOCKING_ON

@ -0,0 +1,21 @@
diff -up xbase64-3.1.2/bin/dumprecs.cpp.gcc47 xbase64-3.1.2/bin/dumprecs.cpp
--- xbase64-3.1.2/bin/dumprecs.cpp.gcc47 2012-01-05 15:36:00.377536998 -0500
+++ xbase64-3.1.2/bin/dumprecs.cpp 2012-01-05 15:36:15.198399295 -0500
@@ -70,7 +70,7 @@ int main(int ac,char** av)
return 1;
}
- for(int i=1; i<ac; ++i){
+ for(int i=1; i<ac; ++i){{
char* filename = av[i];
xbDbf MyFile( &x );
@@ -91,7 +91,7 @@ int main(int ac,char** av)
x.DisplayError( rc );
}
MyFile.CloseDatabase(); /* close database */
- }
+ }}
return 0;
}

@ -0,0 +1,294 @@
diff -up xbase64-3.1.2/xbase64/xbase64.cpp.lesserg xbase64-3.1.2/xbase64/xbase64.cpp
--- xbase64-3.1.2/xbase64/xbase64.cpp.lesserg 2012-01-05 15:31:01.695312436 -0500
+++ xbase64-3.1.2/xbase64/xbase64.cpp 2012-01-05 15:31:01.717312232 -0500
@@ -38,7 +38,7 @@
*/
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma implementation "xbase64.h"
#endif
diff -up xbase64-3.1.2/xbase64/xbase64.h.lesserg xbase64-3.1.2/xbase64/xbase64.h
--- xbase64-3.1.2/xbase64/xbase64.h.lesserg 2006-07-17 12:54:50.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbase64.h 2012-01-05 15:31:01.718312223 -0500
@@ -42,7 +42,7 @@
#ifndef __XB_XBASE_H__
#define __XB_XBASE_H__
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma interface
#endif
@@ -60,7 +60,7 @@
// ripped from wxWindows
// _declspec works in BC++ 5 and later, as well as VC++
-#if defined(__VISUALC__) || defined(__BORLANDC__) || defined(__GNU LesserC__)
+#if defined(__VISUALC__) || defined(__BORLANDC__) || defined(__GNU_LesserC__)
# ifdef XBMAKINGDLL
# define XBDLLEXPORT __declspec( dllexport )
# define XBDLLEXPORT_DATA(type) __declspec( dllexport ) type
diff -up xbase64-3.1.2/xbase64/xbcdx.h.lesserg xbase64-3.1.2/xbase64/xbcdx.h
--- xbase64-3.1.2/xbase64/xbcdx.h.lesserg 2012-01-05 15:32:17.398608985 -0500
+++ xbase64-3.1.2/xbase64/xbcdx.h 2012-01-05 15:32:43.051370614 -0500
@@ -50,7 +50,7 @@ struct CdxInnerNode: public CdxNode
{
char keys[500];
}
-#ifdef __GNU LesserC__
+#ifdef __GNU_LesserC__
__attribute__((packed))
#endif
;
@@ -67,7 +67,7 @@ struct CdxLeafNode: public CdxNode
char byteCount;
char keys[488];
}
-#ifdef __GNU LesserC__
+#ifdef __GNU_LesserC__
__attribute__((packed))
#endif
;
diff -up xbase64-3.1.2/xbase64/xbdate.cpp.lesserg xbase64-3.1.2/xbase64/xbdate.cpp
--- xbase64-3.1.2/xbase64/xbdate.cpp.lesserg 2006-07-17 12:54:42.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbdate.cpp 2012-01-05 15:31:01.719312213 -0500
@@ -40,7 +40,7 @@
*/
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma implementation "xbdate.h"
#endif
diff -up xbase64-3.1.2/xbase64/xbdate.h.lesserg xbase64-3.1.2/xbase64/xbdate.h
--- xbase64-3.1.2/xbase64/xbdate.h.lesserg 2006-07-17 12:54:50.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbdate.h 2012-01-05 15:31:01.721312195 -0500
@@ -45,7 +45,7 @@
#ifndef __XB_XBDATE_H__
#define __XB_XBDATE_H__
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma interface
#endif
diff -up xbase64-3.1.2/xbase64/xbdbf.cpp.lesserg xbase64-3.1.2/xbase64/xbdbf.cpp
--- xbase64-3.1.2/xbase64/xbdbf.cpp.lesserg 2006-07-17 12:54:42.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbdbf.cpp 2012-01-05 15:31:01.722312185 -0500
@@ -39,7 +39,7 @@
*/
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma implementation "xbdbf.h"
#endif
diff -up xbase64-3.1.2/xbase64/xbdbf.h.lesserg xbase64-3.1.2/xbase64/xbdbf.h
--- xbase64-3.1.2/xbase64/xbdbf.h.lesserg 2006-07-17 12:54:50.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbdbf.h 2012-01-05 15:31:01.723312175 -0500
@@ -41,7 +41,7 @@
#ifndef __XB_DBF_H__
#define __XB_DBF_H__
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma interface
#endif
diff -up xbase64-3.1.2/xbase64/xbexp.cpp.lesserg xbase64-3.1.2/xbase64/xbexp.cpp
--- xbase64-3.1.2/xbase64/xbexp.cpp.lesserg 2006-07-17 12:54:42.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbexp.cpp 2012-01-05 15:31:01.725312157 -0500
@@ -38,7 +38,7 @@
*/
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma implementation "xbexp.h"
#endif
diff -up xbase64-3.1.2/xbase64/xbexp.h.lesserg xbase64-3.1.2/xbase64/xbexp.h
--- xbase64-3.1.2/xbase64/xbexp.h.lesserg 2006-07-17 12:54:50.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbexp.h 2012-01-05 15:31:01.726312148 -0500
@@ -42,7 +42,7 @@
#ifndef __XB_EXP_H__
#define __XB_EXP_H__
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma interface
#endif
diff -up xbase64-3.1.2/xbase64/xbfile.cpp.lesserg xbase64-3.1.2/xbase64/xbfile.cpp
--- xbase64-3.1.2/xbase64/xbfile.cpp.lesserg 2006-07-17 12:54:42.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbfile.cpp 2012-01-05 15:31:01.727312139 -0500
@@ -39,7 +39,7 @@
*/
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma implementation "xbfile.h"
#endif
diff -up xbase64-3.1.2/xbase64/xbfile.h.lesserg xbase64-3.1.2/xbase64/xbfile.h
--- xbase64-3.1.2/xbase64/xbfile.h.lesserg 2006-07-17 12:54:50.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbfile.h 2012-01-05 15:31:01.728312130 -0500
@@ -45,7 +45,7 @@
#ifndef __XB_FILE_H__
#define __XB_FILE_H__
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma interface
#endif
diff -up xbase64-3.1.2/xbase64/xbfilter.cpp.lesserg xbase64-3.1.2/xbase64/xbfilter.cpp
--- xbase64-3.1.2/xbase64/xbfilter.cpp.lesserg 2006-07-17 12:54:42.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbfilter.cpp 2012-01-05 15:31:01.729312120 -0500
@@ -38,7 +38,7 @@
*/
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma implementation "xbfilter.h"
#endif
diff -up xbase64-3.1.2/xbase64/xbfilter.h.lesserg xbase64-3.1.2/xbase64/xbfilter.h
--- xbase64-3.1.2/xbase64/xbfilter.h.lesserg 2006-07-17 12:54:50.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbfilter.h 2012-01-05 15:31:01.731312101 -0500
@@ -44,7 +44,7 @@
#ifndef __XB_FILTER_H__
#define __XB_FILTER_H__
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma interface
#endif
diff -up xbase64-3.1.2/xbase64/xbindex.cpp.lesserg xbase64-3.1.2/xbase64/xbindex.cpp
--- xbase64-3.1.2/xbase64/xbindex.cpp.lesserg 2006-07-17 12:54:42.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbindex.cpp 2012-01-05 15:31:01.732312092 -0500
@@ -37,7 +37,7 @@
USA
*/
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma implementation "xbindex.h"
#endif
diff -up xbase64-3.1.2/xbase64/xbindex.h.lesserg xbase64-3.1.2/xbase64/xbindex.h
--- xbase64-3.1.2/xbase64/xbindex.h.lesserg 2006-07-17 12:54:50.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbindex.h 2012-01-05 15:31:01.733312083 -0500
@@ -43,7 +43,7 @@
#ifndef __XB_INDEX_H__
#define __XB_INDEX_H__
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma interface
#endif
diff -up xbase64-3.1.2/xbase64/xblock.cpp.lesserg xbase64-3.1.2/xbase64/xblock.cpp
--- xbase64-3.1.2/xbase64/xblock.cpp.lesserg 2012-01-05 15:31:01.696312427 -0500
+++ xbase64-3.1.2/xbase64/xblock.cpp 2012-01-05 15:31:01.734312074 -0500
@@ -42,7 +42,7 @@
USA
*/
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma implementation "xblock.h"
#endif
diff -up xbase64-3.1.2/xbase64/xblock.h.lesserg xbase64-3.1.2/xbase64/xblock.h
--- xbase64-3.1.2/xbase64/xblock.h.lesserg 2006-07-17 12:54:50.000000000 -0400
+++ xbase64-3.1.2/xbase64/xblock.h 2012-01-05 15:31:01.735312065 -0500
@@ -44,7 +44,7 @@
#ifndef __XB_XBLOCK_H__
#define __XB_XBLOCK_H__
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma interface
#endif
diff -up xbase64-3.1.2/xbase64/xbndx.cpp.lesserg xbase64-3.1.2/xbase64/xbndx.cpp
--- xbase64-3.1.2/xbase64/xbndx.cpp.lesserg 2006-07-17 12:54:42.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbndx.cpp 2012-01-05 15:31:01.737312045 -0500
@@ -36,7 +36,7 @@
*/
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma implementation "xbndx.h"
#endif
diff -up xbase64-3.1.2/xbase64/xbndx.h.lesserg xbase64-3.1.2/xbase64/xbndx.h
--- xbase64-3.1.2/xbase64/xbndx.h.lesserg 2006-07-17 12:54:50.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbndx.h 2012-01-05 15:31:01.738312036 -0500
@@ -41,7 +41,7 @@
#ifndef __XB_NDX_H__
#define __XB_NDX_H__
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma interface
#endif
diff -up xbase64-3.1.2/xbase64/xbntx.cpp.lesserg xbase64-3.1.2/xbase64/xbntx.cpp
--- xbase64-3.1.2/xbase64/xbntx.cpp.lesserg 2006-07-17 12:54:42.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbntx.cpp 2012-01-05 15:31:01.740312018 -0500
@@ -40,7 +40,7 @@
USA
*/
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma implementation "xbntx.h"
#endif
diff -up xbase64-3.1.2/xbase64/xbntx.h.lesserg xbase64-3.1.2/xbase64/xbntx.h
--- xbase64-3.1.2/xbase64/xbntx.h.lesserg 2006-07-17 12:54:50.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbntx.h 2012-01-05 15:31:01.741312009 -0500
@@ -42,7 +42,7 @@
#ifndef __XB_NTX_H__
#define __XB_NTX_H__
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma interface
#endif
diff -up xbase64-3.1.2/xbase64/xbstring.cpp.lesserg xbase64-3.1.2/xbase64/xbstring.cpp
--- xbase64-3.1.2/xbase64/xbstring.cpp.lesserg 2006-07-17 12:54:42.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbstring.cpp 2012-01-05 15:31:01.742312000 -0500
@@ -38,7 +38,7 @@
*/
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma implementation "xbstring.h"
#endif
diff -up xbase64-3.1.2/xbase64/xbstring.h.lesserg xbase64-3.1.2/xbase64/xbstring.h
--- xbase64-3.1.2/xbase64/xbstring.h.lesserg 2006-07-17 12:54:50.000000000 -0400
+++ xbase64-3.1.2/xbase64/xbstring.h 2012-01-05 15:31:01.743311990 -0500
@@ -41,7 +41,7 @@
#ifndef __XBSTRING_H__
#define __XBSTRING_H__
-#ifdef __GNU LesserG__
+#ifdef __GNU_LesserG__
#pragma interface
#endif

@ -0,0 +1,52 @@
bin/Makefile.am | 2 +-
examples/Makefile.am | 2 +-
libtest/Makefile.am | 2 +-
xbase64/Makefile.am | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/bin/Makefile.am b/bin/Makefile.am
index 43c8333..ca49ca1 100755
--- a/bin/Makefile.am
+++ b/bin/Makefile.am
@@ -1,5 +1,5 @@
-INCLUDES= -I$(topdir)
+INCLUDES= -I$(top_srcdir)
LDADD = -L$(topdir)/xbase64 -lxbase64
INSTALL_PROGRAM = @INSTALL@
diff --git a/examples/Makefile.am b/examples/Makefile.am
index 248b1ec..85adbf3 100755
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -1,5 +1,5 @@
-INCLUDES= -I$(topdir) $(all_includes)
+INCLUDES= -I$(top_srcdir) $(all_includes)
LDADD = -L$(topdir)/xbase64 -lxbase64
# for shadow passwords override the value
diff --git a/libtest/Makefile.am b/libtest/Makefile.am
index 9e84830..1b73af1 100755
--- a/libtest/Makefile.am
+++ b/libtest/Makefile.am
@@ -1,5 +1,5 @@
-INCLUDES= -I$(topdir)
+INCLUDES= -I$(top_srcdir)
LDADD = -L$(topdir)/xbase64 -lxbase64
INSTALL_PROGRAM = @INSTALL@
diff --git a/xbase64/Makefile.am b/xbase64/Makefile.am
index b0dff24..857aa82 100755
--- a/xbase64/Makefile.am
+++ b/xbase64/Makefile.am
@@ -25,7 +25,7 @@
#
#
-INCLUDES = -I$(topdir)
+INCLUDES = -I$(top_srcdir)
lib_LTLIBRARIES = libxbase64.la

@ -0,0 +1,9 @@
diff -up xbase64-3.1.2/xbase64/xbnode.cpp.BAD xbase64-3.1.2/xbase64/xbnode.cpp
--- xbase64-3.1.2/xbase64/xbnode.cpp.BAD 2009-08-19 23:10:38.444059289 -0400
+++ xbase64-3.1.2/xbase64/xbnode.cpp 2009-08-19 23:10:47.348202984 -0400
@@ -1,4 +1,4 @@
-#include "xbNode.h"
+#include "xbnode.h"
void xbNodeLink::AddNode(xbNodeLink* node)
{

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

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/xbase/xbase-2.0.0-r1.ebuild,v 1.5 2012/06/07 21:32:25 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-db/xbase/xbase-2.0.0-r1.ebuild,v 1.6 2012/06/29 14:42:09 jer Exp $
EAPI="4"
inherit base eutils
@ -11,7 +11,7 @@ SRC_URI="http://www.rekallrevealed.org/packages/${P}.tgz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
KEYWORDS="~alpha amd64 hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
IUSE="doc"
RDEPEND=""

@ -0,0 +1,49 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/xbase/xbase-2.0.0-r2.ebuild,v 1.1 2012/06/30 13:41:45 jlec Exp $
EAPI=4
inherit autotools-utils
DESCRIPTION="xbase (i.e. dBase, FoxPro, etc.) compatible C++ class library"
HOMEPAGE="http://www.rekallrevealed.org/"
SRC_URI="http://www.rekallrevealed.org/packages/${P}.tgz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="doc static-libs"
RDEPEND=""
DEPEND="${DEPEND}
sys-devel/automake
sys-devel/libtool"
PATCHES=(
"${FILESDIR}"/${P}-gcc43.patch
"${FILESDIR}"/${P}-gcc47.patch
"${FILESDIR}"/${P}-fixconfig.patch
"${FILESDIR}"/${P}-x86_64.patch
"${FILESDIR}"/${P}-ldflags.patch
)
AUTOTOOLS_IN_SOURCE_BUILD=1
src_compile() {
autotools-utils_src_compile \
CC="$(tc-getCC)" \
CXX="$(tc-getCXX)"
}
src_install() {
autotools-utils_src_install
# media-tv/linuxtv-dvb-apps collision, bug #208596
mv "${ED}/usr/bin/zap" "${ED}/usr/bin/xbase-zap" || die
if use doc; then
dohtml html/*
insinto /usr/share/doc/${PF}/examples
doins examples/{*.cpp,examples.ide,makefile.g95}
fi
}

@ -1,10 +1,10 @@
# Copyright 1999-2009 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/xbase/xbase-2.0.0.ebuild,v 1.18 2009/01/10 19:04:23 halcy0n Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-db/xbase/xbase-2.0.0.ebuild,v 1.19 2012/06/30 13:41:44 jlec Exp $
inherit base eutils
DESCRIPTION="XBase is an xbase (i.e. dBase, FoxPro, etc.) compatible C++ class library"
DESCRIPTION="xbase (i.e. dBase, FoxPro, etc.) compatible C++ class library"
HOMEPAGE="http://www.rekallrevealed.org/"
SRC_URI="http://www.rekallrevealed.org/packages/${P}.tgz"
@ -28,7 +28,7 @@ src_unpack() {
src_install() {
base_src_install
dodoc AUTHORS COPYING Changelog INSTALL NEWS README TODO
dodoc AUTHORS Changelog INSTALL NEWS README TODO
if use doc; then
rm html/Makefile*
dohtml html/*

@ -0,0 +1,47 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/xbase/xbase-3.1.2.ebuild,v 1.1 2012/06/30 13:41:45 jlec Exp ${PN}/${PN}-2.0.0-r1.ebuild,v 1.6 2012/06/29 14:42:09 jer Exp $
EAPI=4
AUTOTOOLS_AUTORECONF=no
inherit autotools-utils
DESCRIPTION="xbase (i.e. dBase, FoxPro, etc.) compatible C++ class library"
HOMEPAGE="http://linux.techass.com/projects/xdb/"
SRC_URI="mirror://sourceforge/xdb/${PN}64-${PV}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="doc static-libs"
RDEPEND=""
DEPEND="${DEPEND}
sys-devel/automake
sys-devel/libtool"
S="${WORKDIR}"/${PN}64-${PV}
PATCHES=(
"${FILESDIR}"/${P}-fixconfig.patch
"${FILESDIR}"/${P}-gcc44.patch
"${FILESDIR}"/${PN}-2.0.0-ppc.patch
"${FILESDIR}"/${P}-xbnode.patch
"${FILESDIR}"/${P}-lesserg.patch
"${FILESDIR}"/${P}-outofsource.patch
"${FILESDIR}"/${P}-gcc47.patch
"${FILESDIR}"/${P}-gcc-version.patch )
src_install() {
autotools-utils_src_install
# media-tv/linuxtv-dvb-apps collision, bug #208596
mv "${ED}/usr/bin/zap" "${ED}/usr/bin/${PN}-zap" || die
if use doc; then
dohtml html/*
insinto /usr/share/doc/${PF}/examples
doins examples/{*.cpp,examples.ide,makefile.g95}
fi
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/binary/binary-0.5.1.0.ebuild,v 1.6 2012/06/28 10:51:43 gienah Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/binary/binary-0.5.1.0.ebuild,v 1.7 2012/06/29 12:53:06 ranger Exp $
# ebuild generated by hackport 0.2.13
@ -15,7 +15,7 @@ SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha amd64 ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd ~ppc-macos ~x86-macos"
KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~ppc-macos ~x86-macos"
IUSE=""
RDEPEND=">=dev-lang/ghc-6.8.2"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jcharts/jcharts-0.7.5-r2.ebuild,v 1.2 2012/06/28 10:04:02 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-java/jcharts/jcharts-0.7.5-r2.ebuild,v 1.3 2012/06/29 05:49:50 jdhore Exp $
EAPI="4"
@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE=""
# tests need X11

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/spidermonkey/spidermonkey-1.8.5-r1.ebuild,v 1.8 2012/06/19 23:18:48 blueness Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-lang/spidermonkey/spidermonkey-1.8.5-r1.ebuild,v 1.9 2012/06/29 15:50:38 jer Exp $
EAPI="3"
WANT_AUTOCONF="2.1"
@ -16,7 +16,7 @@ SRC_URI="https://ftp.mozilla.org/pub/mozilla.org/js/${TARBALL_P}.tar.gz"
LICENSE="NPL-1.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="debug static-libs test"
S="${WORKDIR}/${MY_P}"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/spidermonkey/spidermonkey-1.8.7.ebuild,v 1.2 2012/06/19 23:18:48 blueness Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-lang/spidermonkey/spidermonkey-1.8.7.ebuild,v 1.3 2012/06/29 15:50:38 jer Exp $
EAPI="3"
WANT_AUTOCONF="2.1"
@ -18,7 +18,7 @@ SRC_URI="http://people.mozilla.com/~dmandelin/${TARBALL_P}.tar.gz
LICENSE="NPL-1.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="debug jit static-libs test"
S="${WORKDIR}/${MY_P}"

@ -1,2 +1,2 @@
DIST btparser-0.13.tar.xz 270144 RMD160 6cf77e364a7d3c4bfed74005d8a2ac5129584383 SHA1 ca445ed4d8e40b75b8144dfe9bd66d3c6e0109c8 SHA256 7b001c25d5462bd9706f1256c160c077b9bcd3768c6cf1f28dcf907dddad195c
DIST btparser-0.16.tar.xz 309320 RMD160 5d1e06d165e69a5e76c145547860fdf586e55d53 SHA1 25baa7f5bb3cbff8e309ae2b3fb0b4966c201fec SHA256 cb3337a282ef87010631861c2992fa397533b2331cfa2f84e50b62bfb2ae6272
DIST btparser-0.17.tar.xz 309636 RMD160 2766390bdfbf3aeb8c1859ada098d818f253f7c8 SHA1 1b1607fa6472275e3ba8bf2524d14e60349f5214 SHA256 3747087f15d56c08af6e3cafe6bd1b5f2eb8c1fa05ad5346c4730fe1bc07447d

@ -1,29 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/btparser/btparser-0.13.ebuild,v 1.3 2012/01/14 15:55:32 maekke Exp $
EAPI="4"
DESCRIPTION="Parser and analyzer for backtraces produced by gdb"
HOMEPAGE="https://fedorahosted.org/btparser/"
SRC_URI="https://fedorahosted.org/released/${PN}/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="static-libs"
RDEPEND=""
DEPEND="${RDEPEND}
app-arch/xz-utils"
src_configure() {
econf \
$(use_enable static-libs static) \
--disable-maintainer-mode
}
src_install() {
default
use static-libs || find "${D}" -name '*.la' -exec rm -f {} +
}

@ -0,0 +1,54 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/btparser/btparser-0.17.ebuild,v 1.1 2012/06/30 12:12:27 pacho Exp $
EAPI="4"
PYTHON_DEPEND="2:2.6"
inherit python
DESCRIPTION="Parser and analyzer for backtraces produced by gdb"
HOMEPAGE="https://fedorahosted.org/btparser/"
SRC_URI="https://fedorahosted.org/released/${PN}/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="static-libs"
RDEPEND=""
DEPEND="${RDEPEND}
app-arch/xz-utils"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
python_clean_py-compile_files
}
src_configure() {
# Configure checks for python.pc; our python-2.7 installs python-2.7.pc,
# while python-2.6 does not install any pkgconfig file.
export PYTHON_CFLAGS=$(python-config --includes)
export PYTHON_LIBS=$(python-config --libs)
econf \
$(use_enable static-libs static) \
--disable-maintainer-mode
}
src_install() {
default
find "${D}" -name '*.la' -exec rm -f {} +
}
pkg_postinst() {
python_mod_optimize btparser
}
pkg_postrm() {
python_mod_cleanup btparser
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libatasmart/libatasmart-0.19.ebuild,v 1.3 2012/06/28 07:02:51 jdhore Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libatasmart/libatasmart-0.19.ebuild,v 1.4 2012/06/29 12:41:28 ranger Exp $
EAPI=4
@ -10,7 +10,7 @@ SRC_URI="http://0pointer.de/public/${P}.tar.xz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86"
IUSE="static-libs"
RDEPEND=">=sys-fs/udev-143"

@ -1,2 +1,2 @@
DIST libcec-1.6.2.tar.gz 929364 RMD160 dc4de5eadf587dacb292da140d472ffc4a9b0700 SHA1 fcc9b0274d179797b6cd959c8fca5720bf6b98ef SHA256 2d853df4478a9b93ef699c7038cf78a97741b1a594996d1df644f2d5e51d6969
DIST libcec-1.7.0.tar.gz 961486 RMD160 27b3bb39d830dbfdc997edccf5278e472609df36 SHA1 15a6fa678c092ed706f53050519ab37561629acd SHA256 28ed8c326bbe1c181f4f4c41660e2f1f6097494647f05a51b30a6034b8171b30
DIST libcec-1.7.1.tar.gz 968136 RMD160 cef136bb45fd13b95cc9f96985cb535e3e9c4199 SHA1 3520918345f758a6da1aff131b46e4145af2eb33 SHA256 a560a792376bce73526f32ede89985b923d899cdf2f739be99e466b322b3211d

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcec/libcec-1.7.0.ebuild,v 1.1 2012/06/18 19:32:07 thev00d00 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcec/libcec-1.7.1.ebuild,v 1.1 2012/06/29 19:50:11 thev00d00 Exp $
EAPI=4

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/libgcrypt-1.5.0-r2.ebuild,v 1.6 2012/06/25 07:10:13 jdhore Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/libgcrypt-1.5.0-r2.ebuild,v 1.7 2012/06/29 14:28:23 jer Exp $
EAPI="4"
@ -14,7 +14,7 @@ SRC_URI="mirror://gnupg/libgcrypt/${P}.tar.bz2
LICENSE="LGPL-2.1 MIT"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="static-libs"
RDEPEND=">=dev-libs/libgpg-error-1.8"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.11.ebuild,v 1.2 2012/06/17 20:00:14 maekke Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.11.ebuild,v 1.3 2012/06/29 16:36:47 jer Exp $
EAPI=4
inherit eutils multilib
@ -15,7 +15,7 @@ IUSE="doc static-libs utils"
DEPEND="
sys-devel/flex
virtual/yacc
sys-devel/bison
doc? (
app-text/asciidoc
app-doc/doxygen[latex]

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.7.ebuild,v 1.7 2012/05/28 16:30:27 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.7.ebuild,v 1.8 2012/06/29 16:36:47 jer Exp $
EAPI="4"
@ -16,7 +16,7 @@ IUSE="static-libs utils"
DEPEND="
sys-devel/flex
virtual/yacc
sys-devel/bison
"
src_prepare() {

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.9.ebuild,v 1.5 2012/05/28 16:30:27 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.9.ebuild,v 1.6 2012/06/29 16:36:47 jer Exp $
EAPI=4
inherit eutils multilib
@ -15,7 +15,7 @@ IUSE="doc static-libs utils"
DEPEND="
sys-devel/flex
virtual/yacc
sys-devel/bison
doc? (
<app-doc/doxygen-1.8.0[latex]
app-text/xmlstarlet

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtar/libtar-1.2.11-r5.ebuild,v 1.5 2012/06/25 17:13:38 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtar/libtar-1.2.11-r5.ebuild,v 1.6 2012/06/29 12:57:41 ranger Exp $
EAPI=4
inherit autotools eutils multilib
@ -14,7 +14,7 @@ SRC_URI="ftp://ftp.feep.net/pub/software/libtar/${P}.tar.gz
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ppc64 ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
KEYWORDS="amd64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="static-libs zlib"
DEPEND="zlib? ( sys-libs/zlib )

@ -1 +1,2 @@
DIST bin-prot-2.0.3.tar.gz 109427 RMD160 fe02221b20f2bb176a2a5e6f293c906470f945ce SHA1 5744736b5eb9367633c5fc124d531f6d9d66ee5e SHA256 e30a7f25ead4012f7719201b37cebd1d0ff1a839db5b84c72ffa1f17531fecf5
DIST bin_prot-108.00.01.tar.gz 111721 RMD160 0ffc748430c4f96271a55560e3e4865c6a87c2d0 SHA1 92d495da10bc57e621e96d12187d70e47f2b88a5 SHA256 fff4872f820e51188310f443274ed696096a94b0f8ce291d074038e19fc7574e

@ -0,0 +1,42 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/bin-prot/bin-prot-108.00.01.ebuild,v 1.1 2012/06/30 13:10:13 aballier Exp $
EAPI=3
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="A binary protocol generator"
HOMEPAGE="http://ocaml.janestreet.com/?q=node/13"
SRC_URI="http://bitbucket.org/yminsky/ocaml-core/downloads/${MY_P}.tar.gz"
LICENSE="LGPL-2.1-linking-exception"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc"
RDEPEND=">=dev-ml/ounit-1.0.2
>=dev-ml/type-conv-3.0.5"
DEPEND="${RDEPEND}
doc? ( virtual/latex-base dev-texlive/texlive-latexextra )"
DOCS=( "README" "Changelog" )
S="${WORKDIR}/${MY_P}"
src_compile() {
oasis_src_compile
if use doc ; then
cd "${S}/doc"
pdflatex README || die
pdflatex README || die
fi
}
src_install() {
oasis_src_install
if use doc; then
dodoc doc/README.pdf || die
fi
}

@ -1 +1,2 @@
DIST fieldslib-0.1.2.tar.gz 50577 RMD160 3207b2baf8e8e5aa6cf27d1660bf9503db925a58 SHA1 302362ed8c3ce1913246da9584abec8311617807 SHA256 acabd0637decff25b988ce323cdd94430d0cc84584721c30e5b3aa952f0b6254
DIST fieldslib-108.00.01.tar.gz 50051 RMD160 4f23c4051b6bb6ca8c90888ab3d3a27ab21cbec9 SHA1 868e7b0f20f858ba0b18b1b0c787995ae5b856f0 SHA256 f3695e6ff90b2a18ddfe015699a7c3380dd60693829efcc6f5bf300202c65e41

@ -0,0 +1,25 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/fieldslib/fieldslib-108.00.01.ebuild,v 1.1 2012/06/30 14:09:56 aballier Exp $
EAPI="3"
OASIS_BUILD_DOCS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Folding over record fields"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://bitbucket.org/yminsky/ocaml-core/downloads/${MY_P}.tar.gz"
LICENSE="LGPL-2.1-linking-exception"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-ml/type-conv-3.0.5"
RDEPEND="${DEPEND}"
DOCS=( "README" )
S="${WORKDIR}/${MY_P}"

@ -1 +1,2 @@
DIST oasis-0.3.0.tar.gz 298052 RMD160 44e4a85c0153f50be1249ae190a2cd5a72d61440 SHA1 2c39e7bb319a37a325376b15566839909f358766 SHA256 2efa90a2dc31d0b731dc574f99ca3e1fd07079da1898b077d84db4a3fd212701
DIST oasis-0.3.0~rc6.tar.gz 294996 RMD160 267e400c1d087d655add4e288178db35251fde66 SHA1 0d9eda43d7274523e8b03174f5104951190c586f SHA256 d077717ced28e318020e1a2dda7839f81f0f71c121929786e4e0162554a20ef4

@ -0,0 +1,35 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/oasis/oasis-0.3.0.ebuild,v 1.1 2012/06/29 23:27:34 aballier Exp $
EAPI=3
OASIS_BUILD_TESTS=1
OASIS_BUILD_DOCS=1
inherit oasis
MY_P=${P/_/\~}
DESCRIPTION="OASIS is a tool to integrate a configure, build and install system in OCaml project"
HOMEPAGE="http://oasis.forge.ocamlcore.org/index.php"
SRC_URI="http://forge.ocamlcore.org/frs/download.php/918/${MY_P}.tar.gz"
LICENSE="LGPL-2.1-linking-exception"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND=">=dev-ml/ocaml-data-notation-0.0.3"
DEPEND="${RDEPEND}
dev-ml/ocamlify
dev-ml/ocamlmod
test? (
>=dev-ml/ocaml-fileutils-0.4.2
>=dev-ml/ounit-1.1.0
>=dev-ml/ocaml-expect-0.0.2
dev-ml/extlib
)"
STRIP_MASK="*/bin/*"
S="${WORKDIR}/${MY_P}"
DOCS=( "README.txt" "TODO.txt" "AUTHORS.txt" "CHANGES.txt" )

@ -0,0 +1 @@
DIST pa_ounit-108.00.01.tar.gz 47843 RMD160 83cdb96d142b655e321cad54c3a1cfb547598875 SHA1 0aaf7904490bd3e7115dfbcc0228d6be41f75303 SHA256 e53246a676211b9fb06f6ea650d35407ce46872ffd5a29d8464480bde0e6d16e

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>ml</herd>
<longdescription lang="en">
Pa_ounit is a syntax extension that helps writing in-line test in ocaml
code. It allows user to register tests with a new `TEST` top-level expressions
and automatically collects all the tests in a module (in a function
`ounit_tests` of type `unit -> OUnit.test`).
</longdescription>
</pkgmetadata>

@ -0,0 +1,21 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/pa_ounit/pa_ounit-108.00.01.ebuild,v 1.1 2012/06/30 14:35:38 aballier Exp $
EAPI="4"
inherit oasis
DESCRIPTION="Syntax extension that helps writing in-line test in ocaml"
HOMEPAGE="http://bitbucket.org/yminsky/ocaml-core/wiki/Home"
SRC_URI="http://bitbucket.org/yminsky/ocaml-core/downloads/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-ml/type-conv-3.0.5"
RDEPEND="${DEPEND}"
DOCS=( "readme.md" )

@ -0,0 +1 @@
DIST pipebang-108.00.01.tar.gz 43639 RMD160 56a405aef57766e4ef7c5cd135b175bcdc8f9167 SHA1 5bfc9b273b4c3be9620877f190a1afc6131c5332 SHA256 675411f4f71aa6f8161aebec61f39d0ff2e59dcac938879fa206d8b6faab201c

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>ml</herd>
</pkgmetadata>

@ -0,0 +1,19 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/pipebang/pipebang-108.00.01.ebuild,v 1.1 2012/06/30 14:49:17 aballier Exp $
EAPI="4"
inherit oasis
DESCRIPTION="Syntax extension to transform x |! f into f x"
HOMEPAGE="http://bitbucket.org/yminsky/ocaml-core/wiki/Home"
SRC_URI="http://bitbucket.org/yminsky/ocaml-core/downloads/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-ml/type-conv-3.0.5"
RDEPEND="${DEPEND}"

@ -1 +1,2 @@
DIST sexplib-7.0.4.tar.gz 99611 RMD160 936d3bea829d1f1159687622a43d69a5e5b61ce4 SHA1 f041c024832e24ba9c6c7549a2fea8352bc65842 SHA256 83c6c771f423d91bebc4f57202066358adf3775fb000dd780079f51436045a43
DIST sexplib-7.0.5.tar.gz 100582 RMD160 ef93d415b149a3f0698ac66072e43a74c7663d5c SHA1 b57782b7e2d9f2465da32ac76d5991c7fe96d051 SHA256 b1022da052254581aae51fb634345920364439f715a2c786abcd0b828c2ce697

@ -0,0 +1,42 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/sexplib-7.0.5.ebuild,v 1.1 2012/06/30 14:15:29 aballier Exp $
EAPI=3
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
DESCRIPTION="Library for automated conversion of OCaml-values to and from S-expressions"
HOMEPAGE="http://forge.ocamlcore.org/projects/sexplib/"
SRC_URI="http://forge.ocamlcore.org/frs/download.php/832/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-ml/type-conv-3.0.5"
DEPEND="${RDEPEND}
doc? ( virtual/latex-base dev-texlive/texlive-latexextra )"
DOCS=( "README.txt" "Changelog" )
src_compile() {
oasis_src_compile
if use doc ; then
cd "${S}/doc"
pdflatex README || die
pdflatex README || die
fi
}
src_install() {
oasis_src_install
if use doc; then
dodoc doc/README.pdf || die
fi
}

@ -1 +1,2 @@
DIST type-conv-3.0.4.tar.gz 50638 RMD160 2e2abf221cb8606f03737580d59fb9856075c9fc SHA1 ff96519153144502ebcbb3c337990f9b53e06b4b SHA256 63b6f2872d29fb4c0b1448343bb5ec0649365126756128049d45a81238b59f12
DIST type-conv-3.0.5.tar.gz 51268 RMD160 e97e0a2f383ffb94d94ea1d85030d7bf8ec691ad SHA1 6cd36e5b314b6a315db86aa6bd4c823cbcac431a SHA256 90ac6c401a600a23012a3f513def6f67d4979b11bd551f4d0af78f0f0b479198

@ -0,0 +1,23 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/type-conv/type-conv-3.0.5.ebuild,v 1.1 2012/06/30 12:34:52 aballier Exp $
EAPI="3"
inherit oasis
DESCRIPTION="Mini library required for some other preprocessing libraries"
HOMEPAGE="http://forge.ocamlcore.org/projects/type-conv/"
SRC_URI="http://forge.ocamlcore.org/frs/download.php/821/${P}.tar.gz"
LICENSE="LGPL-2.1-linking-exception"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}"
DOCS=( "README.txt" "Changelog" )
S="${WORKDIR}/${PN/-/_}-${PV}"

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

Loading…
Cancel
Save