Sync with portage [Fri May 4 18:27:40 MSK 2012].

mhiretskiy
root 12 years ago
parent 515a3e3949
commit 88300193a2

@ -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/mhash/mhash-0.9.9.9-r1.ebuild,v 1.5 2012/04/01 14:43:44 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/app-crypt/mhash/mhash-0.9.9.9-r1.ebuild,v 1.6 2012/05/04 11:03:34 aballier Exp $
EAPI=4
inherit eutils
@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/mhash/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm ~hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~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 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="static-libs"
RDEPEND=""

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/shash/shash-0.2.6-r1.ebuild,v 1.23 2011/02/06 05:29:49 leio Exp $
# $Header: /var/cvsroot/gentoo-x86/app-crypt/shash/shash-0.2.6-r1.ebuild,v 1.24 2012/05/04 11:10:25 aballier Exp $
inherit bash-completion eutils
@ -10,7 +10,7 @@ SRC_URI="ftp://mcrypt.hellug.gr/pub/mcrypt/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="static"
DEPEND=">=app-crypt/mhash-0.8.18-r1"

@ -1,9 +1,8 @@
# 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-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild,v 1.1 2011/08/14 08:50:59 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild,v 1.4 2012/05/04 11:08:20 ssuominen Exp $
EAPI=4
inherit eutils flag-o-matic toolchain-funcs
DESCRIPTION="QEmacs is a very small but powerful UNIX editor"
@ -13,41 +12,48 @@ SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="X png unicode xv"
RESTRICT="test"
IUSE="png unicode X xv"
RDEPEND="
X? ( x11-libs/libX11
RDEPEND="png? ( media-libs/libpng:0 )
X? (
x11-libs/libX11
x11-libs/libXext
xv? ( x11-libs/libXv ) )
png? ( >=media-libs/libpng-1.2 )"
xv? ( x11-libs/libXv )
)"
DEPEND="${RDEPEND}
app-text/texi2html"
>=app-text/texi2html-5"
S=${WORKDIR}/${PN}
S="${WORKDIR}/${PN}"
RESTRICT="test"
DOCS="Changelog config.eg README TODO"
src_prepare() {
# Removes forced march setting and align-functions on x86, as they
# would override user's CFLAGS..
epatch "${FILESDIR}/${PN}-0.4.0_pre20080605-Makefile.patch"
epatch "${FILESDIR}"/${PN}-0.4.0_pre20080605-Makefile.patch
# Make backup files optional
epatch "${FILESDIR}/${PN}-0.4.0_pre20080605-make_backup.patch"
epatch "${FILESDIR}"/${PN}-0.4.0_pre20080605-make_backup.patch
# Suppress stripping
epatch "${FILESDIR}/${P}-nostrip.patch"
epatch "${FILESDIR}"/${P}-nostrip.patch
use unicode && epatch "${FILESDIR}/${PN}-0.3.2_pre20070226-tty_utf8.patch"
use unicode && epatch "${FILESDIR}"/${PN}-0.3.2_pre20070226-tty_utf8.patch
# Change the manpage to reference a /real/ file instead of just an
# approximation. Purely cosmetic!
sed -i "s,^/usr/share/doc/qe,&-${PVR}," qe.1 || die
sed -i -e "s,^/usr/share/doc/qe,&-${PVR}," qe.1 || die
# Fix compability with app-text/texi2html >= 5
sed -i -e '/texi2html/s:-number:&-sections:' Makefile || die
}
src_configure() {
# when using any other CFLAGS than -O0, qemacs will segfault on startup,
# see bug 92011
replace-flags -O? -O0
econf --cc="$(tc-getCC)" \
econf \
--cc="$(tc-getCC)" \
$(use_enable X x11) \
$(use_enable png) \
$(use_enable xv)
@ -59,18 +65,16 @@ src_compile() {
}
src_install() {
emake install DESTDIR="${D}"
dodoc Changelog README TODO config.eg
default
dohtml *.html
# Fix man page location
mv "${D}"/usr/{,share/}man || die
mv -vf "${ED}"/usr/{,share/}man || die
# Install headers so users can build their own plugins.
insinto /usr/include/qe
doins cfb.h config.h cutils.h display.h fbfrender.h libfbf.h qe.h \
qeconfig.h qestyles.h qfribidi.h
cd libqhtml
doins {cfb,config,cutils,display,fbfrender,libfbf,qe,qeconfig,qestyles,qfribidi}.h
insinto /usr/include/qe/libqhtml
doins css.h cssid.h htmlent.h
doins libqhtml/{css,cssid,htmlent}.h
}

@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420.ebuild,v 1.6 2010/03/11 22:38:45 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420.ebuild,v 1.7 2012/05/04 11:01:11 ssuominen Exp $
EAPI=2
@ -23,7 +23,7 @@ RDEPEND="!app-editors/qe
png? ( >=media-libs/libpng-1.2 )"
DEPEND="${RDEPEND}
app-text/texi2html"
<app-text/texi2html-5"
S="${WORKDIR}/${PN}"

@ -0,0 +1,162 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/libreoffice-l10n-3.5.3.ebuild,v 1.1 2012/05/04 10:01:03 scarabeus Exp $
EAPI=4
MY_PV="3.5.2"
RC_VERSION="rc2" # CHECK ME WITH EVERY BUMP!
BASE_SRC_URI="http://download.documentfoundation.org/${PN/-l10n/}/stable/${MY_PV}/rpm"
OO_EXTENSIONS=(
"472ffb92d82cf502be039203c606643d-Sun-ODF-Template-Pack-en-US_1.0.0.oxt"
"53ca5e56ccd4cab3693ad32c6bd13343-Sun-ODF-Template-Pack-de_1.0.0.oxt"
"4ad003e7bbda5715f5f38fde1f707af2-Sun-ODF-Template-Pack-es_1.0.0.oxt"
"a53080dc876edcddb26eb4c3c7537469-Sun-ODF-Template-Pack-fr_1.0.0.oxt"
"09ec2dac030e1dcd5ef7fa1692691dc0-Sun-ODF-Template-Pack-hu_1.0.0.oxt"
"b33775feda3bcf823cad7ac361fd49a6-Sun-ODF-Template-Pack-it_1.0.0.oxt"
)
inherit rpm eutils versionator office-ext
DESCRIPTION="Translations for the Libreoffice suite."
HOMEPAGE="http://www.libreoffice.org"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE="offlinehelp templates"
LANGUAGES_HELP="bg bn bo bs ca_XV ca cs da de dz el en_GB en en_ZA eo es et eu
fi fr gl gu he hi hr hu id is it ja ka km ko lb mk nb ne nl nn om pl pt_BR pt ru
si sk sl sq sv tg tr ug uk vi zh_CN zh_TW"
LANGUAGES="${LANGUAGES_HELP} af ar as ast be br brx cy dgo fa ga gd kk kn kok ks
ku lo lt lv mai ml mn mni mr my nr nso oc or pa_IN ro rw sa_IN sat sd sh sr ss
st sw_TZ ta te th tn ts tt uz ve xh zu"
for lang in ${LANGUAGES}; do
helppack=""
langpack=""
if [[ "${LANGUAGES_HELP}" =~ "${lang}" ]]; then
[[ ${lang} == en ]] && lang2=${lang/en/en_US} || lang2=${lang}
helppack=" offlinehelp? ( ${BASE_SRC_URI}/x86/LibO_${MY_PV}_Linux_x86_helppack-rpm_${lang2/_/-}.tar.gz ) "
fi
[[ ${lang} == en ]] \
|| langpack=" ${BASE_SRC_URI}/x86/LibO_${MY_PV}_Linux_x86_langpack-rpm_${lang/_/-}.tar.gz "
SRC_URI+=" linguas_${lang}? (
${langpack}
${helppack}
)"
IUSE+=" linguas_${lang}"
done
unset lang helppack langpack lang2
# dictionaries
SPELL_DICTS="af bg ca cs cy da de el en eo es et fr ga gl he hr hu it ku lt mk
nb nl nn pl pt ru sk sl sv tn zu"
for X in ${SPELL_DICTS} ; do
SPELL_DICTS_DEPEND+=" linguas_${X}? ( app-dicts/myspell-${X} )"
done
RDEPEND="${SPELL_DICTS_DEPEND}"
unset X SPELL_DICTS SPELL_DICTS_DEPEND
# no need for iuse here as this needs to be written out and is subset
# of lignuas anyway
EXT_URI="http://ooo.itc.hu/oxygenoffice/download/libreoffice"
TDEPEND=""
for i in ${OO_EXTENSIONS[@]}; do
lingua=${i/_*.oxt/}
lingua=${lingua/*Pack-/}
if [[ ${lingua} == en-US ]]; then
TDEPEND+=" ${EXT_URI}/${i}"
else
TDEPEND+=" linguas_${lingua}? ( ${EXT_URI}/${i} )"
fi
done
SRC_URI+=" templates? ( ${TDEPEND} )"
unset i lingua TDEPEND EXT_URI
# blockers for old libreoffice with bundled linguas
RDEPEND+="
!=app-office/libreoffice-3.4.9999-r1
!=app-office/libreoffice-9999-r1
|| (
>=app-office/libreoffice-3.4.4.2-r1
>=app-office/libreoffice-bin-3.4.4.2-r1
)
"
RESTRICT="strip"
S="${WORKDIR}"
src_unpack() {
default
local lang dir rpmdir i
local ooextused=()
for lang in ${LANGUAGES}; do
# break away if not enabled; paludis support
use_if_iuse linguas_${lang} || continue
dir=${lang/_/-}
# for english we provide just helppack, as translation is always there
if [[ ${lang} != en ]]; then
rpmdir="LibO_${MY_PV}${RC_VERSION}_Linux_x86_langpack-rpm_${dir}/RPMS/"
[[ -d ${rpmdir} ]] || die "Missing directory: \"${rpmdir}\""
# First remove dictionaries, we want to use system ones.
rm -rf "${S}/${rpmdir}/"*dict*.rpm
rpm_unpack "./${rpmdir}/"*.rpm
fi
if [[ "${LANGUAGES_HELP}" =~ "${lang}" ]] && use offlinehelp; then
[[ ${lang} == en ]] && dir="en-US"
rpmdir="LibO_${MY_PV}${RC_VERSION}_Linux_x86_helppack-rpm_${dir}/RPMS/"
[[ -d ${rpmdir} ]] || die "Missing directory: \"${rpmdir}\""
rpm_unpack ./"${rpmdir}/"*.rpm
fi
if use templates; then
for i in ${OO_EXTENSIONS[@]}; do
lingua=${i/_*.oxt/}
lingua=${lingua/*Pack-/}
if [[ ${lang} == ${lingua} || ${lingua} == en-US ]]; then
if [[ ! -f "${S}/${i}" ]]; then
cp -v "${DISTDIR}/${i}" "${S}"
ooextused+=( "${i}" )
fi
fi
done
fi
done
OO_EXTENSIONS=()
for i in ${ooextused[@]}; do
OO_EXTENSIONS+=( ${i} )
done
}
src_prepare() { :; }
src_configure() { :; }
src_compile() { :; }
src_install() {
local dir="${S}"/opt/${PN/-l10n/}$(get_version_component_range 1-2 ${MY_PV})/
# Condition required for people that do not install anything eg no linguas
# or just english with no offlinehelp.
if [[ -d "${dir}" ]] ; then
insinto /usr/$(get_libdir)/${PN/-l10n/}/
doins -r "${dir}"/*
fi
# remove extensions that are in the l10n for some weird reason
rm -rf "${ED}"/usr/$(get_libdir)/${PN/-l10n/}/share/extensions/
echo "${OO_EXTENSIONS[@]}"
office-ext_src_install
}
pkg_postinst() {
office-ext_pkg_postinst
}
pkg_prerm() {
office-ext_pkg_prerm
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.3.ebuild,v 1.7 2011/04/11 23:05:10 flameeyes Exp $
# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.3.ebuild,v 1.8 2012/05/04 11:08:39 aballier Exp $
EAPI=3
inherit prefix
@ -11,7 +11,7 @@ SRC_URI="http://bash-completion.alioth.debian.org/files/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
IUSE=""
DEPEND=""

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/gentoo-bashcomp/gentoo-bashcomp-20101217.ebuild,v 1.2 2011/01/24 16:10:15 darkside Exp $
# $Header: /var/cvsroot/gentoo-x86/app-shells/gentoo-bashcomp/gentoo-bashcomp-20101217.ebuild,v 1.3 2012/05/04 11:07:52 aballier Exp $
EAPI=3
inherit prefix
@ -12,7 +12,7 @@ SRC_URI="mirror://gentoo/${P}.tar.bz2
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
IUSE=""
RDEPEND="app-shells/bash-completion"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/aiksaurus/aiksaurus-1.2.1.ebuild,v 1.16 2011/03/24 09:04:12 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/aiksaurus/aiksaurus-1.2.1.ebuild,v 1.17 2012/05/04 03:33:13 jdhore Exp $
EAPI=2
inherit flag-o-matic eutils libtool
@ -16,7 +16,7 @@ IUSE="gtk"
RDEPEND="gtk? ( x11-libs/gtk+:2 )"
DEPEND="${RDEPEND}
gtk? ( dev-util/pkgconfig )"
gtk? ( virtual/pkgconfig )"
src_prepare() {
epatch "${FILESDIR}"/${P}-gcc43.patch #214248

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/apvlv/apvlv-0.1.1.ebuild,v 1.4 2011/10/19 13:52:55 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/apvlv/apvlv-0.1.1.ebuild,v 1.5 2012/05/04 03:33:11 jdhore Exp $
EAPI=3
@ -21,7 +21,7 @@ RDEPEND=">=x11-libs/gtk+-2.10.4:2
<app-text/poppler-0.18
djvu? ( app-text/djvu )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
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/app-text/apvlv/apvlv-0.1.2-r1.ebuild,v 1.2 2012/04/23 19:22:05 mgorny Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/apvlv/apvlv-0.1.2-r1.ebuild,v 1.3 2012/05/04 03:33:11 jdhore Exp $
EAPI=4
@ -20,7 +20,7 @@ RDEPEND=">=x11-libs/gtk+-2.10.4:2
>=app-text/poppler-0.18[cairo]
djvu? ( app-text/djvu )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
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/app-text/apvlv/apvlv-0.1.2.ebuild,v 1.3 2012/04/23 19:22:05 mgorny Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/apvlv/apvlv-0.1.2.ebuild,v 1.4 2012/05/04 03:33:11 jdhore Exp $
EAPI=4
@ -21,7 +21,7 @@ RDEPEND=">=x11-libs/gtk+-2.10.4:2
<app-text/poppler-0.18
djvu? ( app-text/djvu )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
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/app-text/djview/djview-4.7.ebuild,v 1.8 2012/04/21 17:09:49 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/djview/djview-4.7.ebuild,v 1.9 2012/05/04 03:33:14 jdhore Exp $
EAPI="4"
@ -22,7 +22,7 @@ RDEPEND="
x11-libs/qt-gui:4"
DEPEND="${RDEPEND}
>=sys-devel/autoconf-2.67
dev-util/pkgconfig
virtual/pkgconfig
nsplugin? ( dev-libs/glib:2 )"
S=${WORKDIR}/${PN}-$(get_version_component_range 1-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/app-text/djview/djview-4.8.ebuild,v 1.2 2012/04/21 17:09:49 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/djview/djview-4.8.ebuild,v 1.3 2012/05/04 03:33:14 jdhore Exp $
EAPI=4
@ -22,7 +22,7 @@ RDEPEND="
x11-libs/qt-gui:4"
DEPEND="${RDEPEND}
>=sys-devel/autoconf-2.67
dev-util/pkgconfig
virtual/pkgconfig
nsplugin? ( dev-libs/glib:2 )"
S=${WORKDIR}/${PN}-$(get_version_component_range 1-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/app-text/dvisvgm/dvisvgm-1.0.10.ebuild,v 1.2 2012/01/12 22:10:10 maekke Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/dvisvgm/dvisvgm-1.0.10.ebuild,v 1.3 2012/05/04 03:33:15 jdhore Exp $
EAPI=4
@ -24,5 +24,5 @@ RDEPEND="virtual/tex-base
media-libs/freetype:2
sys-libs/zlib"
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
test? ( dev-cpp/gtest )"

@ -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/dvisvgm/dvisvgm-1.0.11.ebuild,v 1.2 2012/04/22 18:05:41 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/dvisvgm/dvisvgm-1.0.11.ebuild,v 1.3 2012/05/04 03:33:15 jdhore Exp $
EAPI=4
@ -24,5 +24,5 @@ RDEPEND="virtual/tex-base
media-libs/freetype:2
sys-libs/zlib"
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
test? ( dev-cpp/gtest )"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/dvisvgm/dvisvgm-1.0.8.ebuild,v 1.11 2011/11/11 20:12:42 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/dvisvgm/dvisvgm-1.0.8.ebuild,v 1.12 2012/05/04 03:33:15 jdhore Exp $
EAPI=3
@ -25,7 +25,7 @@ RDEPEND="virtual/tex-base
media-libs/freetype:2
sys-libs/zlib"
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
test? ( dev-cpp/gtest )"
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/app-text/dvisvgm/dvisvgm-1.0.9-r1.ebuild,v 1.4 2012/01/12 22:10:10 maekke Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/dvisvgm/dvisvgm-1.0.9-r1.ebuild,v 1.5 2012/05/04 03:33:15 jdhore Exp $
EAPI=4
@ -24,5 +24,5 @@ RDEPEND="virtual/tex-base
media-libs/freetype:2
sys-libs/zlib"
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
test? ( dev-cpp/gtest )"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/dvisvgm/dvisvgm-1.0.9.ebuild,v 1.2 2011/11/11 20:12:42 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/dvisvgm/dvisvgm-1.0.9.ebuild,v 1.3 2012/05/04 03:33:15 jdhore Exp $
EAPI=3
@ -23,7 +23,7 @@ RDEPEND="virtual/tex-base
media-libs/freetype:2
sys-libs/zlib"
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
test? ( dev-cpp/gtest )"
src_install() {

@ -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/enchant/enchant-1.6.0.ebuild,v 1.14 2012/04/24 13:39:30 scarabeus Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/enchant-1.6.0.ebuild,v 1.15 2012/05/04 03:33:13 jdhore Exp $
EAPI=4
@ -25,7 +25,7 @@ RDEPEND="${COMMON_DEPENDS}
# libtool is needed for the install-sh to work
DEPEND="${COMMON_DEPENDS}
dev-util/pkgconfig"
virtual/pkgconfig"
REQUIRED_USE="|| ( hunspell aspell zemberek )"

@ -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/epdfview/epdfview-0.1.8-r1.ebuild,v 1.3 2012/04/16 18:32:28 billie Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/epdfview/epdfview-0.1.8-r1.ebuild,v 1.4 2012/05/04 03:33:15 jdhore Exp $
EAPI=4
inherit eutils fdo-mime
@ -19,7 +19,7 @@ RDEPEND=">=app-text/poppler-0.12.3-r3[cairo]
>=x11-libs/gtk+-2.6:2
cups? ( >=net-print/cups-1.1 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
nls? ( sys-devel/gettext )
test? ( dev-util/cppunit )
userland_GNU? ( >=sys-apps/findutils-4.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/app-text/epdfview/epdfview-0.1.8.ebuild,v 1.9 2012/03/18 19:54:34 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/epdfview/epdfview-0.1.8.ebuild,v 1.10 2012/05/04 03:33:15 jdhore Exp $
EAPI=4
inherit fdo-mime
@ -19,7 +19,7 @@ RDEPEND=">=app-text/poppler-0.12.3-r3[cairo]
>=x11-libs/gtk+-2.6:2
cups? ( >=net-print/cups-1.1 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
nls? ( sys-devel/gettext )
test? ( dev-util/cppunit )
userland_GNU? ( >=sys-apps/findutils-4.4 )"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/evince/evince-2.32.0-r3.ebuild,v 1.10 2011/11/16 10:56:15 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/evince/evince-2.32.0-r3.ebuild,v 1.11 2012/05/04 03:33:15 jdhore Exp $
EAPI="3"
GCONF_DEBUG="yes"
@ -43,7 +43,7 @@ DEPEND="${RDEPEND}
app-text/scrollkeeper
>=app-text/gnome-doc-utils-0.3.2
~app-text/docbook-xml-dtd-4.1.2
>=dev-util/pkgconfig-0.9
virtual/pkgconfig
sys-devel/gettext
>=dev-util/intltool-0.35
>=dev-util/gtk-doc-am-1.13

@ -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/evince/evince-2.32.0-r4.ebuild,v 1.7 2012/04/29 15:13:14 maekke Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/evince/evince-2.32.0-r4.ebuild,v 1.8 2012/05/04 03:33:15 jdhore Exp $
EAPI="4"
GCONF_DEBUG="yes"
@ -45,7 +45,7 @@ DEPEND="${RDEPEND}
app-text/scrollkeeper
>=app-text/gnome-doc-utils-0.3.2
~app-text/docbook-xml-dtd-4.1.2
>=dev-util/pkgconfig-0.9
virtual/pkgconfig
sys-devel/gettext
>=dev-util/intltool-0.35
>=dev-util/gtk-doc-am-1.13"

@ -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/evince/evince-3.2.1-r1.ebuild,v 1.4 2012/04/30 09:48:04 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/evince/evince-3.2.1-r1.ebuild,v 1.5 2012/05/04 03:33:15 jdhore Exp $
EAPI="4"
GCONF_DEBUG="yes"
@ -56,7 +56,7 @@ DEPEND="${RDEPEND}
app-text/scrollkeeper
>=app-text/gnome-doc-utils-0.3.2
app-text/docbook-xml-dtd:4.3
>=dev-util/pkgconfig-0.9
virtual/pkgconfig
sys-devel/gettext
>=dev-util/intltool-0.35
>=dev-util/gtk-doc-am-1.13

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/evince/evince-3.2.1.ebuild,v 1.4 2011/12/04 04:34:41 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/evince/evince-3.2.1.ebuild,v 1.5 2012/05/04 03:33:15 jdhore Exp $
EAPI="4"
GCONF_DEBUG="yes"
@ -53,7 +53,7 @@ DEPEND="${RDEPEND}
app-text/scrollkeeper
>=app-text/gnome-doc-utils-0.3.2
app-text/docbook-xml-dtd:4.3
>=dev-util/pkgconfig-0.9
virtual/pkgconfig
sys-devel/gettext
>=dev-util/intltool-0.35
>=dev-util/gtk-doc-am-1.13

@ -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/ghostscript-gpl/ghostscript-gpl-9.04-r4.ebuild,v 1.6 2012/03/17 12:04:25 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.04-r4.ebuild,v 1.7 2012/05/04 03:33:15 jdhore Exp $
EAPI=3
@ -40,7 +40,7 @@ COMMON_DEPEND="
X? ( x11-libs/libXt x11-libs/libXext )"
DEPEND="${COMMON_DEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
RDEPEND="${COMMON_DEPEND}
>=app-text/poppler-data-0.4.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/app-text/ghostscript-gpl/ghostscript-gpl-9.04-r5.ebuild,v 1.3 2012/03/17 12:04:25 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.04-r5.ebuild,v 1.4 2012/05/04 03:33:15 jdhore Exp $
EAPI=3
@ -40,7 +40,7 @@ COMMON_DEPEND="
X? ( x11-libs/libXt x11-libs/libXext )"
DEPEND="${COMMON_DEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
RDEPEND="${COMMON_DEPEND}
>=app-text/poppler-data-0.4.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/app-text/ghostscript-gpl/ghostscript-gpl-9.04-r6.ebuild,v 1.2 2012/03/17 12:04:25 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.04-r6.ebuild,v 1.3 2012/05/04 03:33:15 jdhore Exp $
EAPI=3
@ -41,7 +41,7 @@ COMMON_DEPEND="
X? ( x11-libs/libXt x11-libs/libXext )"
DEPEND="${COMMON_DEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
RDEPEND="${COMMON_DEPEND}
>=app-text/poppler-data-0.4.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/app-text/ghostscript-gpl/ghostscript-gpl-9.05-r1.ebuild,v 1.1 2012/05/01 22:43:34 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.05-r1.ebuild,v 1.2 2012/05/04 03:33:15 jdhore Exp $
EAPI=3
@ -41,7 +41,7 @@ COMMON_DEPEND="
X? ( x11-libs/libXt x11-libs/libXext )"
DEPEND="${COMMON_DEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
RDEPEND="${COMMON_DEPEND}
>=app-text/poppler-data-0.4.5-r1

@ -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/ghostscript-gpl/ghostscript-gpl-9.05.ebuild,v 1.4 2012/04/26 21:11:46 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.05.ebuild,v 1.5 2012/05/04 03:33:15 jdhore Exp $
EAPI=3
@ -41,7 +41,7 @@ COMMON_DEPEND="
X? ( x11-libs/libXt x11-libs/libXext )"
DEPEND="${COMMON_DEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
RDEPEND="${COMMON_DEPEND}
>=app-text/poppler-data-0.4.4

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/glosung/glosung-2.1.3.ebuild,v 1.5 2011/03/27 12:20:05 nirbheek Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/glosung/glosung-2.1.3.ebuild,v 1.6 2012/05/04 03:33:17 jdhore Exp $
EAPI="1"
@ -19,7 +19,7 @@ RDEPEND=">=gnome-base/gconf-2.0:2
>=gnome-base/libgnomeui-2"
DEPEND="${RDEPEND}
>=dev-util/scons-0.93
dev-util/pkgconfig
virtual/pkgconfig
>=dev-util/intltool-0.22
>=sys-devel/gettext-0.10"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/glosung/glosung-3.2.2.ebuild,v 1.4 2011/03/27 12:20:05 nirbheek Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/glosung/glosung-3.2.2.ebuild,v 1.5 2012/05/04 03:33:17 jdhore Exp $
EAPI="1"
@ -19,7 +19,7 @@ RDEPEND=">=gnome-base/gconf-2.0:2
net-misc/curl"
DEPEND="${RDEPEND}
>=dev-util/scons-0.93
dev-util/pkgconfig
virtual/pkgconfig
>=dev-util/intltool-0.22
>=sys-devel/gettext-0.10"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/glosung/glosung-3.4.2.ebuild,v 1.2 2011/03/27 12:20:05 nirbheek Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/glosung/glosung-3.4.2.ebuild,v 1.3 2012/05/04 03:33:17 jdhore Exp $
EAPI="1"
@ -19,7 +19,7 @@ RDEPEND=">=gnome-base/gconf-2.0:2
net-misc/curl"
DEPEND="${RDEPEND}
>=dev-util/scons-0.93
dev-util/pkgconfig
virtual/pkgconfig
>=dev-util/intltool-0.22
>=sys-devel/gettext-0.10"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/glosung/glosung-3.5.2.ebuild,v 1.2 2011/03/27 12:20:05 nirbheek Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/glosung/glosung-3.5.2.ebuild,v 1.3 2012/05/04 03:33:17 jdhore Exp $
EAPI="1"
@ -19,7 +19,7 @@ RDEPEND=">=gnome-base/gconf-2.0:2
net-misc/curl"
DEPEND="${RDEPEND}
>=dev-util/scons-0.93
dev-util/pkgconfig
virtual/pkgconfig
>=dev-util/intltool-0.22
>=sys-devel/gettext-0.10"

@ -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/gnome-doc-utils/gnome-doc-utils-0.20.10.ebuild,v 1.6 2012/04/29 15:14:14 maekke Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-doc-utils/gnome-doc-utils-0.20.10.ebuild,v 1.7 2012/05/04 03:33:11 jdhore Exp $
EAPI="4"
GCONF_DEBUG="no"
@ -25,7 +25,7 @@ DEPEND="${RDEPEND}
>=sys-apps/gawk-3
sys-devel/gettext
>=dev-util/intltool-0.35
>=dev-util/pkgconfig-0.9
virtual/pkgconfig
app-text/docbook-xml-dtd:4.4
app-text/scrollkeeper-dtd"
# dev-libs/glib needed for eautofoo, bug #255114.

@ -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/gnome-doc-utils/gnome-doc-utils-0.20.6.ebuild,v 1.9 2012/02/21 12:05:40 patrick Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-doc-utils/gnome-doc-utils-0.20.6.ebuild,v 1.10 2012/05/04 03:33:11 jdhore Exp $
EAPI="3"
GCONF_DEBUG="no"
@ -24,7 +24,7 @@ RDEPEND=">=dev-libs/libxml2-2.6.12[python]
DEPEND="${RDEPEND}
sys-devel/gettext
>=dev-util/intltool-0.35
>=dev-util/pkgconfig-0.9
virtual/pkgconfig
~app-text/docbook-xml-dtd-4.4
app-text/scrollkeeper-dtd"
# dev-libs/glib needed for eautofoo, bug #255114.

@ -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/gnome-doc-utils/gnome-doc-utils-0.20.9.ebuild,v 1.1 2012/03/22 05:13:48 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-doc-utils/gnome-doc-utils-0.20.9.ebuild,v 1.2 2012/05/04 03:33:11 jdhore Exp $
EAPI="4"
GCONF_DEBUG="no"
@ -25,7 +25,7 @@ DEPEND="${RDEPEND}
>=sys-apps/gawk-3
sys-devel/gettext
>=dev-util/intltool-0.35
>=dev-util/pkgconfig-0.9
virtual/pkgconfig
app-text/docbook-xml-dtd:4.4
app-text/scrollkeeper-dtd"
# dev-libs/glib needed for eautofoo, bug #255114.

@ -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/goldendict/goldendict-1.0.1.ebuild,v 1.5 2012/02/14 15:39:28 pesa Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/goldendict/goldendict-1.0.1.ebuild,v 1.6 2012/05/04 03:33:14 jdhore Exp $
EAPI=3
LANGSLONG="ar_SA bg_BG cs_CZ de_DE el_GR it_IT lt_LT ru_RU uk_UA vi_VN zh_CN"
@ -32,7 +32,7 @@ RDEPEND="
kde? ( media-libs/phonon )
"
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
"
S=${WORKDIR}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/gtkspell/gtkspell-2.0.16.ebuild,v 1.11 2011/10/27 07:02:37 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/gtkspell/gtkspell-2.0.16.ebuild,v 1.12 2012/05/04 03:33:17 jdhore Exp $
EAPI=4
@ -17,7 +17,7 @@ IUSE="doc"
RDEPEND="x11-libs/gtk+:2
>=app-text/enchant-1.1.6"
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
>=dev-util/intltool-0.35.0
doc? ( dev-util/gtk-doc app-text/docbook-xml-dtd:4.2 )"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/gtkspell/gtkspell-3.0.0_pre20110814-r1.ebuild,v 1.2 2011/10/27 18:44:31 mr_bones_ Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/gtkspell/gtkspell-3.0.0_pre20110814-r1.ebuild,v 1.3 2012/05/04 03:33:17 jdhore Exp $
EAPI="4"
@ -20,7 +20,7 @@ RDEPEND=">=app-text/enchant-1.1.6
x11-libs/gtk+:3
>=x11-libs/pango-1.8.0"
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
>=dev-util/intltool-0.35.0
doc? ( >=dev-util/gtk-doc-1.17 app-text/docbook-xml-dtd:4.2 )"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/gtranslator/gtranslator-1.9.13.ebuild,v 1.10 2011/12/18 17:35:40 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/gtranslator/gtranslator-1.9.13.ebuild,v 1.11 2012/05/04 03:33:11 jdhore Exp $
EAPI="3"
GCONF_DEBUG="no"
@ -34,7 +34,7 @@ DEPEND="${RDEPEND}
>=app-text/scrollkeeper-0.1.4
>=dev-util/intltool-0.40
>=sys-devel/gettext-0.17
dev-util/pkgconfig
virtual/pkgconfig
app-text/gnome-doc-utils
app-text/docbook-xml-dtd:4.1.2
gnome-base/gnome-common

@ -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/gtranslator/gtranslator-2.90.7.ebuild,v 1.3 2012/02/24 23:57:57 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/gtranslator/gtranslator-2.90.7.ebuild,v 1.4 2012/05/04 03:33:11 jdhore Exp $
EAPI="4"
GCONF_DEBUG="no"
@ -45,7 +45,7 @@ DEPEND="${COMMON_DEPEND}
>=app-text/scrollkeeper-0.1.4
>=dev-util/intltool-0.40
>=sys-devel/gettext-0.17
dev-util/pkgconfig
virtual/pkgconfig
app-text/gnome-doc-utils
app-text/docbook-xml-dtd:4.1.2
doc? ( >=dev-util/gtk-doc-1 )

@ -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/gtranslator/gtranslator-2.90.8.ebuild,v 1.1 2012/02/24 23:57:57 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/gtranslator/gtranslator-2.90.8.ebuild,v 1.2 2012/05/04 03:33:11 jdhore Exp $
EAPI="4"
GCONF_DEBUG="no"
@ -43,7 +43,7 @@ DEPEND="${COMMON_DEPEND}
>=app-text/scrollkeeper-0.1.4
>=dev-util/intltool-0.40
>=sys-devel/gettext-0.17
dev-util/pkgconfig
virtual/pkgconfig
app-text/gnome-doc-utils
app-text/docbook-xml-dtd:4.1.2
doc? ( >=dev-util/gtk-doc-1 )"

@ -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.4 2012/01/24 19:19:58 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/gv/gv-3.7.3-r1.ebuild,v 1.5 2012/05/04 03:33:17 jdhore Exp $
EAPI=4
inherit eutils flag-o-matic toolchain-funcs
@ -25,7 +25,7 @@ RDEPEND="app-text/ghostscript-gpl
x11-libs/libXt
xinerama? ( x11-libs/libXinerama )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
x11-proto/xproto"
DOCS="AUTHORS ChangeLog NEWS README"

@ -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/kiwix/kiwix-0.9_beta5.ebuild,v 1.1 2012/02/25 15:13:35 chithanh Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/kiwix/kiwix-0.9_beta5.ebuild,v 1.2 2012/05/04 03:33:15 jdhore Exp $
EAPI=3
@ -29,7 +29,7 @@ RDEPEND="app-arch/xz-utils
>=net-misc/aria2-1.10
!!<app-text/kiwix-0.9_beta"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
S=${WORKDIR}/${PN}-$(get_version_component_range 1-2)

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/libgxps/libgxps-0.1.0.ebuild,v 1.1 2011/11/03 05:10:47 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/libgxps/libgxps-0.1.0.ebuild,v 1.2 2012/05/04 03:33:14 jdhore Exp $
EAPI="4"
GNOME2_LA_PUNT="yes"
@ -23,7 +23,7 @@ RDEPEND=">=app-arch/libarchive-2.8
jpeg? ( virtual/jpeg )
tiff? ( media-libs/tiff[zlib] )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
doc? (
app-text/docbook-xml-dtd:4.1.2
>=dev-util/gtk-doc-1.14 )"

@ -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/libgxps/libgxps-0.2.1.ebuild,v 1.1 2012/01/21 12:00:01 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/libgxps/libgxps-0.2.1.ebuild,v 1.2 2012/05/04 03:33:14 jdhore Exp $
EAPI="4"
GNOME2_LA_PUNT="yes"
@ -28,7 +28,7 @@ RDEPEND=">=app-arch/libarchive-2.8
DEPEND="${RDEPEND}
app-text/docbook-xsl-stylesheets
dev-libs/libxslt
dev-util/pkgconfig
virtual/pkgconfig
doc? (
app-text/docbook-xml-dtd:4.1.2
>=dev-util/gtk-doc-1.14 )"

@ -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/libgxps/libgxps-0.2.2.ebuild,v 1.1 2012/03/24 10:17:38 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/libgxps/libgxps-0.2.2.ebuild,v 1.2 2012/05/04 03:33:14 jdhore Exp $
EAPI="4"
GNOME2_LA_PUNT="yes"
@ -28,7 +28,7 @@ RDEPEND=">=app-arch/libarchive-2.8
DEPEND="${RDEPEND}
app-text/docbook-xsl-stylesheets
dev-libs/libxslt
dev-util/pkgconfig
virtual/pkgconfig
doc? (
app-text/docbook-xml-dtd:4.1.2
>=dev-util/gtk-doc-1.14 )"

@ -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/libspectre/libspectre-0.2.6.ebuild,v 1.13 2012/03/11 15:29:32 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/libspectre/libspectre-0.2.6.ebuild,v 1.14 2012/05/04 03:33:12 jdhore Exp $
EAPI=4
inherit autotools eutils
@ -16,7 +16,7 @@ IUSE="debug doc static-libs"
RDEPEND=">=app-text/ghostscript-gpl-8.62"
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
doc? ( app-doc/doxygen )"
# does not actually test anything, see bug 362557

@ -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/libwpd/libwpd-0.9.4.ebuild,v 1.8 2012/03/25 14:54:20 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/libwpd/libwpd-0.9.4.ebuild,v 1.9 2012/05/04 03:33:12 jdhore Exp $
EAPI=4
@ -17,7 +17,7 @@ IUSE="doc test +tools"
RDEPEND=""
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
doc? ( app-doc/doxygen )
test? ( dev-util/cppunit )
"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/libwpg/libwpg-0.2.1.ebuild,v 1.6 2011/10/30 18:08:04 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/libwpg/libwpg-0.2.1.ebuild,v 1.7 2012/05/04 03:33:14 jdhore Exp $
EAPI=4
@ -17,7 +17,7 @@ IUSE="doc static-libs"
RDEPEND="app-text/libwpd:0.9[tools]"
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
doc? ( app-doc/doxygen )"
RDEPEND="${RDEPEND}
!<app-text/libwpd-0.1.3-r1"

@ -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.4.ebuild,v 1.6 2012/03/26 15:50:47 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/libwps/libwps-0.2.4.ebuild,v 1.7 2012/05/04 03:33:16 jdhore Exp $
EAPI=4
@ -15,7 +15,7 @@ IUSE="doc debug static-libs"
RDEPEND="app-text/libwpd:0.9"
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
doc? ( app-doc/doxygen )
"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/libxmlpatch/libxmlpatch-0.3.1.ebuild,v 1.2 2011/10/31 12:51:22 flameeyes Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/libxmlpatch/libxmlpatch-0.3.1.ebuild,v 1.3 2012/05/04 03:33:13 jdhore Exp $
inherit eutils autotools
@ -15,7 +15,7 @@ IUSE=""
RDEPEND="dev-libs/glib"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
src_unpack() {
unpack ${A}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/libxmlpatch/libxmlpatch-0.3.3.ebuild,v 1.3 2011/10/31 20:41:14 mr_bones_ Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/libxmlpatch/libxmlpatch-0.3.3.ebuild,v 1.4 2012/05/04 03:33:13 jdhore Exp $
EAPI=4
@ -19,7 +19,7 @@ RDEPEND="dev-libs/glib:2
dev-libs/libxml2"
DEPEND="${RDEPEND}
test? ( dev-libs/check )
dev-util/pkgconfig"
virtual/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${P}-gentoo.patch

@ -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/mupdf/mupdf-0.9.ebuild,v 1.7 2012/04/07 22:10:06 xmw Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-0.9.ebuild,v 1.8 2012/05/04 03:33:12 jdhore Exp $
EAPI=4
@ -22,7 +22,7 @@ RDEPEND="media-libs/freetype:2
X? ( x11-libs/libX11
x11-libs/libXext )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.8.165-buildsystem.patch

@ -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/mupdf/mupdf-1.0.ebuild,v 1.1 2012/04/25 22:37:34 xmw Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-1.0.ebuild,v 1.2 2012/05/04 03:33:12 jdhore Exp $
EAPI=4
@ -22,7 +22,7 @@ RDEPEND="media-libs/freetype:2
X? ( x11-libs/libX11
x11-libs/libXext )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
S=${WORKDIR}/${P}-source

@ -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/mupdf/mupdf-9999.ebuild,v 1.17 2012/04/09 21:16:44 xmw Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-9999.ebuild,v 1.18 2012/05/04 03:33:12 jdhore Exp $
EAPI=4
@ -23,7 +23,7 @@ RDEPEND="media-libs/freetype:2
X? ( x11-libs/libX11
x11-libs/libXext )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.8.165-buildsystem.patch

@ -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/mythes/mythes-1.2.2.ebuild,v 1.5 2012/04/25 20:42:04 scarabeus Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/mythes/mythes-1.2.2.ebuild,v 1.6 2012/05/04 03:33:18 jdhore Exp $
EAPI=4
@ -15,7 +15,7 @@ IUSE="static-libs"
RDEPEND="app-text/hunspell"
DEPEND="${DEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
src_configure() {
econf \

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/notecase/notecase-1.9.8.ebuild,v 1.4 2011/07/01 15:43:32 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/notecase/notecase-1.9.8.ebuild,v 1.5 2012/05/04 03:33:17 jdhore Exp $
EAPI="1"
@ -17,7 +17,7 @@ IUSE="gnome nls"
RDEPEND=">=x11-libs/gtk+-2.6:2"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
# test doesn't work
RESTRICT="test"

@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ots-0.5.0.ebuild,v 1.9 2010/09/09 13:41:39 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ots-0.5.0.ebuild,v 1.10 2012/05/04 03:33:11 jdhore Exp $
inherit eutils
@ -18,7 +18,7 @@ RDEPEND="=dev-libs/glib-2*
>=dev-libs/popt-1.5"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
src_unpack() {
unpack ${A}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/paps/paps-0.6.8.ebuild,v 1.1 2011/01/11 18:31:13 xmw Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/paps/paps-0.6.8.ebuild,v 1.2 2012/05/04 03:33:11 jdhore Exp $
EAPI=3
@ -17,7 +17,7 @@ IUSE=""
RDEPEND="x11-libs/pango"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
pkg_setup() {
append-ldflags $(no-as-needed)

@ -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/pdf2djvu/pdf2djvu-0.7.12.ebuild,v 1.1 2012/01/23 07:25:14 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/pdf2djvu/pdf2djvu-0.7.12.ebuild,v 1.2 2012/05/04 03:33:15 jdhore Exp $
EAPI=4
inherit toolchain-funcs
@ -21,7 +21,7 @@ RDEPEND=">=app-text/djvu-3.5.21
graphicsmagick? ( media-gfx/graphicsmagick )"
DEPEND="${RDEPEND}
dev-cpp/pstreams
dev-util/pkgconfig
virtual/pkgconfig
nls? ( sys-devel/gettext )"
src_configure() {

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/pdfgrep/pdfgrep-1.2.ebuild,v 1.1 2011/04/14 07:58:27 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/pdfgrep/pdfgrep-1.2.ebuild,v 1.2 2012/05/04 03:33:14 jdhore Exp $
EAPI="4"
@ -15,4 +15,4 @@ IUSE=""
RDEPEND="app-text/poppler"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
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-text/pdfgrep/pdfgrep-1.3.0.ebuild,v 1.3 2012/02/21 12:06:02 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/pdfgrep/pdfgrep-1.3.0.ebuild,v 1.4 2012/05/04 03:33:14 jdhore Exp $
EAPI=4
@ -16,7 +16,7 @@ IUSE="unac"
RDEPEND="app-text/poppler[cxx]
unac? ( app-text/unac )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
src_configure() {
econf $(use_with unac)

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-0.16.7.ebuild,v 1.9 2011/11/16 10:07:39 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-0.16.7.ebuild,v 1.10 2012/05/04 03:33:12 jdhore Exp $
EAPI="2"
@ -40,7 +40,7 @@ COMMON_DEPEND="
)
"
DEPEND="${COMMON_DEPEND}
dev-util/pkgconfig
virtual/pkgconfig
"
RDEPEND="${COMMON_DEPEND}
!dev-libs/poppler

@ -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/poppler/poppler-0.18.4-r1.ebuild,v 1.7 2012/04/26 20:43:30 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-0.18.4-r1.ebuild,v 1.8 2012/05/04 03:33:12 jdhore Exp $
EAPI="4"
@ -39,7 +39,7 @@ COMMON_DEPEND="
tiff? ( media-libs/tiff:0 )
"
DEPEND="${COMMON_DEPEND}
dev-util/pkgconfig
virtual/pkgconfig
"
RDEPEND="${COMMON_DEPEND}
!dev-libs/poppler

@ -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/poppler/poppler-0.18.4.ebuild,v 1.1 2012/03/07 22:09:55 reavertm Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-0.18.4.ebuild,v 1.2 2012/05/04 03:33:12 jdhore Exp $
EAPI="4"
@ -39,7 +39,7 @@ COMMON_DEPEND="
tiff? ( media-libs/tiff:0 )
"
DEPEND="${COMMON_DEPEND}
dev-util/pkgconfig
virtual/pkgconfig
"
RDEPEND="${COMMON_DEPEND}
!dev-libs/poppler

@ -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/sary/sary-1.2.0-r1.ebuild,v 1.8 2012/03/19 19:14:05 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/sary/sary-1.2.0-r1.ebuild,v 1.9 2012/05/04 03:33:17 jdhore Exp $
EAPI=4
@ -16,7 +16,7 @@ RESTRICT="test"
RDEPEND="dev-libs/glib:2"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
src_configure() {
econf $(use_enable static-libs static)

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/sary/sary-1.2.0.ebuild,v 1.17 2011/04/12 22:44:13 abcd Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/sary/sary-1.2.0.ebuild,v 1.18 2012/05/04 03:33:16 jdhore Exp $
EAPI=3
@ -16,7 +16,7 @@ RESTRICT="test"
RDEPEND=">=dev-libs/glib-2"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
src_install() {

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/searchmonkey/searchmonkey-0.8.1.ebuild,v 1.4 2011/03/27 12:22:21 nirbheek Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/searchmonkey/searchmonkey-0.8.1.ebuild,v 1.5 2012/05/04 03:33:17 jdhore Exp $
EAPI="2"
@ -17,7 +17,7 @@ IUSE=""
RDEPEND=">=x11-libs/gtk+-2.6:2"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
src_install() {
make DESTDIR="${D}" install || die "make install failed"

@ -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/stardict/stardict-3.0.3-r1.ebuild,v 1.5 2012/03/17 18:06:09 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/stardict/stardict-3.0.3-r1.ebuild,v 1.6 2012/05/04 03:33:16 jdhore Exp $
# NOTE: Even though the *.dict.dz are the same as dictd/freedict's files,
# their indexes seem to be in a different format. So we'll keep them
@ -51,7 +51,7 @@ DEPEND="${COMMON_DEPEND}
app-text/gnome-doc-utils
dev-libs/libxslt
dev-util/intltool
dev-util/pkgconfig
virtual/pkgconfig
sys-devel/gettext"
RESTRICT="test"

@ -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/stardict/stardict-3.0.3-r2.ebuild,v 1.2 2012/03/10 12:35:07 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/stardict/stardict-3.0.3-r2.ebuild,v 1.3 2012/05/04 03:33:16 jdhore Exp $
# NOTE: Even though the *.dict.dz are the same as dictd/freedict's files,
# their indexes seem to be in a different format. So we'll keep them
@ -51,7 +51,7 @@ DEPEND="${COMMON_DEPEND}
app-text/gnome-doc-utils
dev-libs/libxslt
dev-util/intltool
dev-util/pkgconfig
virtual/pkgconfig
sys-devel/gettext"
RESTRICT="test"

@ -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/sword/sword-1.6.2.ebuild,v 1.6 2012/03/16 20:06:10 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/sword/sword-1.6.2.ebuild,v 1.7 2012/05/04 03:33:16 jdhore Exp $
EAPI=4
inherit flag-o-matic
@ -18,7 +18,7 @@ RDEPEND="sys-libs/zlib
curl? ( net-misc/curl )
icu? ( dev-libs/icu )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
DOCS="AUTHORS CODINGSTYLE ChangeLog README"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2010-r4.ebuild,v 1.9 2011/10/12 15:08:15 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2010-r4.ebuild,v 1.10 2012/05/04 03:33:13 jdhore Exp $
EAPI=3
@ -78,7 +78,7 @@ COMMON_DEPEND="${MODULAR_X_DEPEND}
cjk? ( dev-libs/ptexenc )"
DEPEND="${COMMON_DEPEND}
dev-util/pkgconfig
virtual/pkgconfig
sys-apps/ed
sys-devel/flex
app-arch/xz-utils"

@ -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/texlive-core/texlive-core-2011-r5.ebuild,v 1.8 2012/03/04 15:37:10 klausman Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2011-r5.ebuild,v 1.9 2012/05/04 03:33:13 jdhore Exp $
EAPI=3
@ -95,7 +95,7 @@ COMMON_DEPEND="${MODULAR_X_DEPEND}
cjk? ( >=dev-libs/ptexenc-1.2.0_p20110705 )"
DEPEND="${COMMON_DEPEND}
dev-util/pkgconfig
virtual/pkgconfig
sys-apps/ed
sys-devel/flex
app-arch/xz-utils"

@ -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/texlive-core/texlive-core-2011-r6.ebuild,v 1.8 2012/03/30 17:56:22 maekke Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2011-r6.ebuild,v 1.9 2012/05/04 03:33:13 jdhore Exp $
EAPI=3
@ -95,7 +95,7 @@ COMMON_DEPEND="${MODULAR_X_DEPEND}
cjk? ( >=dev-libs/ptexenc-1.2.0_p20110705 )"
DEPEND="${COMMON_DEPEND}
dev-util/pkgconfig
virtual/pkgconfig
sys-apps/ed
sys-devel/flex
app-arch/xz-utils"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/winefish/winefish-1.3.3-r1.ebuild,v 1.2 2011/04/16 19:50:54 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/winefish/winefish-1.3.3-r1.ebuild,v 1.3 2012/05/04 03:33:14 jdhore Exp $
EAPI=3
@ -21,7 +21,7 @@ RDEPEND=">=x11-libs/gtk+-2.4:2
>=dev-libs/libpcre-6.3
spell? ( app-text/aspell )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
src_prepare() {
epatch "${FILESDIR}/${P}-nostrip.patch"

@ -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/wpd2odt/wpd2odt-0.8.1.ebuild,v 1.5 2012/04/29 08:20:28 scarabeus Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/wpd2odt/wpd2odt-0.8.1.ebuild,v 1.6 2012/05/04 03:33:16 jdhore Exp $
EAPI=4
@ -21,7 +21,7 @@ RDEPEND="
gsf? ( gnome-extra/libgsf )
"
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
"
S=${WORKDIR}/writerperfect-${PV}

@ -1,6 +1,6 @@
# Copyright 1999-2008 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/wv/wv-1.2.3-r1.ebuild,v 1.11 2008/02/19 15:09:59 caleb Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/wv/wv-1.2.3-r1.ebuild,v 1.12 2012/05/04 03:33:14 jdhore Exp $
inherit eutils
@ -21,7 +21,7 @@ RDEPEND=">=dev-libs/glib-2
wmf? ( >=media-libs/libwmf-0.2.2 )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9"
virtual/pkgconfig"
src_compile() {

@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/wv/wv-1.2.7.ebuild,v 1.1 2010/03/12 10:16:57 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/wv/wv-1.2.7.ebuild,v 1.2 2012/05/04 03:33:14 jdhore Exp $
EAPI=2
@ -23,7 +23,7 @@ RDEPEND=">=dev-libs/glib-2
wmf? ( >=media-libs/libwmf-0.2.2 )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9"
virtual/pkgconfig"
src_prepare() {
# Workaround incorrect soname bump as fedora does

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/wv/wv-1.2.9-r1.ebuild,v 1.10 2011/05/02 23:33:56 hanno Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/wv/wv-1.2.9-r1.ebuild,v 1.11 2012/05/04 03:33:14 jdhore Exp $
EAPI="3"
@ -24,7 +24,7 @@ RDEPEND=">=dev-libs/glib-2
dev-texlive/texlive-latex )
wmf? ( >=media-libs/libwmf-0.2.2 )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9"
virtual/pkgconfig"
src_prepare() {
if ! use tools; then

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/wv/wv-1.2.9.ebuild,v 1.2 2011/01/31 14:00:53 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/wv/wv-1.2.9.ebuild,v 1.3 2012/05/04 03:33:14 jdhore Exp $
EAPI="3"
@ -24,7 +24,7 @@ RDEPEND=">=dev-libs/glib-2
dev-texlive/texlive-latex
wmf? ( >=media-libs/libwmf-0.2.2 )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9"
virtual/pkgconfig"
src_configure() {
econf $(use_with wmf libwmf)

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20100722.ebuild,v 1.14 2011/10/04 17:40:39 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20100722.ebuild,v 1.15 2012/05/04 03:33:12 jdhore Exp $
EAPI="3"
@ -22,7 +22,7 @@ RDEPEND="!<app-text/texlive-core-2010
>=media-libs/libpng-1.2.43-r2:0
app-text/libpaper"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
S=${WORKDIR}/texlive-${PV#*_p}-source/texk/${PN}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20110705.ebuild,v 1.2 2011/08/07 17:51:55 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/xdvipdfmx/xdvipdfmx-0.7.8_p20110705.ebuild,v 1.3 2012/05/04 03:33:12 jdhore Exp $
EAPI="3"
@ -22,7 +22,7 @@ RDEPEND="!<app-text/texlive-core-2010
>=media-libs/libpng-1.2.43-r2:0
app-text/libpaper"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
# for dvipdfmx.cfg
RDEPEND="${RDEPEND}
app-text/dvipdfmx"

@ -1,6 +1,6 @@
# Copyright 1999-2008 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/xfbib/xfbib-0.0.2.ebuild,v 1.1 2008/09/24 16:27:20 angelos Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/xfbib/xfbib-0.0.2.ebuild,v 1.2 2012/05/04 03:33:17 jdhore Exp $
EAPI=1
@ -20,7 +20,7 @@ RDEPEND=">=dev-libs/glib-2.12:2
>=xfce-base/libxfcegui4-4.4
>=xfce-base/libxfce4util-4.4"
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
dev-util/intltool
sys-devel/gettext"

@ -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/xiphos/xiphos-3.1.5.ebuild,v 1.5 2012/03/16 20:09:32 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/xiphos/xiphos-3.1.5.ebuild,v 1.6 2012/05/04 03:33:12 jdhore Exp $
# TODO: waf-utils.eclass ?
@ -31,7 +31,7 @@ DEPEND="${RDEPEND}
app-text/rarian
dev-libs/libxslt
dev-util/intltool
dev-util/pkgconfig
virtual/pkgconfig
|| ( dev-lang/python:2.7 dev-lang/python:2.6 )
sys-devel/gettext"

@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/xml2/xml2-0.4.ebuild,v 1.2 2010/01/02 11:45:51 fauli Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/xml2/xml2-0.4.ebuild,v 1.3 2012/05/04 03:33:12 jdhore Exp $
inherit autotools eutils
@ -15,7 +15,7 @@ IUSE=""
RDEPEND="dev-libs/libxml2"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
src_unpack() {
unpack ${A}

@ -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/xml2/xml2-0.5.ebuild,v 1.1 2012/01/21 06:48:03 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/xml2/xml2-0.5.ebuild,v 1.2 2012/05/04 03:33:12 jdhore Exp $
EAPI=4
@ -15,4 +15,4 @@ IUSE=""
RDEPEND="dev-libs/libxml2"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"

@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/xmlstarlet/xmlstarlet-1.0.1-r1.ebuild,v 1.6 2010/01/02 11:46:37 fauli Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/xmlstarlet/xmlstarlet-1.0.1-r1.ebuild,v 1.7 2012/05/04 03:33:13 jdhore Exp $
DESCRIPTION="A set of tools to transform, query, validate, and edit XML documents"
HOMEPAGE="http://xmlstar.sourceforge.net/"
@ -15,7 +15,7 @@ RDEPEND=">=dev-libs/libxml2-2.6.12
>=dev-libs/libxslt-1.1.9"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
src_compile() {
local xsltlibs=$(pkg-config --libs libxslt libexslt)

@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/xmlstarlet/xmlstarlet-1.0.2-r1.ebuild,v 1.1 2010/04/16 16:39:24 sping Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/xmlstarlet/xmlstarlet-1.0.2-r1.ebuild,v 1.2 2012/05/04 03:33:13 jdhore Exp $
EAPI="2"
@ -17,7 +17,7 @@ RDEPEND=">=dev-libs/libxml2-2.6.12
>=dev-libs/libxslt-1.1.9"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
src_configure() {
local xsltlibs=$(pkg-config --libs libxslt libexslt)

@ -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/xmlstarlet/xmlstarlet-1.0.2.ebuild,v 1.2 2012/04/25 16:20:18 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/xmlstarlet/xmlstarlet-1.0.2.ebuild,v 1.3 2012/05/04 03:33:13 jdhore Exp $
EAPI="2"
@ -20,7 +20,7 @@ RDEPEND=">=dev-libs/libxml2-2.6.12
>=dev-libs/libxslt-1.1.9"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
src_prepare() {
# Shipped configure script broken somehow:

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/xmlstarlet/xmlstarlet-1.0.4.ebuild,v 1.1 2011/01/17 02:33:15 sping Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/xmlstarlet/xmlstarlet-1.0.4.ebuild,v 1.2 2012/05/04 03:33:13 jdhore Exp $
EAPI="2"
@ -19,7 +19,7 @@ RDEPEND=">=dev-libs/libxml2-2.6.12
virtual/libiconv"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
src_configure() {
econf --disable-static-libs

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/xmlstarlet/xmlstarlet-1.0.5.ebuild,v 1.1 2011/02/14 17:38:16 sping Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/xmlstarlet/xmlstarlet-1.0.5.ebuild,v 1.2 2012/05/04 03:33:13 jdhore Exp $
EAPI="2"
@ -20,7 +20,7 @@ RDEPEND=">=dev-libs/libxml2-2.6.23
DEPEND="${RDEPEND}
sys-apps/sed
dev-util/pkgconfig"
virtual/pkgconfig"
src_configure() {
econf --disable-static-libs

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/xmlstarlet/xmlstarlet-1.0.6.ebuild,v 1.4 2011/12/02 22:20:14 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/xmlstarlet/xmlstarlet-1.0.6.ebuild,v 1.5 2012/05/04 03:33:13 jdhore Exp $
EAPI="2"
@ -22,7 +22,7 @@ RDEPEND=">=dev-libs/libxml2-2.6.23
DEPEND="${RDEPEND}
sys-apps/sed
dev-util/pkgconfig"
virtual/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${P}-setmode.patch

@ -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/xournal/xournal-0.4.5_p20111022-r1.ebuild,v 1.5 2012/01/04 17:52:17 phajdan.jr Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/xournal/xournal-0.4.5_p20111022-r1.ebuild,v 1.6 2012/05/04 03:33:15 jdhore Exp $
EAPI=4
@ -35,7 +35,7 @@ RDEPEND="${COMMONDEPEND}
pdf? ( app-text/poppler[utils] app-text/ghostscript-gpl )
"
DEPEND="${COMMONDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
"
PATCHES=(

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/xournal/xournal-0.4.5_p20111022-r2.ebuild,v 1.1 2011/12/07 21:09:49 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/xournal/xournal-0.4.5_p20111022-r2.ebuild,v 1.2 2012/05/04 03:33:15 jdhore Exp $
EAPI=4
@ -35,7 +35,7 @@ RDEPEND="${COMMONDEPEND}
pdf? ( app-text/poppler[utils] app-text/ghostscript-gpl )
"
DEPEND="${COMMONDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
"
src_prepare() {

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/xournal/xournal-0.4.5_p20111022.ebuild,v 1.4 2011/11/22 16:16:28 phajdan.jr Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/xournal/xournal-0.4.5_p20111022.ebuild,v 1.5 2012/05/04 03:33:15 jdhore Exp $
EAPI=4
@ -35,7 +35,7 @@ RDEPEND="${COMMONDEPEND}
pdf? ( app-text/poppler[utils] app-text/ghostscript-gpl )
"
DEPEND="${COMMONDEPEND}
dev-util/pkgconfig
virtual/pkgconfig
"
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/app-text/yelp-tools/yelp-tools-3.2.1.ebuild,v 1.4 2012/04/29 14:58:39 maekke Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/yelp-tools/yelp-tools-3.2.1.ebuild,v 1.5 2012/05/04 03:33:12 jdhore Exp $
EAPI="4"
GCONF_DEBUG="no"
@ -21,6 +21,6 @@ RDEPEND=">=dev-libs/libxml2-2.6.12
gnome-extra/yelp-xsl
sys-apps/gawk"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
DOCS="AUTHORS NEWS README"

@ -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/zathura-djvu/zathura-djvu-0.1.0.ebuild,v 1.2 2012/03/13 22:05:44 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/zathura-djvu/zathura-djvu-0.1.0.ebuild,v 1.3 2012/05/04 03:33:13 jdhore Exp $
EAPI=4
inherit toolchain-funcs
@ -20,7 +20,7 @@ RDEPEND=">=app-text/djvu-3.5.24-r1
>=dev-libs/glib-2
x11-libs/cairo"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
pkg_setup() {
myzathuraconf=(

@ -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/zathura-djvu/zathura-djvu-0.1.1.ebuild,v 1.1 2012/03/30 05:39:15 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/zathura-djvu/zathura-djvu-0.1.1.ebuild,v 1.2 2012/05/04 03:33:13 jdhore Exp $
EAPI=4
inherit toolchain-funcs
@ -20,7 +20,7 @@ RDEPEND=">=app-text/djvu-3.5.24-r1
>=dev-libs/glib-2
x11-libs/cairo"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
virtual/pkgconfig"
pkg_setup() {
myzathuraconf=(

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

Loading…
Cancel
Save