parent
26534efeb5
commit
6f0832f250
@ -0,0 +1,84 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/sysstat-11.0.2.ebuild,v 1.1 2014/10/21 09:09:59 jer Exp $
|
||||
|
||||
EAPI=5
|
||||
inherit eutils multilib systemd toolchain-funcs
|
||||
|
||||
DESCRIPTION="System performance tools for Linux"
|
||||
HOMEPAGE="http://pagesperso-orange.fr/sebastien.godard/"
|
||||
SRC_URI="${HOMEPAGE}${P}.tar.xz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||
IUSE="cron debug +doc isag nls lm_sensors selinux"
|
||||
|
||||
RDEPEND="
|
||||
cron? ( sys-process/cronbase )
|
||||
isag? (
|
||||
dev-lang/tk
|
||||
dev-vcs/rcs
|
||||
sci-visualization/gnuplot
|
||||
)
|
||||
nls? ( virtual/libintl )
|
||||
lm_sensors? ( sys-apps/lm_sensors )
|
||||
selinux? ( sec-policy/selinux-sysstat )
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
nls? ( sys-devel/gettext )
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
if use nls; then
|
||||
strip-linguas -i nls/
|
||||
local lingua pofile
|
||||
for pofile in nls/*.po; do
|
||||
lingua=${pofile/nls\/}
|
||||
lingua=${lingua/.po}
|
||||
if ! has ${lingua} ${LINGUAS}; then
|
||||
rm "nls/${lingua}.po" || die
|
||||
fi
|
||||
done
|
||||
fi
|
||||
epatch "${FILESDIR}"/${PN}-10.0.4-flags.patch
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
tc-export AR
|
||||
sa_lib_dir=/usr/$(get_libdir)/sa \
|
||||
conf_dir=/etc \
|
||||
rcdir=Gentoo-does-not-use-rc.d \
|
||||
econf \
|
||||
--enable-copy-only \
|
||||
--with-systemdsystemunitdir=$(systemd_get_unitdir) \
|
||||
$(use_enable cron install-cron) \
|
||||
$(use_enable debug debuginfo) \
|
||||
$(use_enable doc documentation ) \
|
||||
$(use_enable isag install-isag) \
|
||||
$(use_enable lm_sensors sensors) \
|
||||
$(use_enable nls)
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake LFLAGS="${LDFLAGS}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
keepdir /var/log/sa
|
||||
|
||||
use cron && dodir /etc/cron.d
|
||||
|
||||
emake \
|
||||
DESTDIR="${D}" \
|
||||
DOC_DIR=/usr/share/doc/${PF} \
|
||||
install
|
||||
|
||||
dodoc contrib/sargraph/sargraph
|
||||
|
||||
newinitd "${FILESDIR}"/${PN}.init.d ${PN}
|
||||
systemd_dounit ${PN}.service
|
||||
|
||||
use doc && rm -f "${D}"usr/share/doc/${PF}/COPYING
|
||||
}
|
@ -0,0 +1,84 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/sysstat-11.1.2.ebuild,v 1.1 2014/10/21 09:09:59 jer Exp $
|
||||
|
||||
EAPI=5
|
||||
inherit eutils multilib systemd toolchain-funcs
|
||||
|
||||
DESCRIPTION="System performance tools for Linux"
|
||||
HOMEPAGE="http://pagesperso-orange.fr/sebastien.godard/"
|
||||
SRC_URI="${HOMEPAGE}${P}.tar.xz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS=""
|
||||
IUSE="cron debug +doc isag nls lm_sensors selinux"
|
||||
|
||||
RDEPEND="
|
||||
cron? ( sys-process/cronbase )
|
||||
isag? (
|
||||
dev-lang/tk
|
||||
dev-vcs/rcs
|
||||
sci-visualization/gnuplot
|
||||
)
|
||||
nls? ( virtual/libintl )
|
||||
lm_sensors? ( sys-apps/lm_sensors )
|
||||
selinux? ( sec-policy/selinux-sysstat )
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
nls? ( sys-devel/gettext )
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
if use nls; then
|
||||
strip-linguas -i nls/
|
||||
local lingua pofile
|
||||
for pofile in nls/*.po; do
|
||||
lingua=${pofile/nls\/}
|
||||
lingua=${lingua/.po}
|
||||
if ! has ${lingua} ${LINGUAS}; then
|
||||
rm "nls/${lingua}.po" || die
|
||||
fi
|
||||
done
|
||||
fi
|
||||
epatch "${FILESDIR}"/${PN}-10.0.4-flags.patch
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
tc-export AR
|
||||
sa_lib_dir=/usr/$(get_libdir)/sa \
|
||||
conf_dir=/etc \
|
||||
rcdir=Gentoo-does-not-use-rc.d \
|
||||
econf \
|
||||
--enable-copy-only \
|
||||
--with-systemdsystemunitdir=$(systemd_get_unitdir) \
|
||||
$(use_enable cron install-cron) \
|
||||
$(use_enable debug debuginfo) \
|
||||
$(use_enable doc documentation ) \
|
||||
$(use_enable isag install-isag) \
|
||||
$(use_enable lm_sensors sensors) \
|
||||
$(use_enable nls)
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake LFLAGS="${LDFLAGS}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
keepdir /var/log/sa
|
||||
|
||||
use cron && dodir /etc/cron.d
|
||||
|
||||
emake \
|
||||
DESTDIR="${D}" \
|
||||
DOC_DIR=/usr/share/doc/${PF} \
|
||||
install
|
||||
|
||||
dodoc contrib/sargraph/sargraph
|
||||
|
||||
newinitd "${FILESDIR}"/${PN}.init.d ${PN}
|
||||
systemd_dounit ${PN}.service
|
||||
|
||||
use doc && rm -f "${D}"usr/share/doc/${PF}/COPYING
|
||||
}
|
@ -1,40 +0,0 @@
|
||||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/pigz-2.2.5.ebuild,v 1.4 2012/09/07 19:18:26 johu Exp $
|
||||
|
||||
EAPI="4"
|
||||
|
||||
inherit toolchain-funcs flag-o-matic
|
||||
|
||||
DESCRIPTION="A parallel implementation of gzip"
|
||||
HOMEPAGE="http://www.zlib.net/pigz/"
|
||||
SRC_URI="http://www.zlib.net/pigz/${P}.tar.gz"
|
||||
|
||||
LICENSE="ZLIB"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 ~mips ~sparc x86 ~amd64-linux ~sparc64-solaris"
|
||||
IUSE="static symlink test"
|
||||
|
||||
LIB_DEPEND="sys-libs/zlib[static-libs(+)]"
|
||||
RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
|
||||
DEPEND="${RDEPEND}
|
||||
static? ( ${LIB_DEPEND} )
|
||||
test? ( app-arch/ncompress )"
|
||||
|
||||
src_prepare() {
|
||||
sed -i -e '1,3d' -e '5s/$(CC)/$(CC) $(LDFLAGS)/' Makefile || die
|
||||
use static && append-ldflags -static
|
||||
tc-export CC
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin ${PN}
|
||||
dosym ${PN} /usr/bin/un${PN}
|
||||
dodoc README
|
||||
doman ${PN}.1
|
||||
|
||||
if use symlink; then
|
||||
dosym ${PN} /usr/bin/gzip
|
||||
dosym un${PN} /usr/bin/gunzip
|
||||
fi
|
||||
}
|
@ -1,39 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/pigz-2.3.1.ebuild,v 1.4 2014/01/18 01:43:34 vapier Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit toolchain-funcs flag-o-matic
|
||||
|
||||
DESCRIPTION="A parallel implementation of gzip"
|
||||
HOMEPAGE="http://www.zlib.net/pigz/"
|
||||
SRC_URI="http://www.zlib.net/pigz/${P}.tar.gz"
|
||||
|
||||
LICENSE="ZLIB"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~mips ~sparc x86 ~amd64-linux ~sparc64-solaris"
|
||||
IUSE="static symlink test"
|
||||
|
||||
LIB_DEPEND="sys-libs/zlib[static-libs(+)]"
|
||||
RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
|
||||
DEPEND="${RDEPEND}
|
||||
static? ( ${LIB_DEPEND} )
|
||||
test? ( app-arch/ncompress )"
|
||||
|
||||
src_compile() {
|
||||
use static && append-ldflags -static
|
||||
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin ${PN}
|
||||
dosym ${PN} /usr/bin/un${PN}
|
||||
dodoc README
|
||||
doman ${PN}.1
|
||||
|
||||
if use symlink; then
|
||||
dosym ${PN} /usr/bin/gzip
|
||||
dosym un${PN} /usr/bin/gunzip
|
||||
fi
|
||||
}
|
@ -1,41 +0,0 @@
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/pigz-2.3.ebuild,v 1.5 2013/09/20 16:57:04 jer Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
inherit eutils toolchain-funcs flag-o-matic
|
||||
|
||||
DESCRIPTION="A parallel implementation of gzip"
|
||||
HOMEPAGE="http://www.zlib.net/pigz/"
|
||||
SRC_URI="http://www.zlib.net/pigz/${P}.tar.gz"
|
||||
|
||||
LICENSE="ZLIB"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ~sparc x86 ~amd64-linux ~sparc64-solaris"
|
||||
IUSE="static symlink test"
|
||||
|
||||
LIB_DEPEND="sys-libs/zlib[static-libs(+)]"
|
||||
RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
|
||||
DEPEND="${RDEPEND}
|
||||
static? ( ${LIB_DEPEND} )
|
||||
test? ( app-arch/ncompress )"
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}"/${P}-make.patch
|
||||
sed -i -e '1,3d' -e '5s/$(CC)/$(CC) $(LDFLAGS)/' Makefile || die
|
||||
use static && append-ldflags -static
|
||||
tc-export CC
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin ${PN}
|
||||
dosym ${PN} /usr/bin/un${PN}
|
||||
dodoc README
|
||||
doman ${PN}.1
|
||||
|
||||
if use symlink; then
|
||||
dosym ${PN} /usr/bin/gzip
|
||||
dosym un${PN} /usr/bin/gunzip
|
||||
fi
|
||||
}
|
@ -0,0 +1,437 @@
|
||||
--- xemacs-21.4.22-orig/man/custom.texi
|
||||
+++ xemacs-21.4.22/man/custom.texi
|
||||
@@ -60,7 +60,7 @@
|
||||
|
||||
@node Declaring Groups, Declaring Variables, Top, Top
|
||||
@comment node-name, next, previous, up
|
||||
-@section Declaring Groups
|
||||
+@chapter Declaring Groups
|
||||
|
||||
Use @code{defgroup} to declare new customization groups.
|
||||
|
||||
@@ -92,7 +92,7 @@
|
||||
|
||||
@node Declaring Variables, Declaring Faces, Declaring Groups, Top
|
||||
@comment node-name, next, previous, up
|
||||
-@section Declaring Variables
|
||||
+@chapter Declaring Variables
|
||||
|
||||
Use @code{defcustom} to declare user editable variables.
|
||||
|
||||
@@ -176,7 +176,7 @@
|
||||
|
||||
@node Declaring Faces, Usage for Package Authors, Declaring Variables, Top
|
||||
@comment node-name, next, previous, up
|
||||
-@section Declaring Faces
|
||||
+@chapter Declaring Faces
|
||||
|
||||
Faces are declared with @code{defface}.
|
||||
|
||||
@@ -228,7 +228,7 @@
|
||||
|
||||
@node Usage for Package Authors, Utilities, Declaring Faces, Top
|
||||
@comment node-name, next, previous, up
|
||||
-@section Usage for Package Authors
|
||||
+@chapter Usage for Package Authors
|
||||
|
||||
The recommended usage for the author of a typical emacs lisp package is
|
||||
to create one group identifying the package, and make all user options
|
||||
@@ -244,7 +244,7 @@
|
||||
|
||||
@node Utilities, The Init File, Usage for Package Authors, Top
|
||||
@comment node-name, next, previous, up
|
||||
-@section Utilities
|
||||
+@chapter Utilities
|
||||
|
||||
These utilities can come in handy when adding customization support.
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
|
||||
@node The Init File, Wishlist, Utilities, Top
|
||||
@comment node-name, next, previous, up
|
||||
-@section The Init File
|
||||
+@chapter The Init File
|
||||
|
||||
Customizations are saved to the file specified by @code{custom-file}, as
|
||||
calls to @code{custom-set-variables} and @code{custom-set-faces}.
|
||||
@@ -299,7 +299,7 @@
|
||||
|
||||
@node Wishlist, , The Init File, Top
|
||||
@comment node-name, next, previous, up
|
||||
-@section Wishlist
|
||||
+@chapter Wishlist
|
||||
|
||||
@itemize @bullet
|
||||
@item
|
||||
--- xemacs-21.4.22-orig/man/info.texi
|
||||
+++ xemacs-21.4.22/man/info.texi
|
||||
@@ -543,6 +543,10 @@
|
||||
@c If a menu appears at the end of this node, remove it.
|
||||
@c It is an accident of the menu updating command.
|
||||
|
||||
+@menu
|
||||
+* Help-Cross::
|
||||
+@end menu
|
||||
+
|
||||
@node Help-Cross, , , Help-Adv
|
||||
@subsection The node reached by the cross reference in Info
|
||||
|
||||
--- xemacs-21.4.22-orig/man/lispref/edebug-inc.texi
|
||||
+++ xemacs-21.4.22/man/lispref/edebug-inc.texi
|
||||
@@ -1103,7 +1103,7 @@
|
||||
Here is a table of the possibilities for @var{specification} and how each
|
||||
directs processing of arguments.
|
||||
|
||||
-@table @bullet
|
||||
+@table @asis
|
||||
|
||||
@item @code{t}
|
||||
All arguments are instrumented for evaluation.
|
||||
--- xemacs-21.4.22-orig/man/lispref/packaging.texi
|
||||
+++ xemacs-21.4.22/man/lispref/packaging.texi
|
||||
@@ -600,7 +600,7 @@
|
||||
Does most of the work. Builds the elcs, infos at a minimum.
|
||||
@end table
|
||||
|
||||
-@subsection The targets that most people would be interested in would be:
|
||||
+@section The targets that most people would be interested in would be:
|
||||
|
||||
@itemize @bullet
|
||||
@item @code{all}
|
||||
--- xemacs-21.4.22-orig/man/term.texi
|
||||
+++ xemacs-21.4.22/man/term.texi
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
@titlepage
|
||||
@sp 6
|
||||
-@center @titlefont(Notes about Emacs TERM Mode)
|
||||
+@center @titlefont{Notes about Emacs TERM Mode}
|
||||
@end titlepage
|
||||
|
||||
@ifinfo
|
||||
--- xemacs-21.4.22-orig/man/widget.texi
|
||||
+++ xemacs-21.4.22/man/widget.texi
|
||||
@@ -38,7 +38,7 @@
|
||||
|
||||
@node Introduction, User Interface, Top, Top
|
||||
@comment node-name, next, previous, up
|
||||
-@section Introduction
|
||||
+@chapter Introduction
|
||||
|
||||
Most graphical user interface toolkits, such as Motif and XView, provide
|
||||
a number of standard user interface controls (sometimes known as
|
||||
@@ -129,7 +129,7 @@
|
||||
|
||||
@node User Interface, Programming Example, Introduction, Top
|
||||
@comment node-name, next, previous, up
|
||||
-@section User Interface
|
||||
+@chapter User Interface
|
||||
|
||||
A form consists of read only text for documentation and some fields,
|
||||
where each of the fields contains two parts, a tag and a value. The
|
||||
@@ -175,7 +175,7 @@
|
||||
a form, namely editing the editable text fields and activating the
|
||||
buttons.
|
||||
|
||||
-@subsection Editable Text Fields
|
||||
+@section Editable Text Fields
|
||||
|
||||
In the example, the value for the @samp{Name} is most likely displayed
|
||||
in an editable text field, and so are values for each of the members of
|
||||
@@ -194,7 +194,7 @@
|
||||
Face used for other editing fields.
|
||||
@end deffn
|
||||
|
||||
-@subsection Buttons
|
||||
+@section Buttons
|
||||
|
||||
Some portions of the buffer have an associated @dfn{action}, which can
|
||||
be @dfn{invoked} by a standard key or mouse command. These portions
|
||||
@@ -259,7 +259,7 @@
|
||||
Face used for buttons when the mouse pointer is above it.
|
||||
@end defopt
|
||||
|
||||
-@subsection Navigation
|
||||
+@section Navigation
|
||||
|
||||
You can use all the normal Emacs commands to move around in a form
|
||||
buffer, plus you will have these additional commands:
|
||||
@@ -277,7 +277,7 @@
|
||||
|
||||
@node Programming Example, Setting Up the Buffer, User Interface, Top
|
||||
@comment node-name, next, previous, up
|
||||
-@section Programming Example
|
||||
+@chapter Programming Example
|
||||
|
||||
Here is the code to implement the user interface example (see @ref{User
|
||||
Interface}).
|
||||
@@ -369,7 +369,7 @@
|
||||
|
||||
@node Setting Up the Buffer, Basic Types, Programming Example, Top
|
||||
@comment node-name, next, previous, up
|
||||
-@section Setting Up the Buffer
|
||||
+@chapter Setting Up the Buffer
|
||||
|
||||
Widgets are created with @code{widget-create}, which returns a
|
||||
@dfn{widget} object. This object can be queried and manipulated by
|
||||
@@ -422,7 +422,7 @@
|
||||
|
||||
@node Basic Types, Sexp Types, Setting Up the Buffer, Top
|
||||
@comment node-name, next, previous, up
|
||||
-@section Basic Types
|
||||
+@chapter Basic Types
|
||||
|
||||
The syntax of a type specification is given below:
|
||||
|
||||
@@ -635,7 +635,7 @@
|
||||
|
||||
@node link, url-link, Basic Types, Basic Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection The @code{link} Widget
|
||||
+@section The @code{link} Widget
|
||||
|
||||
Syntax:
|
||||
|
||||
@@ -659,7 +659,7 @@
|
||||
|
||||
@node url-link, info-link, link, Basic Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection The @code{url-link} Widget
|
||||
+@section The @code{url-link} Widget
|
||||
|
||||
Syntax:
|
||||
|
||||
@@ -672,7 +672,7 @@
|
||||
|
||||
@node info-link, push-button, url-link, Basic Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection The @code{info-link} Widget
|
||||
+@section The @code{info-link} Widget
|
||||
|
||||
Syntax:
|
||||
|
||||
@@ -685,7 +685,7 @@
|
||||
|
||||
@node push-button, editable-field, info-link, Basic Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection The @code{push-button} Widget
|
||||
+@section The @code{push-button} Widget
|
||||
|
||||
Syntax:
|
||||
|
||||
@@ -709,7 +709,7 @@
|
||||
|
||||
@node editable-field, text, push-button, Basic Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection The @code{editable-field} Widget
|
||||
+@section The @code{editable-field} Widget
|
||||
|
||||
Syntax:
|
||||
|
||||
@@ -753,7 +753,7 @@
|
||||
|
||||
@node text, menu-choice, editable-field, Basic Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection The @code{text} Widget
|
||||
+@section The @code{text} Widget
|
||||
|
||||
This is just like @code{editable-field}, but intended for multiline text
|
||||
fields. The default @code{:keymap} is @code{widget-text-keymap}, which
|
||||
@@ -761,7 +761,7 @@
|
||||
|
||||
@node menu-choice, radio-button-choice, text, Basic Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection The @code{menu-choice} Widget
|
||||
+@section The @code{menu-choice} Widget
|
||||
|
||||
Syntax:
|
||||
|
||||
@@ -796,7 +796,7 @@
|
||||
|
||||
@node radio-button-choice, item, menu-choice, Basic Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection The @code{radio-button-choice} Widget
|
||||
+@section The @code{radio-button-choice} Widget
|
||||
|
||||
Syntax:
|
||||
|
||||
@@ -856,7 +856,7 @@
|
||||
|
||||
@node item, choice-item, radio-button-choice, Basic Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection The @code{item} Widget
|
||||
+@section The @code{item} Widget
|
||||
|
||||
Syntax:
|
||||
|
||||
@@ -870,7 +870,7 @@
|
||||
|
||||
@node choice-item, toggle, item, Basic Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection The @code{choice-item} Widget
|
||||
+@section The @code{choice-item} Widget
|
||||
|
||||
Syntax:
|
||||
|
||||
@@ -886,7 +886,7 @@
|
||||
|
||||
@node toggle, checkbox, choice-item, Basic Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection The @code{toggle} Widget
|
||||
+@section The @code{toggle} Widget
|
||||
|
||||
Syntax:
|
||||
|
||||
@@ -914,7 +914,7 @@
|
||||
|
||||
@node checkbox, checklist, toggle, Basic Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection The @code{checkbox} Widget
|
||||
+@section The @code{checkbox} Widget
|
||||
|
||||
The widget has two possible states, `selected' and `unselected', which
|
||||
corresponds to a @code{t} or @code{nil} value.
|
||||
@@ -927,7 +927,7 @@
|
||||
|
||||
@node checklist, editable-list, checkbox, Basic Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection The @code{checklist} Widget
|
||||
+@section The @code{checklist} Widget
|
||||
|
||||
Syntax:
|
||||
|
||||
@@ -978,7 +978,7 @@
|
||||
|
||||
@node editable-list, group, checklist, Basic Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection The @code{editable-list} Widget
|
||||
+@section The @code{editable-list} Widget
|
||||
|
||||
Syntax:
|
||||
|
||||
@@ -1030,7 +1030,7 @@
|
||||
|
||||
@node group, , editable-list, Basic Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection The @code{group} Widget
|
||||
+@section The @code{group} Widget
|
||||
|
||||
This widget simply groups other widgets together.
|
||||
|
||||
@@ -1044,7 +1044,7 @@
|
||||
|
||||
@node Sexp Types, Widget Properties, Basic Types, Top
|
||||
@comment
|
||||
-@section Sexp Types
|
||||
+@chapter Sexp Types
|
||||
|
||||
A number of widgets for editing s-expressions (lisp types) are also
|
||||
available. These basically fall in the following categories.
|
||||
@@ -1058,7 +1058,7 @@
|
||||
|
||||
@node constants, generic, Sexp Types, Sexp Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection The Constant Widgets.
|
||||
+@section The Constant Widgets.
|
||||
|
||||
The @code{const} widget can contain any lisp expression, but the user is
|
||||
prohibited from editing it, which is mainly useful as a component of one
|
||||
@@ -1094,7 +1094,7 @@
|
||||
|
||||
@node generic, atoms, constants, Sexp Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection Generic Sexp Widget.
|
||||
+@section Generic Sexp Widget.
|
||||
|
||||
The @code{sexp} widget can contain any lisp expression, and allows the
|
||||
user to edit it inline in the buffer.
|
||||
@@ -1115,7 +1115,7 @@
|
||||
|
||||
@node atoms, composite, generic, Sexp Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection Atomic Sexp Widgets.
|
||||
+@section Atomic Sexp Widgets.
|
||||
|
||||
The atoms are s-expressions that does not consist of other
|
||||
s-expressions. A string is an atom, while a list is a composite type.
|
||||
@@ -1192,7 +1192,7 @@
|
||||
|
||||
@node composite, , atoms, Sexp Types
|
||||
@comment node-name, next, previous, up
|
||||
-@subsection Composite Sexp Widgets.
|
||||
+@section Composite Sexp Widgets.
|
||||
|
||||
The syntax for the composite are
|
||||
|
||||
@@ -1265,7 +1265,7 @@
|
||||
|
||||
@node Widget Properties, Defining New Widgets, Sexp Types, Top
|
||||
@comment node-name, next, previous, up
|
||||
-@section Properties
|
||||
+@chapter Properties
|
||||
|
||||
You can examine or set the value of a widget by using the widget object
|
||||
that was returned by @code{widget-create}.
|
||||
@@ -1353,7 +1353,7 @@
|
||||
|
||||
@node Defining New Widgets, Widget Browser, Widget Properties, Top
|
||||
@comment node-name, next, previous, up
|
||||
-@section Defining New Widgets
|
||||
+@chapter Defining New Widgets
|
||||
|
||||
You can define specialized widgets with @code{define-widget}. It allows
|
||||
you to create a shorthand for more complex widgets. This includes
|
||||
@@ -1565,7 +1565,7 @@
|
||||
|
||||
@node Widget Browser, Widget Minor Mode, Defining New Widgets, Top
|
||||
@comment node-name, next, previous, up
|
||||
-@section Widget Browser
|
||||
+@chapter Widget Browser
|
||||
|
||||
There is a separate package to browse widgets. This is intended to help
|
||||
programmers who want to examine the content of a widget. The browser
|
||||
@@ -1589,7 +1589,7 @@
|
||||
|
||||
@node Widget Minor Mode, Utilities, Widget Browser, Top
|
||||
@comment node-name, next, previous, up
|
||||
-@section Widget Minor Mode
|
||||
+@chapter Widget Minor Mode
|
||||
|
||||
There is a minor mode for manipulating widgets in major modes that
|
||||
doesn't provide any support for widgets themselves. This is mostly
|
||||
@@ -1606,7 +1606,7 @@
|
||||
|
||||
@node Utilities, Widget Wishlist, Widget Minor Mode, Top
|
||||
@comment node-name, next, previous, up
|
||||
-@section Utilities.
|
||||
+@chapter Utilities.
|
||||
|
||||
@defun widget-prompt-value widget prompt [ value unbound ]
|
||||
Prompt for a value matching @var{widget}, using @var{prompt}.@*
|
||||
@@ -1621,7 +1621,7 @@
|
||||
|
||||
@node Widget Wishlist, Widget Internals, Utilities, Top
|
||||
@comment node-name, next, previous, up
|
||||
-@section Wishlist
|
||||
+@chapter Wishlist
|
||||
|
||||
@itemize @bullet
|
||||
@item
|
||||
@@ -1693,7 +1693,7 @@
|
||||
@end itemize
|
||||
|
||||
@node Widget Internals, , Widget Wishlist, Top
|
||||
-@section Internals
|
||||
+@chapter Internals
|
||||
|
||||
This (very brief!) section provides a few notes on the internal
|
||||
structure and implementation of Emacs widgets. Avoid relying on this
|
||||
@@ -1701,7 +1701,7 @@
|
||||
To the extent that it actually describes APIs, the information will be
|
||||
moved to appropriate sections of the manual in due course.
|
||||
|
||||
-@subsection The @dfn{Widget} and @dfn{Type} Structures
|
||||
+@section The @dfn{Widget} and @dfn{Type} Structures
|
||||
|
||||
Widgets and types are currently both implemented as lists.
|
||||
|
@ -0,0 +1,255 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-editors/xemacs/xemacs-21.4.22-r4.ebuild,v 1.1 2014/10/21 16:49:26 matsl Exp $
|
||||
|
||||
# Note: xemacs currently does not work with a hardened profile. If you
|
||||
# want to use xemacs on a hardened profile then compile with the
|
||||
# -nopie flag in CFLAGS or help fix bug #75028.
|
||||
|
||||
EAPI="5"
|
||||
|
||||
export WANT_AUTOCONF="2.1"
|
||||
inherit autotools eutils toolchain-funcs
|
||||
|
||||
DESCRIPTION="highly customizable open source text editor and application development system"
|
||||
HOMEPAGE="http://www.xemacs.org/"
|
||||
SRC_URI="http://ftp.xemacs.org/xemacs-21.4/${P}.tar.gz
|
||||
http://www.malfunction.de/afterstep/files/NeXT_XEmacs.tar.gz"
|
||||
|
||||
LICENSE="GPL-2+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
|
||||
IUSE="eolconv gif gpm pop postgres ldap xface nas dnd X jpeg tiff png mule motif freewnn canna xim athena neXt Xaw3d gdbm berkdb"
|
||||
|
||||
X_DEPEND="x11-libs/libXt x11-libs/libXmu x11-libs/libXext x11-misc/xbitmaps"
|
||||
|
||||
RDEPEND="
|
||||
berkdb? ( sys-libs/db )
|
||||
gdbm? ( >=sys-libs/gdbm-1.8.3 )
|
||||
>=sys-libs/zlib-1.1.4
|
||||
>=dev-libs/openssl-0.9.6
|
||||
>=media-libs/audiofile-0.2.3
|
||||
gpm? ( >=sys-libs/gpm-1.19.6 )
|
||||
postgres? ( dev-db/postgresql-base )
|
||||
ldap? ( net-nds/openldap )
|
||||
nas? ( media-libs/nas )
|
||||
X? ( $X_DEPEND !Xaw3d? ( !neXt? ( x11-libs/libXaw ) ) )
|
||||
dnd? ( x11-libs/dnd )
|
||||
motif? ( >=x11-libs/motif-2.3:0 )
|
||||
athena? ( x11-libs/libXaw )
|
||||
Xaw3d? ( x11-libs/libXaw3d )
|
||||
neXt? ( x11-libs/neXtaw )
|
||||
xface? ( media-libs/compface )
|
||||
tiff? ( media-libs/tiff )
|
||||
png? ( >=media-libs/libpng-1.2 )
|
||||
jpeg? ( virtual/jpeg )
|
||||
canna? ( app-i18n/canna )
|
||||
!amd64? ( freewnn? ( app-i18n/freewnn ) )
|
||||
>=sys-libs/ncurses-5.2
|
||||
>=app-admin/eselect-emacs-1.15"
|
||||
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
PDEPEND="app-xemacs/xemacs-base
|
||||
mule? ( app-xemacs/mule-base )"
|
||||
|
||||
src_unpack() {
|
||||
unpack ${P}.tar.gz
|
||||
use neXt && unpack NeXT_XEmacs.tar.gz
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}"/xemacs-21.4.19-texi.patch
|
||||
|
||||
# see bug 58350, 102540 and 143580
|
||||
epatch "${FILESDIR}"/xemacs-21.4.19-db.patch
|
||||
|
||||
# Security bug #216880
|
||||
epatch "${FILESDIR}"/xemacs-21.4.21-vcdiff.patch
|
||||
|
||||
# Security bug #275397
|
||||
epatch "${FILESDIR}"/${P}-large-images.patch
|
||||
|
||||
# Make sure to include deprecated LDAP symbols to avoid runtime
|
||||
# crashes.
|
||||
epatch "${FILESDIR}"/${P}-deprecated-ldap.patch
|
||||
|
||||
# Fix compilation with libpng 1.5, bug 384461
|
||||
epatch "${FILESDIR}"/${P}-libpng15.patch
|
||||
|
||||
# Add texinfo-5.1 compatibility
|
||||
epatch "${FILESDIR}"/${P}-texinfo-5.patch
|
||||
|
||||
# Some binaries and man pages are installed under suffixed names
|
||||
# to avoid collions with their GNU Emacs counterparts (see below).
|
||||
# Fix internal filename references.
|
||||
sed -i -e 's/exec gnuclient/&-xemacs/' lib-src/gnudoit || die
|
||||
sed -i -e '/^\.so/s/etags/&-xemacs/' etc/ctags.1 || die
|
||||
sed -i -e '/^\.so/s/gnuserv/&-xemacs/' etc/gnu{client,doit,attach}.1 || die
|
||||
|
||||
# Run autoconf. XEmacs tries to be smart by providing a stub
|
||||
# configure.ac file for autoconf 2.59 but this throws our
|
||||
# autotools eclass so it must be removed first.
|
||||
rm "${S}"/configure.ac || die
|
||||
eautoconf
|
||||
|
||||
use neXt && cp "${WORKDIR}"/NeXT.XEmacs/xemacs-icons/* "${S}"/etc/toolbar/
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local myconf=""
|
||||
|
||||
if use X; then
|
||||
|
||||
myconf="${myconf} --with-widgets=athena"
|
||||
myconf="${myconf} --with-dialogs=athena"
|
||||
myconf="${myconf} --with-menubars=lucid"
|
||||
myconf="${myconf} --with-scrollbars=lucid"
|
||||
if use motif ; then
|
||||
myconf="--with-widgets=motif"
|
||||
myconf="${myconf} --with-dialogs=motif"
|
||||
myconf="${myconf} --with-scrollbars=motif"
|
||||
myconf="${myconf} --with-menubars=lucid"
|
||||
fi
|
||||
if use athena ; then
|
||||
myconf="--with-scrollbars=athena"
|
||||
fi
|
||||
|
||||
if use Xaw3d; then
|
||||
myconf="${myconf} --with-athena=3d"
|
||||
elif use neXt; then
|
||||
myconf="${myconf} --with-athena=next"
|
||||
else
|
||||
myconf="${myconf} --with-athena=xaw"
|
||||
fi
|
||||
|
||||
use dnd && myconf="${myconf} --with-dragndrop --with-offix"
|
||||
|
||||
myconf="${myconf} $(use_with tiff ) $(use_with png )"
|
||||
myconf="${myconf} $(use_with jpeg ) $(use_with xface )"
|
||||
else
|
||||
myconf="${myconf}
|
||||
--without-x
|
||||
--without-xpm
|
||||
--without-dragndrop
|
||||
--with-gif=no"
|
||||
fi
|
||||
|
||||
if use mule ; then
|
||||
myconf="${myconf} --with-mule"
|
||||
|
||||
if use xim ; then
|
||||
if use motif ; then
|
||||
myconf="${myconf} --with-xim=motif"
|
||||
else
|
||||
myconf="${myconf} --with-xim=xlib"
|
||||
fi
|
||||
else
|
||||
myconf="${myconf} --with-xim=no"
|
||||
fi
|
||||
|
||||
myconf="${myconf} $(use_with canna ) $(use_with freewnn wnn )"
|
||||
fi
|
||||
|
||||
# This determines the type of sounds we are playing
|
||||
local soundconf="native"
|
||||
|
||||
# This determines how these sounds should be played
|
||||
use nas && soundconf="${soundconf},nas"
|
||||
|
||||
myconf="${myconf} --with-sound=${soundconf}"
|
||||
|
||||
if use gdbm || use berkdb ; then
|
||||
use gdbm && mydb="gdbm"
|
||||
|
||||
use berkdb && mydb="${mydb},berkdb"
|
||||
|
||||
myconf="${myconf} --with-database=${mydb}"
|
||||
else
|
||||
myconf="${myconf} --without-database"
|
||||
fi
|
||||
|
||||
# fixes #21264, this should be fixed in 21.4.21 and has been fixed
|
||||
# in 21.5 for sure. Now that 21.4.21 is out there is no real
|
||||
# evidence that this indeed got fixed, so keep these exceptions
|
||||
# for now.
|
||||
use alpha && myconf="${myconf} --with-system-malloc"
|
||||
use ppc64 && myconf="${myconf} --with-system-malloc"
|
||||
use ia64 && myconf="${myconf} --with-system-malloc"
|
||||
|
||||
# Enabling modules will cause segfaults outside the XEmacs build directory
|
||||
use ia64 && myconf="${myconf} --without-modules"
|
||||
|
||||
einfo "${myconf}"
|
||||
|
||||
# Don't use econf because it uses options which this configure
|
||||
# script does not understand (like --host).
|
||||
./configure ${myconf} ${EXTRA_ECONF} \
|
||||
$(use_with gif ) \
|
||||
$(use_with gpm ) \
|
||||
$(use_with postgres postgresql ) \
|
||||
$(use_with ldap ) \
|
||||
$(use_with eolconv file-coding ) \
|
||||
$(use_with pop ) \
|
||||
--compiler=$(tc-getCC) \
|
||||
--prefix=/usr \
|
||||
--with-ncurses \
|
||||
--with-msw=no \
|
||||
--mail-locking=flock \
|
||||
--with-site-lisp=yes \
|
||||
--with-site-modules=yes \
|
||||
|| die "The configure script failed to run properly"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake prefix="${D}"/usr \
|
||||
mandir="${D}"/usr/share/man/man1 \
|
||||
infodir="${D}"/usr/share/info \
|
||||
install gzip-el || die "emake install failed"
|
||||
|
||||
# Rename some applications installed in bin so that it is clear
|
||||
# which application installed them and so that conflicting
|
||||
# packages (emacs) can't clobber the actual applications.
|
||||
# Addresses bug #62991.
|
||||
for i in b2m ctags etags rcs-checkin gnuclient gnudoit gnuattach; do
|
||||
mv "${D}"/usr/bin/${i} "${D}"/usr/bin/${i}-xemacs || die "mv ${i} failed"
|
||||
done
|
||||
|
||||
# rename man pages
|
||||
for i in ctags etags gnuserv gnuclient gnudoit gnuattach; do
|
||||
mv "${D}"/usr/share/man/man1/${i}{,-xemacs}.1 || die "mv ${i}.1 failed"
|
||||
done
|
||||
|
||||
# install base packages directories
|
||||
dodir /usr/lib/xemacs/xemacs-packages/
|
||||
dodir /usr/lib/xemacs/site-packages/
|
||||
dodir /usr/lib/xemacs/site-modules/
|
||||
dodir /usr/lib/xemacs/site-lisp/
|
||||
|
||||
if use mule;
|
||||
then
|
||||
dodir /usr/lib/xemacs/mule-packages
|
||||
fi
|
||||
|
||||
# remove extraneous info files
|
||||
cd "${D}"/usr/share/info
|
||||
rm -f dir info.info texinfo* termcap* standards*
|
||||
|
||||
cd "${S}"
|
||||
dodoc BUGS CHANGES-* ChangeLog GETTING* INSTALL PROBLEMS README*
|
||||
dodoc "${FILESDIR}"/README.Gentoo
|
||||
|
||||
newicon "${S}"/etc/${PN}-icon.xpm ${PN}.xpm
|
||||
|
||||
domenu "${FILESDIR}"/${PN}.desktop
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
eselect emacs update ifunset
|
||||
eselect gnuclient update ifunset
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
eselect emacs update ifunset
|
||||
eselect gnuclient update ifunset
|
||||
}
|
@ -0,0 +1,442 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-1.2.9.ebuild,v 1.1 2014/10/21 18:27:48 tamiko Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
#BACKPORTS=062ad8b2
|
||||
AUTOTOOLIZE=yes
|
||||
|
||||
MY_P="${P/_rc/-rc}"
|
||||
|
||||
inherit eutils user autotools linux-info systemd readme.gentoo
|
||||
|
||||
if [[ ${PV} = *9999* ]]; then
|
||||
inherit git-2
|
||||
EGIT_REPO_URI="git://libvirt.org/libvirt.git"
|
||||
AUTOTOOLIZE=yes
|
||||
SRC_URI=""
|
||||
KEYWORDS=""
|
||||
else
|
||||
SRC_URI="http://libvirt.org/sources/${MY_P}.tar.gz
|
||||
ftp://libvirt.org/libvirt/${MY_P}.tar.gz
|
||||
${BACKPORTS:+
|
||||
http://dev.gentoo.org/~cardoe/distfiles/${MY_P}-${BACKPORTS}.tar.xz}"
|
||||
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/${PV}"
|
||||
IUSE="audit avahi +caps firewalld fuse iscsi +libvirtd lvm lxc +macvtap nfs \
|
||||
nls numa openvz parted pcap phyp policykit +qemu rbd sasl \
|
||||
selinux +udev uml +vepa virtualbox virt-network xen elibc_glibc \
|
||||
systemd"
|
||||
REQUIRED_USE="libvirtd? ( || ( lxc openvz qemu uml virtualbox xen ) )
|
||||
lxc? ( caps libvirtd )
|
||||
openvz? ( libvirtd )
|
||||
qemu? ( libvirtd )
|
||||
uml? ( libvirtd )
|
||||
vepa? ( macvtap )
|
||||
virtualbox? ( libvirtd )
|
||||
xen? ( libvirtd )
|
||||
virt-network? ( libvirtd )
|
||||
firewalld? ( virt-network )"
|
||||
|
||||
# gettext.sh command is used by the libvirt command wrappers, and it's
|
||||
# non-optional, so put it into RDEPEND.
|
||||
# We can use both libnl:1.1 and libnl:3, but if you have both installed, the
|
||||
# package will use 3 by default. Since we don't have slot pinning in an API,
|
||||
# we must go with the most recent
|
||||
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:3
|
||||
>=net-libs/gnutls-1.0.25
|
||||
net-libs/libssh2
|
||||
sys-apps/dmidecode
|
||||
>=sys-apps/util-linux-2.17
|
||||
sys-devel/gettext
|
||||
>=net-analyzer/netcat6-1.0-r2
|
||||
app-misc/scrub
|
||||
audit? ( sys-process/audit )
|
||||
avahi? ( >=net-dns/avahi-0.6[dbus] )
|
||||
caps? ( sys-libs/libcap-ng )
|
||||
fuse? ( >=sys-fs/fuse-2.8.6 )
|
||||
iscsi? ( sys-block/open-iscsi )
|
||||
lxc? ( !systemd? ( sys-power/pm-utils ) )
|
||||
lvm? ( >=sys-fs/lvm2-2.02.48-r2 )
|
||||
nfs? ( net-fs/nfs-utils )
|
||||
numa? (
|
||||
>sys-process/numactl-2.0.2
|
||||
sys-process/numad
|
||||
)
|
||||
openvz? ( sys-kernel/openvz-sources )
|
||||
parted? (
|
||||
>=sys-block/parted-1.8[device-mapper]
|
||||
sys-fs/lvm2
|
||||
)
|
||||
pcap? ( >=net-libs/libpcap-1.0.0 )
|
||||
policykit? ( >=sys-auth/polkit-0.9 )
|
||||
qemu? (
|
||||
>=app-emulation/qemu-0.13.0
|
||||
dev-libs/yajl
|
||||
!systemd? ( sys-power/pm-utils )
|
||||
)
|
||||
rbd? ( sys-cluster/ceph )
|
||||
sasl? ( dev-libs/cyrus-sasl )
|
||||
selinux? ( >=sys-libs/libselinux-2.0.85 )
|
||||
systemd? ( sys-apps/systemd )
|
||||
virtualbox? ( || ( app-emulation/virtualbox >=app-emulation/virtualbox-bin-2.2.0 ) )
|
||||
xen? ( app-emulation/xen-tools app-emulation/xen )
|
||||
udev? ( virtual/udev >=x11-libs/libpciaccess-0.10.9 )
|
||||
virt-network? ( net-dns/dnsmasq[script]
|
||||
>=net-firewall/iptables-1.4.10
|
||||
net-misc/radvd
|
||||
net-firewall/ebtables
|
||||
sys-apps/iproute2[-minimal]
|
||||
firewalld? ( net-firewall/firewalld )
|
||||
)
|
||||
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
|
||||
dev-lang/perl
|
||||
dev-libs/libxslt"
|
||||
|
||||
DOC_CONTENTS="For the basic networking support (bridged and routed networks)
|
||||
you don't need any extra software. For more complex network modes
|
||||
including but not limited to NATed network, you can enable the
|
||||
'virt-network' USE flag.\n\n
|
||||
If you are using dnsmasq on your system, you will have
|
||||
to configure /etc/dnsmasq.conf to enable the following settings:\n\n
|
||||
bind-interfaces\n
|
||||
interface or except-interface\n\n
|
||||
Otherwise you might have issues with your existing DNS server."
|
||||
|
||||
LXC_CONFIG_CHECK="
|
||||
~CGROUPS
|
||||
~CGROUP_FREEZER
|
||||
~CGROUP_DEVICE
|
||||
~CGROUP_CPUACCT
|
||||
~CGROUP_SCHED
|
||||
~CGROUP_PERF
|
||||
~BLK_CGROUP
|
||||
~NET_CLS_CGROUP
|
||||
~CGROUP_NET_PRIO
|
||||
~CPUSETS
|
||||
~RESOURCE_COUNTERS
|
||||
~NAMESPACES
|
||||
~UTS_NS
|
||||
~IPC_NS
|
||||
~PID_NS
|
||||
~NET_NS
|
||||
~USER_NS
|
||||
~DEVPTS_MULTIPLE_INSTANCES
|
||||
~VETH
|
||||
~MACVLAN
|
||||
~POSIX_MQUEUE
|
||||
~SECURITYFS
|
||||
~!GRKERNSEC_CHROOT_MOUNT
|
||||
~!GRKERNSEC_CHROOT_DOUBLE
|
||||
~!GRKERNSEC_CHROOT_PIVOT
|
||||
~!GRKERNSEC_CHROOT_CHMOD
|
||||
~!GRKERNSEC_CHROOT_CAPS
|
||||
"
|
||||
|
||||
VIRTNET_CONFIG_CHECK="
|
||||
~BRIDGE_NF_EBTABLES
|
||||
~BRIDGE_EBT_MARK_T
|
||||
~NETFILTER_ADVANCED
|
||||
~NETFILTER_XT_TARGET_CHECKSUM
|
||||
~NETFILTER_XT_CONNMARK
|
||||
~NETFILTER_XT_MARK
|
||||
"
|
||||
|
||||
BWLMT_CONFIG_CHECK="
|
||||
~BRIDGE_EBT_T_NAT
|
||||
~NET_SCH_HTB
|
||||
~NET_SCH_SFQ
|
||||
~NET_SCH_INGRESS
|
||||
~NET_CLS_FW
|
||||
~NET_CLS_U32
|
||||
~NET_ACT_POLICE
|
||||
"
|
||||
|
||||
MACVTAP_CONFIG_CHECK=" ~MACVTAP"
|
||||
|
||||
LVM_CONFIG_CHECK=" ~BLK_DEV_DM ~DM_SNAPSHOT ~DM_MULTIPATH"
|
||||
|
||||
ERROR_USER_NS="Optional depending on LXC configuration."
|
||||
|
||||
pkg_setup() {
|
||||
enewgroup qemu 77
|
||||
enewuser qemu 77 -1 -1 qemu kvm
|
||||
|
||||
# Some people used the masked ebuild which was not adding the qemu
|
||||
# user to the kvm group originally. This results in VMs failing to
|
||||
# start for some users. bug #430808
|
||||
egetent group kvm | grep -q qemu
|
||||
if [[ $? -ne 0 ]]; then
|
||||
gpasswd -a qemu kvm
|
||||
fi
|
||||
|
||||
# Handle specific kernel versions for different features
|
||||
kernel_is lt 3 6 && LXC_CONFIG_CHECK+=" ~CGROUP_MEM_RES_CTLR"
|
||||
kernel_is ge 3 6 && LXC_CONFIG_CHECK+=" ~MEMCG ~MEMCG_SWAP ~MEMCG_KMEM"
|
||||
|
||||
CONFIG_CHECK=""
|
||||
use fuse && CONFIG_CHECK+=" ~FUSE_FS"
|
||||
use lvm && CONFIG_CHECK+="${LVM_CONFIG_CHECK}"
|
||||
use lxc && CONFIG_CHECK+="${LXC_CONFIG_CHECK}"
|
||||
use macvtap && CONFIG_CHECK+="${MACVTAP_CONFIG_CHECK}"
|
||||
use virt-network && CONFIG_CHECK+="${VIRTNET_CONFIG_CHECK}"
|
||||
# Bandwidth Limiting Support
|
||||
use virt-network && CONFIG_CHECK+="${BWLMT_CONFIG_CHECK}"
|
||||
if [[ -n ${CONFIG_CHECK} ]]; then
|
||||
linux-info_pkg_setup
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
touch "${S}/.mailmap"
|
||||
[[ -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
|
||||
|
||||
epatch_user
|
||||
|
||||
[[ -n ${AUTOTOOLIZE} ]] && eautoreconf
|
||||
|
||||
# Tweak the init script
|
||||
local avahi_init=
|
||||
local iscsi_init=
|
||||
local rbd_init=
|
||||
local firewalld_init=
|
||||
cp "${FILESDIR}/libvirtd.init-r13" "${S}/libvirtd.init"
|
||||
use avahi && avahi_init='avahi-daemon'
|
||||
use iscsi && iscsi_init='iscsid'
|
||||
use rbd && rbd_init='ceph'
|
||||
use firewalld && firewalld_init='need firewalld'
|
||||
|
||||
sed -e "s/USE_FLAG_FIREWALLD/${firewalld_init}/" -i "${S}/libvirtd.init"
|
||||
sed -e "s/USE_FLAG_AVAHI/${avahi_init}/" -i "${S}/libvirtd.init"
|
||||
sed -e "s/USE_FLAG_ISCSI/${iscsi_init}/" -i "${S}/libvirtd.init"
|
||||
sed -e "s/USE_FLAG_RBD/${rbd_init}/" -i "${S}/libvirtd.init"
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local myconf=""
|
||||
|
||||
## 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)"
|
||||
myconf+=" --without-xenapi"
|
||||
if use xen && has_version ">=app-emulation/xen-tools-4.2.0"; then
|
||||
myconf+=" --with-libxl"
|
||||
else
|
||||
myconf+=" --without-libxl"
|
||||
fi
|
||||
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
|
||||
myconf="${myconf} $(use_with phyp)"
|
||||
myconf="${myconf} --with-esx"
|
||||
myconf="${myconf} --with-vmware"
|
||||
|
||||
## 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 rbd storage-rbd)"
|
||||
myconf="${myconf} $(use_with numa numactl)"
|
||||
myconf="${myconf} $(use_with numa numad)"
|
||||
myconf="${myconf} $(use_with selinux)"
|
||||
myconf="${myconf} $(use_with fuse)"
|
||||
|
||||
# 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)"
|
||||
myconf="${myconf} $(use_with vepa virtualport)"
|
||||
myconf="${myconf} $(use_with firewalld)"
|
||||
|
||||
## other
|
||||
myconf="${myconf} $(use_enable nls)"
|
||||
|
||||
# user privilege bits fir qemu/kvm
|
||||
if use caps; then
|
||||
myconf="${myconf} --with-qemu-user=qemu"
|
||||
myconf="${myconf} --with-qemu-group=qemu"
|
||||
else
|
||||
myconf="${myconf} --with-qemu-user=root"
|
||||
myconf="${myconf} --with-qemu-group=root"
|
||||
fi
|
||||
|
||||
# audit support
|
||||
myconf="${myconf} $(use_with audit)"
|
||||
|
||||
## stuff we don't yet support
|
||||
myconf="${myconf} --without-netcf"
|
||||
myconf="${myconf} --without-wireshark-dissector"
|
||||
|
||||
# we use udev over hal
|
||||
myconf="${myconf} --without-hal"
|
||||
|
||||
# locking support
|
||||
myconf="${myconf} --without-sanlock"
|
||||
|
||||
# systemd unit files
|
||||
use systemd && myconf="${myconf} --with-init-script=systemd"
|
||||
|
||||
# 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
|
||||
export VIR_TEST_DEBUG=1
|
||||
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} \
|
||||
EXAMPLE_DIR=/usr/share/doc/${PF}/examples \
|
||||
SYSTEMD_UNIT_DIR="$(systemd_get_unitdir)" \
|
||||
|| die "emake install failed"
|
||||
|
||||
find "${D}" -name '*.la' -delete || die
|
||||
|
||||
use libvirtd || return 0
|
||||
# From here, only libvirtd-related instructions, be warned!
|
||||
|
||||
newinitd "${S}/libvirtd.init" libvirtd || die
|
||||
newconfd "${FILESDIR}/libvirtd.confd-r4" libvirtd || die
|
||||
newinitd "${FILESDIR}/virtlockd.init" virtlockd || die
|
||||
|
||||
keepdir /var/lib/libvirt/{boot,images,network}
|
||||
use qemu && keepdir /var/{cache,lib,log}/libvirt/qemu
|
||||
use lxc && keepdir /var/{cache,lib,log}/libvirt/lxc
|
||||
|
||||
readme.gentoo_create_doc
|
||||
}
|
||||
|
||||
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
|
||||
dodir /etc/sysctl.d
|
||||
mv "${D}"/usr/lib/sysctl.d/libvirtd.conf "${D}"/etc/sysctl.d/libvirtd.conf
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if [[ -e "${ROOT}"/etc/libvirt/qemu/networks/default.xml ]]; then
|
||||
touch "${ROOT}"/etc/libvirt/qemu/networks/default.xml
|
||||
fi
|
||||
|
||||
# support for dropped privileges
|
||||
if use qemu; then
|
||||
fperms 0750 "${EROOT}/var/lib/libvirt/qemu"
|
||||
fperms 0750 "${EROOT}/var/cache/libvirt/qemu"
|
||||
fi
|
||||
|
||||
if use caps && use qemu; then
|
||||
fowners -R qemu:qemu "${EROOT}/var/lib/libvirt/qemu"
|
||||
fowners -R qemu:qemu "${EROOT}/var/cache/libvirt/qemu"
|
||||
elif use qemu; then
|
||||
fowners -R root:root "${EROOT}/var/lib/libvirt/qemu"
|
||||
fowners -R root:root "${EROOT}/var/cache/libvirt/qemu"
|
||||
fi
|
||||
|
||||
if ! use policykit; then
|
||||
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!
|
||||
|
||||
readme.gentoo_print_elog
|
||||
|
||||
if use caps && use qemu; then
|
||||
elog "libvirt will now start qemu/kvm VMs with non-root privileges."
|
||||
elog "Ensure any resources your VMs use are accessible by qemu:qemu"
|
||||
fi
|
||||
}
|
@ -0,0 +1,68 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-misc/devtodo/devtodo-0.1.20-r2.ebuild,v 1.1 2014/10/22 07:27:04 jlec Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
AUTOTOOLS_AUTORECONF=1
|
||||
AUTOTOOLS_IN_SOURCE_BUILD=1
|
||||
inherit autotools-utils bash-completion-r1 eutils flag-o-matic toolchain-funcs
|
||||
|
||||
DESCRIPTION="A nice command line todo list for developers"
|
||||
HOMEPAGE="http://swapoff.org/DevTodo"
|
||||
SRC_URI="http://swapoff.org/files/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="
|
||||
>=sys-libs/ncurses-5.2
|
||||
>=sys-libs/readline-4.1"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
DOCS=( AUTHORS ChangeLog QuickStart README doc/scripts.sh doc/scripts.tcsh doc/todorc.example )
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${P}-gentoo.diff"
|
||||
"${FILESDIR}/${P}-gcc43.patch"
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
# fix regex.h issue on case-insensitive file-systems #332235
|
||||
sed \
|
||||
-e 's/Regex.h/DTRegex.h/' \
|
||||
-i util/Lexer.h util/Makefile.{am,in} util/Regex.cc || die
|
||||
mv util/{,DT}Regex.h || die
|
||||
|
||||
sed \
|
||||
-e "/^LIBS/s:$: $($(tc-getPKG_CONFIG) --libs ncursesw):g" \
|
||||
-i src/Makefile.am || die
|
||||
|
||||
autotools-utils_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
replace-flags -O[23] -O1
|
||||
|
||||
local myeconfargs=(
|
||||
--sysconfdir="${EPREFIX}/etc/devtodo"
|
||||
)
|
||||
autotools-utils_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
autotools-utils_src_install
|
||||
|
||||
newbashcomp contrib/${PN}.bash-completion ${PN}
|
||||
rm contrib/${PN}.bash-completion || die 'rm failed'
|
||||
|
||||
bashcomp_alias devtodo tda tdd tde tdr todo
|
||||
|
||||
dodoc -r contrib
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
elog "Because of a conflict with app-misc/tdl, the tdl symbolic link"
|
||||
elog "and manual page have been removed."
|
||||
}
|
@ -1,26 +1,32 @@
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA256
|
||||
|
||||
DIST xapian-omega-1.2.13.tar.gz 627177 SHA256 ae35e37f3fddf1330004f41531b9c8be447c95f9bb8b2f135541a78c2c816d34 SHA512 2104c3b6f2d6fb12e70c9f62a4aaec808efd79a9067a1b0dda97f4d0b207f98028284436f0120d535b244f5f942428c8291be08cedb27b1a3a4c436fa8a1aa1a WHIRLPOOL 7825186ac6c87cbd829f5fd0b0bb4da7ce9f11f652451672db6c697b6f28967abb0b15ec9703ddd549b2ac75c58ea6e4895ddbcafa08c79ae4d999587231da11
|
||||
DIST xapian-omega-1.2.14.tar.gz 627479 SHA256 dd8662cd5c941ffe936d18ae6971dd6bb1abb539b4f8719b93e85c9fc034e412 SHA512 fcebcf6954b55b9ef2ba6e11d37a8e0fd42da84ccdb31c1ca2e887119a4071bfde4a44e170d9123132b00c4a3e813e60dbd55bf8c4aca5a5409d6bd50c34d13f WHIRLPOOL 4c0b42fd0e8a3d36bd82ab55150ee5a2eaeb9d05ca78b20885bbc7d67c64327ca0a148b8379858eafa3463ff194c74aab39e35497380d6fc1cff658bf78aee43
|
||||
DIST xapian-omega-1.2.15.tar.gz 627733 SHA256 3c51bbce59e8d18459983e10046183f42eb5ee79b5143ea612c27f1cd6338b9d SHA512 f14331e05b84318380017853a14331db6e3a0dccf902ba8740e4b87f2ae75cdd4574af29c5b5cd949d1bdcc0ef2d555912be3f9106d3b5c36ac22b5b44e81838 WHIRLPOOL 905128dc233ca646468e82e675964aa384035bad2779386ec8a017ff52c7c3cb67d7636c7f010986a1af8c1635f64910c9c297a5e0feda7dd4ef57b9815fe5f7
|
||||
DIST xapian-omega-1.2.16.tar.xz 417224 SHA256 63df364780b3c5dd0242dccc6d1dc5059292077cc1e2746f38d5f3695ab7fabe SHA512 ad6bcb11c83b048e33a6665603c11d2e3c7358bf13b3d1dca8c20c105f0238e2e4fb56f3f944e1aa19d7159068596e0ec0f348bb10fbde5f187902a0d65638bb WHIRLPOOL fc12ed050932cf755be3ad03b747fbc6bce68bc9254fc45fcc67fa6eaa7a3d4e8d56a82282b8b18be3e9b51f38a8cdc68ca631b6e0cb89f39724f78c50e14a2b
|
||||
DIST xapian-omega-1.2.17.tar.xz 417900 SHA256 0e1b7a41df61d0953159f9fe27ff0c9a584a94c6a7b039f19c07b5454ac8118c SHA512 05a316e20b753308b1beb9b2d1d7a33b93c6f8dfe218d6dfb49496d4cdbc6c5a8cd4a1e8c1402d5eedeadc0c47c77e03ba7b32c46ae7c55463142b02b8cd70f0 WHIRLPOOL 0cd9c521670c5e2043b4929f16b3c4e23b86bc34d440ded458ee3fc343e67dd5059cb79012e4cb7f424f00f4e8f598915354f2c56067b846a72de7e85d2e0ca1
|
||||
DIST xapian-omega-1.2.18.tar.xz 419784 SHA256 528feb8021a52ab06c7833cb9ebacefdb782f036e99e7ed5342046c3a82380c2 SHA512 f22baa0d58a72991404ab7db8dab3ea700d6f4b779641d72f52d2c03633139ec654bd64b59e0a0e7cf603f3ee6e1ff28751aeab2282baf234ee9111a9dbb7533 WHIRLPOOL 8d33d6d9e44bfbc674b1a0a034b6f79b2292249d559e9e7d3e9ddd5b924d9f669784b3dc390429dd6aa53ac3dde946ececc2a82a2b7a62e47713e15d1af708de
|
||||
DIST xapian-omega-1.2.19.tar.xz 419804 SHA256 ca0a9afe2d1ced933408fc0b089c96cd55f90d7b06ae9708eb84294cd77e35ed SHA512 95be43eb25c7da59db7c396879a1bc35df70f0412a66d56c8ef1bc90d7f5930bc8e83fc5e1b3bc8a791fa92ea6e705fb0df5833265f4e95cd8bcce49dda7c976 WHIRLPOOL 101c34c2603d1287685a642b2d9be2aa1eb2779161b1f662f0ba7f91563b319eb0b0dd6def688122df991e56b6fe491cfec5ed93c10ee205948c5885c0d83f2f
|
||||
DIST xapian-omega-1.3.1.tar.gz 649601 SHA256 66295583349d4bf21758df06b17806c74bf8d64ad0723260080520caadbf1ea1 SHA512 d4f9af3f0407d0e7ad817ab08191308616df4dba04e7895d8dc032423bc32371c2583e97e43dee0180de890717ed1b41db467415a7d999982af73589f1de07c2 WHIRLPOOL b712f46f15f40db31181ac8668245a23ce82e9940aa4cac14d82f6ac8722b0b806cc6a5170e6e7cced7ccd22161453005140bcbfee31e5fb4b3bb9ea2cf8e0e3
|
||||
EBUILD xapian-omega-1.2.13.ebuild 858 SHA256 26cad77107387d539895d21e1dab54fa4c351b4bbd431ed39e282ba855e72d14 SHA512 961dd2bd02eb053c7425674e941a08ec793af9ab9d6c5f6ccfd7cd02cb98fce9786fddb5252652eecec457352a626bbaf6daf98a73a3dd7fdc2a978c704226a7 WHIRLPOOL 5eefda0068bec97a1c762e63e3daec358b77c4dca67840f02044da95166546b41f57a4ded7d3b808301b4c228cf3357c483bb779633ccfdf119839c46fbd6151
|
||||
EBUILD xapian-omega-1.2.14.ebuild 875 SHA256 0e9f55331621e7204163bafeec682def3114e525235e4ecf4c0a150ebc19c2fa SHA512 22b68baf375321492b211b4498b26c8cae8440fbc441151c729b35b22dccca83a3f3b9ce7334a9b02bfce21903bfe8afd8d37d25b5dd41804e5e86a5b611f4ca WHIRLPOOL fe81bb650d1abe011f168a90b5f18227d24a3c1a4858c61e009b609900c6f830d7c7337f29923b47a67d8123a847e085025e842be51d1b8123f9927a77dcce85
|
||||
EBUILD xapian-omega-1.2.15.ebuild 888 SHA256 cd2e3df1d6a191b99bfa7f63d6d6a0b368aa03088e99858282f3be6f11d07268 SHA512 c489f227388e284b95294e589a8e1ad649f9175fa07855f493a9af157686724f2e4f95a24b9ab46b51b0bf471e44736f5f6d76283d6aa06dbfe13f973822fa98 WHIRLPOOL 739a878868377f42e533e1ae249ab0bee890c9b0cef521b2f2b1949df28d771fea039791825738be382fe33913f7ddcfbc089072a3ca5edf0454d393e0fa5100
|
||||
EBUILD xapian-omega-1.2.16.ebuild 888 SHA256 9a1d0dc5da132ba0d4d8d0a6021e40c74768eed068b0c77fea2e39285b5f8cd9 SHA512 1b8830830d67b8a07c9a0df25003b03b46029b87ab7c0fcdefdd95548dfcd7d44925ed82d57c3dc9282bf4e0f692f3316197d6cb538aabdb12d405b4a4148199 WHIRLPOOL 5861d95379103e9271d32aa5b93175e4c39cc516156e3ac8b5aa4601f1a4bef1a5ad269c07a9fcae81bbbd957a1781f72437391a266888b633635bb806ae1a11
|
||||
EBUILD xapian-omega-1.2.17.ebuild 875 SHA256 56e12ad2e684982e8bb604a5cb93d8f10923712b62759847cfefc406a79aeb65 SHA512 5c33d4f6ea1d5336a5aff978c30d1bc72c5e8524bdd17437c473a3b952f174b7fb268b9b19e9d51d96beacf3d920aa2b0554bbf14dac508bb647cc5f58330243 WHIRLPOOL a697f5749a1d9cc090e9f7e40c2e4316ef96ece39ba69f963561776c537c9a0027c54d3452ac2f7a9115629f14e89ca7b1445571d99867413fc6d915fa956cb4
|
||||
EBUILD xapian-omega-1.2.18.ebuild 885 SHA256 acb9c343101242188887158c8170fb9b46421de3b6c3a0a303867f0cda3edab6 SHA512 14a6c82037ba7179b1123a79ea6db17860fecff40b6f9b0c794f9d81e04312aebb786e3b6325b2b9449bc3f2e2fb1cdc35b9cfa65382426334dcf324759f488e WHIRLPOOL 145ac642280500bc1551c4d4d6fe4838283d53bced4312a09b8414d8d0cb4ceb3db0406d8f1103eef5af036cdde7880616c15f88d616c38efe5e2d4ef54b4259
|
||||
EBUILD xapian-omega-1.2.19.ebuild 888 SHA256 333496b60736039fc3e419f4023d62abdc7e6b005a4ee19acd641490f5f99a1c SHA512 af5fc8907a281da7bc1d629377606f76475f1a486b35fffbce8bbe8a5af775c29307ac4be448cfbeafe4e0a4cc4005ce4d16fd10d871489808e3e955bfdf3c4a WHIRLPOOL a5b9c9ae128f853ca93def06836ded69674aeb432ce18865dd3321bb80938703c6c4ca7413a36f5c73d99f1d752634f2e3f4687a3557aa39c8db39c6e5b2fa0e
|
||||
EBUILD xapian-omega-1.3.1.ebuild 867 SHA256 bff70ea269a6b76c92736d17950565336b9ec28cebb765c303c40aec5d62c40f SHA512 7c58e677f418f8b23c7501e2c8aabe6e66e37fc8ca0178ccd6a99e647e1ddadf766f8d1fdc3bc28b051bb82e7a2816f7d49ab5cc27c9dfdb37c06420ae2b4ed1 WHIRLPOOL 15913d9992ee5a8e533c317f0f879927dde777c5d80b414c85f3db9bd3b70ea9130f8910637454c45f2473c5b44253b008592a2d9f8600fc1c35ba0904672a04
|
||||
MISC ChangeLog 5900 SHA256 7347d9fabdb54d0c3722ef106db4877ab0904705499dd5a9e57e99ca4e5474af SHA512 390f1dc5f5d3afd3176db79078be78e779b41d977849b3fc1dc712ddafb5c0e7b5e0b0b6991090ab38fe0e5eb05d1160a14bb9425fd1745e650f3bdcff19e0f5 WHIRLPOOL e1d4cd27ec14a1558854b1279c044b2063c52da55d28ac582716564c8d1fce7e0e8cf6c7f507f57cb42fb384e6e70bb0dba4a1a4af763b65c034e0957b9dc3e1
|
||||
MISC ChangeLog 6211 SHA256 85a5650bd057ac30def065559ade7243c8a8d951cb32d5c52dcb006169eb7708 SHA512 18cc858fbb099276b042ff3a807e196d018efa239659741bf023189cc489ae1d19c36e78cc382785ef5b32266f510a66d26e23bf46cfebdfb3c16e20c23532aa WHIRLPOOL 956f126c2030b0f5ee8cf53e8506fce103f9cfd2b72699893e98022d8dc4d5324b8ce3eb9f084e59c7fd5a0a306e7e1c05ee5498bdaa5b4e36aa6d7799a423b7
|
||||
MISC metadata.xml 367 SHA256 e757cf120c1188c0010caaf7449e89deee52d8aa275f4f0c3b9cc0c097d28596 SHA512 e562b4dfbdcf62a3f860cd185dcd5fb2cf4067cb9b6c11c94669027c9cbae94bc437fa63e68b3b982a6bdda624087a60b24a269031fae2f3f975efb3d8e85d44 WHIRLPOOL 1314776082f07f5fdf74d15ad6b5093276b58f47e4dce35c0377e6a7baef0941bf567e43047e4ff80a726e2078d506c9029cd033cba8aeba9110b75cbbffa036
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v2
|
||||
|
||||
iEYEAREIAAYFAlQVXEQACgkQkKaRLQcq0GIQFACgidsq3ZxvCSu67V4A0LgFyTdL
|
||||
iwgAnAm7zRtlGWkO80C854An5wWynF+B
|
||||
=+jI2
|
||||
iQIcBAEBCAAGBQJURsgWAAoJEJOE+m71LUu6YWQP/2oyC4zHyZnMWfl+A177CFb6
|
||||
4ci7et/SQCgjTuZbq+bYuWllH6kcJ3qnWWp7A7+ifoZiCrZBdjTknNwezkeD1Y52
|
||||
SkesM8Pu75F0XaZSaWpsmfjhzC6Pef34xkHTNZK9rpExku+9uIaAHbzLtzbDlSyA
|
||||
/gPtLGHAdLoEAOOOtbLC2z5FsYuNh5+3zgqfYRjIZmA3lRGXcJ1JEhaMh2zKfuKP
|
||||
mOWmZ9sSRSlnacwu/j/B36rCZLXaZqO7VSH0jGX+Y2/aKo8nRbzetErjWIpMIlUo
|
||||
9e/hGz8pNHTz6K9olbCMIF50tz0nrBHvxWj9JJttAQa21GSYFWZMwQItJzsep2LJ
|
||||
98lGZe1Z7L1SLRsoXpWg7cQORefyxgX6GvAaGLH5kRXCK9UIN/ukQjXEXzmb9WFt
|
||||
3kdvWjU9V0ZqbdYiycmaEtDltPLnPTsaTHgP7djKbQKvXgAtwmtARA5vNCj3I60f
|
||||
Na0+9WsKS1v+tJ+Ku/u1kPji7h0+BRSdsEDpIJEy9A3HRHqZausIAZC8a1/xSFjn
|
||||
QwT/gULoMmZ902JPfZUBGVTnx2TTcMFTazy5GPDBpeuJiUiNczM99w+g3MBiDJOH
|
||||
n6SbCoKtN+1VtrIGVWLxqPDOpv3avis3JmamklidEYKiHcpV8GkyldCy63qmTXEe
|
||||
I3oVmXU063qnsveUpOXU
|
||||
=dWim
|
||||
-----END PGP SIGNATURE-----
|
||||
|
@ -1,30 +0,0 @@
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-text/xapian-omega/xapian-omega-1.2.13.ebuild,v 1.6 2013/03/14 06:59:51 ago Exp $
|
||||
|
||||
EAPI="4"
|
||||
|
||||
DESCRIPTION="An application built on Xapian, consisting of indexers and a CGI search frontend"
|
||||
SRC_URI="http://www.oligarchy.co.uk/xapian/${PV}/xapian-omega-${PV}.tar.gz"
|
||||
HOMEPAGE="http://www.xapian.org/"
|
||||
S="${WORKDIR}/xapian-omega-${PV}"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm ~mips ppc ppc64 x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=dev-libs/xapian-${PV}
|
||||
dev-lang/perl
|
||||
dev-libs/libpcre
|
||||
sys-libs/zlib"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_install () {
|
||||
emake DESTDIR="${D}" install
|
||||
|
||||
#move docs to /usr/share/doc/${PF}.
|
||||
mv "${D}/usr/share/doc/xapian-omega" "${D}/usr/share/doc/${PF}"
|
||||
|
||||
dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-text/xapian-omega/xapian-omega-1.2.15.ebuild,v 1.1 2014/01/31 12:35:28 blueness Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
DESCRIPTION="An application built on Xapian, consisting of indexers and a CGI search frontend"
|
||||
SRC_URI="http://www.oligarchy.co.uk/xapian/${PV}/xapian-omega-${PV}.tar.gz"
|
||||
HOMEPAGE="http://www.xapian.org/"
|
||||
S="${WORKDIR}/xapian-omega-${PV}"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=dev-libs/xapian-${PV}
|
||||
dev-lang/perl
|
||||
dev-libs/libpcre
|
||||
sys-libs/zlib"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_install () {
|
||||
emake DESTDIR="${D}" install
|
||||
|
||||
#move docs to /usr/share/doc/${PF}.
|
||||
mv "${D}/usr/share/doc/xapian-omega" "${D}/usr/share/doc/${PF}"
|
||||
|
||||
dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-text/xapian-omega/xapian-omega-1.2.16.ebuild,v 1.1 2014/01/31 12:35:28 blueness Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-text/xapian-omega/xapian-omega-1.2.19.ebuild,v 1.1 2014/10/21 20:49:51 blueness Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
@ -0,0 +1,26 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-db/innotop/innotop-1.9.1.ebuild,v 1.1 2014/10/21 20:20:54 grknight Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit perl-module
|
||||
|
||||
DESCRIPTION="innotop - A text-mode MySQL and InnoDB monitor like mytop, but with many more features"
|
||||
HOMEPAGE="http://code.google.com/p/innotop/"
|
||||
SRC_URI="http://innotop.googlecode.com/files/${P}.tar.gz"
|
||||
|
||||
LICENSE="|| ( Artistic GPL-2 )"
|
||||
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="dev-perl/DBD-mysql
|
||||
dev-perl/TermReadKey
|
||||
virtual/perl-Term-ANSIColor
|
||||
virtual/perl-Time-HiRes"
|
||||
SRC_TEST="do"
|
||||
|
||||
src_install() {
|
||||
perl-module_src_install
|
||||
}
|
@ -1,25 +1,18 @@
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA256
|
||||
|
||||
AUX cabal-install-0.10-ghc-7.2.patch 1404 SHA256 ad6ccdc7b7e5820cc4d991401140a917efe2a2fecf0c2d2acc121da64d5b0797 SHA512 df8027065496f3437ae4ec4be54a495713f7e62908409bb4c4141f4aaad15fd32448edac7adc7adfbd49f2fccdba86795aaeab54729e5039e8df6beada23884a WHIRLPOOL a7881539b277651233d2a9518a39026bce055c803ee0685c962ef8a6f00644a7ff605ac5c7a1fcc0426f604f255c202fcb4ce34f8b22d2e70a91e25e06e6fb58
|
||||
AUX cabal-install-0.13.3-nopref.patch 775 SHA256 a6c5fbf367fd0f5854036a046f1a20e738ff09afeb547e83767522025fe688bc SHA512 e0abaebca3d85bf09cffe76a7cdc0dc4df9ef7d0b13950932cbb0bedaeea59173cbf28b2a89f3f1b9e8ea15cb5c611678cf79ea63ea5a3f5acb4417082de19e5 WHIRLPOOL 186d73bfcc9963a5b88dcc334e9c9d3202aa4376b03b2ee04d5f9d99176b1674763c4678805217afd001de625a3b94c6fce78380a4385bf9aec0d6e26be688a7
|
||||
AUX cabal-install-0.8-nopref.patch 921 SHA256 bab33862d10326fbbc7d9b9978bb70ad4c9f961aa648bbd8d7ff363b5e8a6a24 SHA512 046a83746080189772c34db53953ff1591059ce8faa238a8b6bfe2c00413d59384feb90c99c316d984f98e47af3ffac5c20277ffab2bf94d87f036c9057d4e91 WHIRLPOOL b5dff6fdf9c9bd2feea45d7653fa6bff75f927f5765f67c45915d6b33beff62ebed77f638ee37aa7d45eab7d1f68284c643da062ac80c0432f7c9f70808bd379
|
||||
DIST cabal-install-0.10.2.tar.gz 150699 SHA256 6357c8b984d193a30bb2a05e03dbd551650a0ddea17f7d1033e6564f5b7ff515 SHA512 c49627c1c4e4de73f145bae522e8e09236e9e2d703a0fc908a54856cee755e345b6bc324c85347596724bf25d78a9b3e0c56d5bb2204f306cf740594436e01cc WHIRLPOOL 895490e5fb7981da0f56a1555e7eb02571b9f6e18bb6ca9a9483cacc7e829606ca48c12890b40071c4f23b715bbef14869d035757ed66712901a5df2a877e8b5
|
||||
DIST cabal-install-0.14.0.tar.gz 193187 SHA256 f4f2b50269ff59d67b5f3d82d50f7706b6bad1117295a7c81f32bbe72add5bd8 SHA512 36bfe98c7b7c519a64cbb7e099fa434ba18b393bd591004835f80a7de450eddd58905d291e0d5eefbdfd6748eedb9bbf9ab43462e26e41741ed758d81fae2983 WHIRLPOOL 7fbbd8dc99d2b3cdd0e63f74f686189480e21200be2dd3763254bcc91531e6a64da1f74af23c8d257a17e78f15fd33cced1aec4fdd24e0fbe70cfb16f2a2df98
|
||||
DIST cabal-install-1.16.0.2.tar.gz 201232 SHA256 66dfacc9f33e668e56904072cadb8a36bd9d6522ba5464c6a36a5de7e65c5698 SHA512 3fa29de625741d243778bd7309720fe492ee83ac0d9197155d3467bae956839cde4e387bd56d6633a1723197d81cd9104198ea7ec7fe42ccc9a86a5b2ed5a1df WHIRLPOOL 4700dffed322de02c2793d04d263d9f1dd76df9cb6e551c292037f92f5d3c307185a1f236e9450e4ce3e1da7bed410d29408b3864fa2f83913147f8aa98504ee
|
||||
DIST cabal-install-1.18.0.2.tar.gz 253711 SHA256 4ca4064abc042d8ab2e872e8629e334501572568d19e95f466e31a44eef7092a SHA512 680ae8ee03d3c95caa4dfc724b11b9148d03f03addee02b83a10d9a6cb8b75719463598c9a4c461a30f9114daa6c1ec34c90dc22c5db6a851152f743dad3cde8 WHIRLPOOL 5de2a029d24e97a970cad38c9b7ad68abd0282f8d12a5c0963f8f491e5eccfe7792c183036ea03de6a42264c88d206849ac7161b4d2e7cecb2720a679019d461
|
||||
DIST cabal-install-1.18.0.3.tar.gz 254044 SHA256 81b85757944b6ee0dd30396bf5851d123894caa57979310d44943b72cdaf0140 SHA512 54c3f9970135447689360b8c185ad5e618461e2fb9dc9089f420f26ccc73d92da927dc8cf32300dd736492bf78e650d92d715b4bf17aeca736499756bc84124c WHIRLPOOL 0c7637b1bde2c3cd68b59ecb9bd2d5c51fa05f4b0d5fa43a4b8931202bb12380e020706bd44a0349dffb718a9b249e1eba493a397c539187feb4623fa304e094
|
||||
EBUILD cabal-install-0.10.2-r2.ebuild 1086 SHA256 e76a9abff0ba806053343a052ce771f31567b9a980b8f49171b5c4c786673d49 SHA512 c6ca47becdabfb278452ae525cfe50ab34aaeea76abfec7830ee2e0949d87213bd11fed8743f257792a7dc88e052fcbc5632023929babf5d9104cc55a64777b0 WHIRLPOOL b6daedf237c800847a9f2cd4257dc3981403aec5869229958d85b2776709bc79ca3a7a451aa175953f0e64f36d3c68749e3d760bb00624fe2f8df51f14429ccd
|
||||
EBUILD cabal-install-0.14.0.ebuild 1159 SHA256 6455983356435398e21128e20f9135e869005e579e720abd73d003a022e39d10 SHA512 ee99516e5c26d76b14c77af4e0cff3cc97127c8a7f83b264d447154d6cdcc9cca06817419bd53a623ff7586949a02cf0dbc286308201231224f0d67785f8ad44 WHIRLPOOL 82d7cd552915292de79dc018d569c42e36ae5d702c44740c3878503b710398bd93e93cbf3021e6e919e8838be3bc6175b8e296bb1b07ecf8efa2f60e19e84fd0
|
||||
EBUILD cabal-install-1.16.0.2.ebuild 1169 SHA256 938ca58593b1e606f09fb2c52cfdcbe10e5b15006b011b73b16c8462bb2c228b SHA512 ea6a025ef310fb4dfa58af6971515fa20e529330251948ed354e83c2356825a2d781bad252d30d4d6ba0606d0b71b9df6d833aa4c91f718eeedf31b78155b905 WHIRLPOOL 4b35c1ad526b44078ac70d001d5e69839a85d8065ddb87f3a4f854e1cf3d0628643e5f7e319766919fe8f6d06df3685c003e759eb17ec5bbbe6cead6d53801bd
|
||||
EBUILD cabal-install-1.18.0.2.ebuild 1555 SHA256 6405db79fd4122726b0b8a93aed87ff91af7377db3281d1f17e77509034cb611 SHA512 cf689f4df1d7ede7c4e9d7fad83bad6f6e4184886a944c9bc2064d9d299e0ffbbf8f07ad7aff705e63654d5ca8c12aa5ef6f16d5c0731e470941be247f71bb7d WHIRLPOOL 9dc3ee6ab7125b7e58a5b5125a8eafd2d7c7bf3940a16bb820566852421c408758f5f009e6dda35caf38a56917fae1baca2648f59ca8d4fab0caaeae679899a9
|
||||
EBUILD cabal-install-1.18.0.3-r1.ebuild 1551 SHA256 94d03e7442daf1c6b73628319f1a0617c8d125161035fa820bfd5dc84ebf7163 SHA512 e5f23ecf1a440a9ed3c59694c73c96ffea434887049dd5f2b24e6f8d9c66877da00d1a1a43a49ddbc34a64bae2c86bc85f55606b3730ddedba30bc30af46a482 WHIRLPOOL 7bc884618eb075c500bf33bfe29857299280e7f94e7333d9932cd88ff55340736b4e8eb943839a18517a20e62782e42411e9cfcb2a8183c1991ca0a8a8a51219
|
||||
EBUILD cabal-install-1.18.0.3.ebuild 1555 SHA256 247de8f451ad6d8bfafcc80cb3c5bd79ab4eea5900eb26f623db7b506252b8b6 SHA512 f69817b2674ef9d6a6f0a2c441552c819e6f5381f87006bfe47b57d912859390cebb251d418860c195d0841cb9648e5cb2c42b74a61cf6c23e421fb18721e801 WHIRLPOOL 1d3fce83307b9b827d6357408468e563b6a18596dbc4f4e592111efbc528b9adf8999f08c3302f910c5042aebd469254a7d8f2a22f002d9bac0debf8c4701ebf
|
||||
MISC ChangeLog 3690 SHA256 ce326d2b2b5b6f33ace5f57bf87a1f8bc91f147f2d7090de39491b74f2caecee SHA512 177d1b2f9bb7565772bd851777cbe0bf881fecad3bbc6f8d38fd6e2b3da1a12aaf2b9416e2a1e54631a6ad36a70ad736a41e01012f739e67e545ace651100cc0 WHIRLPOOL 938b891b3495078ac9d52d52c56c8f76afdb279a934a447135a18c12ff3ed47c98d2be8051c76f3369d4ead88e6e7aff715d07397a7c57bc87342e4abc9bf26e
|
||||
MISC ChangeLog 4166 SHA256 bd6b5f8cc8bc46846df7f76b97149ad56b72083c42f19995481f847894217394 SHA512 ed8f55943812cfbd240e1b44de0d28696c6b358889dd7a27849bea0c08bcdcab6695dbcbd4f98d36b34d0e403e21a93d8bb7c3e89362978fc016370072874863 WHIRLPOOL 05533dcfae5dad357121fffe5e2da9f6c2ba4c0d9d15a7ad75f1ea8035d66208f55ab4b6d4fcef2e72a3926d3623b4d5e1303108f64cefd319c8cd2da78ccbb6
|
||||
MISC metadata.xml 500 SHA256 beb669bf2140567502e94626581424742f7266de7a6562e781cbc3bb9c917ac9 SHA512 52c7ad721365f6b59d8e10ab2fda4794d61e12b50479413b2cb44ca8ffa0d96f320b081776f80321c6cf0286b5d82087230d5913b89415eeb2cf11f80fb6e0c0 WHIRLPOOL 71b8c855078674ebd268790355af5f36b1b3179ed7bacdb4a70dc491f22bf593c0722150e510815f52294cac7ef94278620d68945e90895eaa379dc34c676635
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v2.0.22 (GNU/Linux)
|
||||
Version: GnuPG v2
|
||||
|
||||
iEYEAREIAAYFAlPSIPMACgkQcaHudmEf86rAZgCfeh82fnw24mOLf05AMkiuCMO/
|
||||
7RgAn24Zoax6mfE4a7DPCCRtPRqEg367
|
||||
=nPAm
|
||||
iEYEAREIAAYFAlRG3ngACgkQcaHudmEf86oP8gCfRNiYJJtFoeDHdD2xXGwmHK6j
|
||||
zw8An2SQq//06BUilHDy1Z1Mo4QP2Eiz
|
||||
=Zhqw
|
||||
-----END PGP SIGNATURE-----
|
||||
|
@ -1,40 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cabal-install/cabal-install-0.10.2-r2.ebuild,v 1.5 2014/07/25 09:16:27 slyfox Exp $
|
||||
|
||||
# ebuild generated by hackport 0.2.13
|
||||
|
||||
EAPI="3"
|
||||
|
||||
CABAL_FEATURES="bin"
|
||||
inherit haskell-cabal bash-completion-r1 eutils
|
||||
|
||||
DESCRIPTION="The command-line interface for Cabal and Hackage"
|
||||
HOMEPAGE="http://www.haskell.org/cabal/"
|
||||
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc64 ~sparc ~x86"
|
||||
IUSE="+noprefs"
|
||||
|
||||
RDEPEND=">=dev-haskell/cabal-1.10.1
|
||||
>=dev-lang/ghc-6.10.1"
|
||||
DEPEND="${RDEPEND}
|
||||
>=dev-haskell/http-4000.0.2 <dev-haskell/http-4000.3
|
||||
dev-haskell/network
|
||||
>=dev-haskell/random-1 <dev-haskell/random-1.1
|
||||
=dev-haskell/zlib-0.5*"
|
||||
|
||||
src_prepare() {
|
||||
if use noprefs; then
|
||||
epatch "${FILESDIR}/${PN}"-0.8-nopref.patch
|
||||
fi
|
||||
epatch "${FILESDIR}/${PN}"-0.10-ghc-7.2.patch
|
||||
}
|
||||
|
||||
src_install() {
|
||||
haskell-cabal_src_install
|
||||
|
||||
newbashcomp "${S}/bash-completion/cabal" ${PN}
|
||||
}
|
@ -1,41 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cabal-install/cabal-install-0.14.0.ebuild,v 1.4 2014/07/25 09:16:27 slyfox Exp $
|
||||
|
||||
# ebuild generated by hackport 0.2.17.9999
|
||||
|
||||
EAPI=4
|
||||
|
||||
CABAL_FEATURES="bin"
|
||||
inherit haskell-cabal bash-completion-r1 eutils
|
||||
|
||||
DESCRIPTION="The command-line interface for Cabal and Hackage"
|
||||
HOMEPAGE="http://www.haskell.org/cabal/"
|
||||
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc64 ~sparc ~x86"
|
||||
IUSE="+noprefs"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}
|
||||
>=dev-haskell/cabal-1.14.0 <dev-haskell/cabal-1.15
|
||||
>=dev-haskell/http-4000.0.2 <dev-haskell/http-4001
|
||||
>=dev-haskell/mtl-2.0 <dev-haskell/mtl-3
|
||||
>=dev-haskell/network-1 <dev-haskell/network-3
|
||||
>=dev-haskell/random-1 <dev-haskell/random-1.1
|
||||
>=dev-haskell/zlib-0.4 <dev-haskell/zlib-0.6
|
||||
>=dev-lang/ghc-6.10.1"
|
||||
|
||||
src_prepare() {
|
||||
if use noprefs; then
|
||||
epatch "${FILESDIR}/${PN}"-0.13.3-nopref.patch
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
haskell-cabal_src_install
|
||||
|
||||
newbashcomp "${S}/bash-completion/cabal" ${PN}
|
||||
}
|
@ -1,46 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cabal-install/cabal-install-1.16.0.2.ebuild,v 1.3 2014/07/25 09:16:27 slyfox Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
# ebuild generated by hackport 0.3.9999
|
||||
|
||||
CABAL_FEATURES="bin"
|
||||
inherit haskell-cabal bash-completion-r1 eutils
|
||||
|
||||
DESCRIPTION="The command-line interface for Cabal and Hackage"
|
||||
HOMEPAGE="http://www.haskell.org/cabal/"
|
||||
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc64 ~sparc ~x86"
|
||||
IUSE="+noprefs"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}
|
||||
>=dev-haskell/cabal-1.16.0
|
||||
<dev-haskell/cabal-1.18
|
||||
>=dev-haskell/http-4000.0.2
|
||||
<dev-haskell/http-4001
|
||||
>=dev-haskell/mtl-2.0
|
||||
<dev-haskell/mtl-3
|
||||
>=dev-haskell/network-1
|
||||
<dev-haskell/network-3
|
||||
>=dev-haskell/random-1
|
||||
<dev-haskell/random-1.1
|
||||
>=dev-haskell/zlib-0.4
|
||||
<dev-haskell/zlib-0.6
|
||||
>=dev-lang/ghc-6.10.4"
|
||||
src_prepare() {
|
||||
if use noprefs; then
|
||||
epatch "${FILESDIR}/${PN}"-0.13.3-nopref.patch
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
haskell-cabal_src_install
|
||||
|
||||
newbashcomp "${S}/bash-completion/cabal" ${PN}
|
||||
}
|
@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cabal-install/cabal-install-1.18.0.3-r1.ebuild,v 1.1 2014/10/21 22:28:24 slyfox Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
# ebuild generated by hackport 0.3.6.9999
|
||||
|
||||
CABAL_FEATURES="bin test-suite"
|
||||
inherit bash-completion-r1 eutils haskell-cabal
|
||||
|
||||
DESCRIPTION="The command-line interface for Cabal and Hackage"
|
||||
HOMEPAGE="http://www.haskell.org/cabal/"
|
||||
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
|
||||
IUSE="+noprefs"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}
|
||||
>=dev-haskell/cabal-1.18.0 <dev-haskell/cabal-1.19
|
||||
>=dev-haskell/http-4000.0.8 <dev-haskell/http-4001
|
||||
>=dev-haskell/mtl-2.0 <dev-haskell/mtl-3
|
||||
>=dev-haskell/network-1 <dev-haskell/network-3
|
||||
>=dev-haskell/random-1 <dev-haskell/random-1.1
|
||||
>=dev-haskell/stm-2.0 <dev-haskell/stm-3
|
||||
>=dev-haskell/zlib-0.5.3 <dev-haskell/zlib-0.6
|
||||
>=dev-lang/ghc-6.12.1
|
||||
test? ( dev-haskell/hunit
|
||||
>=dev-haskell/quickcheck-2.5
|
||||
dev-haskell/test-framework
|
||||
dev-haskell/test-framework-hunit
|
||||
>=dev-haskell/test-framework-quickcheck2-0.3 )
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
if use noprefs; then
|
||||
epatch "${FILESDIR}/${PN}"-0.13.3-nopref.patch
|
||||
fi
|
||||
|
||||
# no chance to link to -threaded on ppc64, alpha and others
|
||||
# who use UNREG, not only ARM
|
||||
if ! ghc-supports-threaded-runtime; then
|
||||
cabal_chdeps '-threaded' ' '
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
haskell-cabal_src_install
|
||||
|
||||
dobashcomp "${S}/bash-completion/cabal"
|
||||
}
|
@ -1,36 +0,0 @@
|
||||
diff --git a/cabal-install.cabal b/cabal-install.cabal
|
||||
index e570d60..7bfd8f6 100644
|
||||
--- a/cabal-install.cabal
|
||||
+++ b/cabal-install.cabal
|
||||
@@ -93,10 +93,10 @@ Executable cabal
|
||||
Paths_cabal_install
|
||||
|
||||
build-depends: base >= 2 && < 5,
|
||||
- Cabal >= 1.10.1 && < 1.11,
|
||||
+ Cabal >= 1.10.1 && < 1.13,
|
||||
filepath >= 1.0 && < 1.3,
|
||||
network >= 1 && < 3,
|
||||
- HTTP >= 4000.0.2 && < 4001,
|
||||
+ HTTP >= 4000.0.2 && < 4003,
|
||||
zlib >= 0.4 && < 0.6,
|
||||
time >= 1.1 && < 1.3
|
||||
|
||||
@@ -104,9 +104,9 @@ Executable cabal
|
||||
build-depends: base < 3
|
||||
else
|
||||
build-depends: base >= 3,
|
||||
- process >= 1 && < 1.1,
|
||||
+ process >= 1 && < 1.2,
|
||||
directory >= 1 && < 1.2,
|
||||
- pretty >= 1 && < 1.1,
|
||||
+ pretty >= 1 && < 1.2,
|
||||
random >= 1 && < 1.1,
|
||||
containers >= 0.1 && < 0.5,
|
||||
array >= 0.1 && < 0.4,
|
||||
@@ -121,5 +121,5 @@ Executable cabal
|
||||
build-depends: Win32 >= 2 && < 3
|
||||
cpp-options: -DWIN32
|
||||
else
|
||||
- build-depends: unix >= 1.0 && < 2.5
|
||||
+ build-depends: unix >= 1.0 && < 2.6
|
||||
extensions: CPP
|
@ -1,19 +0,0 @@
|
||||
diff -rN -u old-cabal-install-0.8/Distribution/Client/IndexUtils.hs new-cabal-install-0.8/Distribution/Client/IndexUtils.hs
|
||||
--- old-cabal-install-0.8/Distribution/Client/IndexUtils.hs 2010-06-14 22:16:58.249000098 +0300
|
||||
+++ new-cabal-install-0.8/Distribution/Client/IndexUtils.hs 2010-06-14 22:16:58.292000097 +0300
|
||||
@@ -168,10 +168,15 @@
|
||||
|
||||
extractPrefs :: Tar.Entry -> Maybe [Dependency]
|
||||
extractPrefs entry = case Tar.entryContent entry of
|
||||
+ {-
|
||||
+ -- get rid of hackage's preferred-versions
|
||||
+ -- I'd like to have bleeding-edge packages in system and I don't fear of
|
||||
+ -- broken packages with improper depends
|
||||
Tar.NormalFile content _
|
||||
| takeFileName (Tar.entryPath entry) == "preferred-versions"
|
||||
-> Just . parsePreferredVersions
|
||||
. BS.Char8.unpack $ content
|
||||
+ -}
|
||||
_ -> Nothing
|
||||
|
||||
handleNotFound action = catch action $ \e -> if isDoesNotExistError e
|
@ -0,0 +1,25 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cereal/cereal-0.4.1.0.ebuild,v 1.1 2014/10/21 22:19:46 slyfox Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
# ebuild generated by hackport 0.4.3
|
||||
|
||||
CABAL_FEATURES="lib profile haddock hoogle hscolour"
|
||||
inherit haskell-cabal
|
||||
|
||||
DESCRIPTION="A binary serialization library"
|
||||
HOMEPAGE="http://hackage.haskell.org/package/cereal"
|
||||
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0/${PV}"
|
||||
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=dev-lang/ghc-7.4.1:=
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
>=dev-haskell/cabal-1.6
|
||||
"
|
@ -0,0 +1,307 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-java/oracle-jdk-bin/oracle-jdk-bin-1.8.0.25.ebuild,v 1.1 2014/10/21 12:35:39 caster Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
inherit eutils java-vm-2 prefix versionator
|
||||
|
||||
# This URIs need to be updated when bumping!
|
||||
JDK_URI="http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html"
|
||||
JCE_URI="http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html"
|
||||
|
||||
# This is a list of archs supported by this update.
|
||||
# Currently arm comes and goes.
|
||||
AT_AVAILABLE=( amd64 x86 x64-solaris sparc64-solaris x86-macos x64-macos )
|
||||
|
||||
# Sometimes some or all of the demos are missing, this is to not have to rewrite half
|
||||
# the ebuild when it happens.
|
||||
DEMOS_AVAILABLE=( amd64 x86 x64-solaris sparc64-solaris x86-macos x64-macos )
|
||||
|
||||
if [[ "$(get_version_component_range 4)" == 0 ]] ; then
|
||||
S_PV="$(get_version_component_range 1-3)"
|
||||
else
|
||||
MY_PV_EXT="u$(get_version_component_range 4)"
|
||||
S_PV="$(get_version_component_range 1-4)"
|
||||
fi
|
||||
|
||||
MY_PV="$(get_version_component_range 2)${MY_PV_EXT}"
|
||||
|
||||
AT_amd64="jdk-${MY_PV}-linux-x64.tar.gz"
|
||||
AT_arm="jdk-${MY_PV}-linux-arm-vfp-hflt.tar.gz"
|
||||
AT_x86="jdk-${MY_PV}-linux-i586.tar.gz"
|
||||
AT_x64_solaris="jdk-${MY_PV}-solaris-x64.tar.gz"
|
||||
AT_sparc64_solaris="${AT_sparc_solaris} jdk-${MY_PV}-solaris-sparcv9.tar.gz"
|
||||
AT_x86_macos="jdk-${MY_PV}-macosx-x64.dmg"
|
||||
AT_x64_macos="jdk-${MY_PV}-macosx-x64.dmg"
|
||||
|
||||
DEMOS_amd64="jdk-${MY_PV}-linux-x64-demos.tar.gz"
|
||||
DEMOS_arm="jdk-${MY_PV}-linux-arm-vfp-hflt-demos.tar.gz"
|
||||
DEMOS_x86="jdk-${MY_PV}-linux-i586-demos.tar.gz"
|
||||
DEMOS_x64_solaris="jdk-${MY_PV}-solaris-x64-demos.tar.gz"
|
||||
DEMOS_sparc64_solaris="jdk-${MY_PV}-solaris-sparcv9-demos.tar.gz"
|
||||
DEMOS_x86_macos="jdk-${MY_PV}-macosx-x86_64-demos.zip"
|
||||
DEMOS_x64_macos="jdk-${MY_PV}-macosx-x86_64-demos.zip"
|
||||
|
||||
JCE_DIR="UnlimitedJCEPolicyJDK8"
|
||||
JCE_FILE="jce_policy-8.zip"
|
||||
|
||||
DESCRIPTION="Oracle's Java SE Development Kit"
|
||||
HOMEPAGE="http://www.oracle.com/technetwork/java/javase/"
|
||||
for d in "${AT_AVAILABLE[@]}"; do
|
||||
SRC_URI+=" ${d}? ( $(eval "echo \${$(echo AT_${d/-/_})}")"
|
||||
if has ${d} "${DEMOS_AVAILABLE[@]}"; then
|
||||
SRC_URI+=" examples? ( $(eval "echo \${$(echo DEMOS_${d/-/_})}") )"
|
||||
fi
|
||||
SRC_URI+=" )"
|
||||
done
|
||||
unset d
|
||||
SRC_URI+=" jce? ( ${JCE_FILE} )"
|
||||
|
||||
LICENSE="Oracle-BCLA-JavaSE examples? ( BSD )"
|
||||
SLOT="1.8"
|
||||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc64-solaris ~x64-solaris"
|
||||
IUSE="+X alsa aqua derby doc examples +fontconfig jce nsplugin pax_kernel selinux source"
|
||||
|
||||
RESTRICT="fetch strip"
|
||||
QA_PREBUILT="*"
|
||||
|
||||
COMMON_DEP="
|
||||
selinux? ( sec-policy/selinux-java )"
|
||||
RDEPEND="${COMMON_DEP}
|
||||
X? ( !aqua? (
|
||||
x11-libs/libX11:0
|
||||
x11-libs/libXext:0
|
||||
x11-libs/libXi:0
|
||||
x11-libs/libXrender:0
|
||||
x11-libs/libXtst:0
|
||||
) )
|
||||
alsa? ( media-libs/alsa-lib:0 )
|
||||
doc? ( dev-java/java-sdk-docs:${SLOT} )
|
||||
fontconfig? ( media-libs/fontconfig:1.0 )
|
||||
!prefix? ( sys-libs/glibc:* )"
|
||||
# A PaX header isn't created by scanelf, so depend on paxctl to avoid fallback
|
||||
# marking. See bug #427642.
|
||||
DEPEND="${COMMON_DEP}
|
||||
jce? ( app-arch/unzip:0 )
|
||||
examples? ( kernel_linux? ( app-arch/unzip:0 ) )
|
||||
pax_kernel? ( sys-apps/paxctl:0 )"
|
||||
|
||||
S="${WORKDIR}/jdk"
|
||||
|
||||
check_tarballs_available() {
|
||||
local uri=$1; shift
|
||||
local dl= unavailable=
|
||||
for dl in "${@}" ; do
|
||||
[[ ! -f "${DISTDIR}/${dl}" ]] && unavailable+=" ${dl}"
|
||||
done
|
||||
|
||||
if [[ -n "${unavailable}" ]] ; then
|
||||
if [[ -z ${_check_tarballs_available_once} ]] ; then
|
||||
einfo
|
||||
einfo "Oracle requires you to download the needed files manually after"
|
||||
einfo "accepting their license through a javascript capable web browser."
|
||||
einfo
|
||||
_check_tarballs_available_once=1
|
||||
fi
|
||||
einfo "Download the following files:"
|
||||
for dl in ${unavailable}; do
|
||||
einfo " ${dl}"
|
||||
done
|
||||
einfo "at '${uri}'"
|
||||
einfo "and move them to '${DISTDIR}'"
|
||||
einfo
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_nofetch() {
|
||||
local distfiles=( $(eval "echo \${$(echo AT_${ARCH/-/_})}") )
|
||||
if use examples && has ${ARCH} "${DEMOS_AVAILABLE[@]}"; then
|
||||
distfiles+=( $(eval "echo \${$(echo DEMOS_${ARCH/-/_})}") )
|
||||
fi
|
||||
check_tarballs_available "${JDK_URI}" "${distfiles[@]}"
|
||||
|
||||
use jce && check_tarballs_available "${JCE_URI}" "${JCE_FILE}"
|
||||
}
|
||||
|
||||
src_unpack() {
|
||||
if use arm ; then
|
||||
# Special case for ARM soft VS hard float.
|
||||
#if [[ ${CHOST} == *-hardfloat-* ]] ; then
|
||||
unpack jdk-${MY_PV}-linux-arm-vfp-hflt.tar.gz
|
||||
use examples && unpack jdk-${MY_PV}-linux-arm-vfp-hflt-demos.tar.gz
|
||||
#else
|
||||
# unpack jdk-${MY_PV}-linux-arm-vfp-sflt.tar.gz
|
||||
# use examples && unpack jdk-${MY_PV}-linux-arm-vfp-sflt-demos.tar.gz
|
||||
#fi
|
||||
use jce && unpack ${JCE_FILE}
|
||||
elif use x86-macos || use x64-macos ; then
|
||||
pushd "${T}" > /dev/null
|
||||
mkdir dmgmount
|
||||
hdiutil attach "${DISTDIR}"/jdk-${MY_PV}-macosx-x64.dmg \
|
||||
-mountpoint "${T}"/dmgmount
|
||||
local update=$(get_version_component_range 4)
|
||||
[[ ${#update} == 1 ]] && update="0${update}"
|
||||
xar -xf dmgmount/JDK\ $(get_version_component_range 2)\ Update\ ${update}.pkg
|
||||
hdiutil detach "${T}"/dmgmount
|
||||
zcat jdk1${MY_PV%u*}0${update}.pkg/Payload | cpio -idv
|
||||
mv Contents/Home "${WORKDIR}"/jdk${MY_PV}
|
||||
popd > /dev/null
|
||||
else
|
||||
default
|
||||
fi
|
||||
|
||||
# Upstream is changing their versioning scheme every release around 1.8.0.*;
|
||||
# to stop having to change it over and over again, just wildcard match and
|
||||
# live a happy life instead of trying to get this new jdk1.8.0_05 to work.
|
||||
mv "${WORKDIR}"/jdk* "${S}" || die
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
if use jce ; then
|
||||
mv "${WORKDIR}"/${JCE_DIR} "${S}"/jre/lib/security/ || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
local dest="/opt/${P}"
|
||||
local ddest="${ED}${dest}"
|
||||
|
||||
# Create files used as storage for system preferences.
|
||||
mkdir jre/.systemPrefs || die
|
||||
touch jre/.systemPrefs/.system.lock || die
|
||||
touch jre/.systemPrefs/.systemRootModFile || die
|
||||
|
||||
# We should not need the ancient plugin for Firefox 2 anymore, plus it has
|
||||
# writable executable segments
|
||||
if use x86 ; then
|
||||
rm -vf {,jre/}lib/i386/libjavaplugin_oji.so \
|
||||
{,jre/}lib/i386/libjavaplugin_nscp*.so
|
||||
rm -vrf jre/plugin/i386
|
||||
fi
|
||||
|
||||
# Without nsplugin flag, also remove the new plugin
|
||||
local arch=${ARCH};
|
||||
use x86 && arch=i386;
|
||||
if ! use nsplugin ; then
|
||||
rm -vf {,jre/}lib/${arch}/libnpjp2.so \
|
||||
{,jre/}lib/${arch}/libjavaplugin_jni.so
|
||||
fi
|
||||
|
||||
dodoc COPYRIGHT
|
||||
dohtml README.html
|
||||
|
||||
dodir "${dest}"
|
||||
cp -pPR bin include jre lib man "${ddest}" || die
|
||||
|
||||
if use derby ; then
|
||||
cp -pPR db "${ddest}" || die
|
||||
fi
|
||||
|
||||
if use examples && has ${ARCH} "${DEMOS_AVAILABLE[@]}" ; then
|
||||
cp -pPR demo sample "${ddest}" || die
|
||||
fi
|
||||
|
||||
if use jce ; then
|
||||
dodir "${dest}"/jre/lib/security/strong-jce
|
||||
mv "${ddest}"/jre/lib/security/US_export_policy.jar \
|
||||
"${ddest}"/jre/lib/security/strong-jce || die
|
||||
mv "${ddest}"/jre/lib/security/local_policy.jar \
|
||||
"${ddest}"/jre/lib/security/strong-jce || die
|
||||
dosym "${dest}"/jre/lib/security/${JCE_DIR}/US_export_policy.jar \
|
||||
"${dest}"/jre/lib/security/US_export_policy.jar
|
||||
dosym "${dest}"/jre/lib/security/${JCE_DIR}/local_policy.jar \
|
||||
"${dest}"/jre/lib/security/local_policy.jar
|
||||
fi
|
||||
|
||||
if use nsplugin ; then
|
||||
install_mozilla_plugin "${dest}"/jre/lib/${arch}/libnpjp2.so
|
||||
fi
|
||||
|
||||
if use source ; then
|
||||
cp -p src.zip "${ddest}" || die
|
||||
fi
|
||||
|
||||
if use !x86-macos && use !x64-macos ; then
|
||||
# Install desktop file for the Java Control Panel.
|
||||
# Using ${PN}-${SLOT} to prevent file collision with jre and or
|
||||
# other slots. make_desktop_entry can't be used as ${P} would
|
||||
# end up in filename.
|
||||
newicon jre/lib/desktop/icons/hicolor/48x48/apps/sun-jcontrol.png \
|
||||
sun-jcontrol-${PN}-${SLOT}.png || die
|
||||
sed -e "s#Name=.*#Name=Java Control Panel for Oracle JDK ${SLOT}#" \
|
||||
-e "s#Exec=.*#Exec=/opt/${P}/jre/bin/jcontrol#" \
|
||||
-e "s#Icon=.*#Icon=sun-jcontrol-${PN}-${SLOT}#" \
|
||||
-e "s#Application;##" \
|
||||
-e "/Encoding/d" \
|
||||
jre/lib/desktop/applications/sun_java.desktop \
|
||||
> "${T}"/jcontrol-${PN}-${SLOT}.desktop || die
|
||||
domenu "${T}"/jcontrol-${PN}-${SLOT}.desktop
|
||||
fi
|
||||
|
||||
# Prune all fontconfig files so libfontconfig will be used and only install
|
||||
# a Gentoo specific one if fontconfig is disabled.
|
||||
# http://docs.oracle.com/javase/8/docs/technotes/guides/intl/fontconfig.html
|
||||
rm "${ddest}"/jre/lib/fontconfig.*
|
||||
if ! use fontconfig ; then
|
||||
cp "${FILESDIR}"/fontconfig.Gentoo.properties "${T}"/fontconfig.properties || die
|
||||
eprefixify "${T}"/fontconfig.properties
|
||||
insinto "${dest}"/jre/lib/
|
||||
doins "${T}"/fontconfig.properties
|
||||
fi
|
||||
|
||||
# This needs to be done before CDS - #215225
|
||||
java-vm_set-pax-markings "${ddest}"
|
||||
|
||||
# see bug #207282
|
||||
einfo "Creating the Class Data Sharing archives"
|
||||
case ${ARCH} in
|
||||
arm|ia64)
|
||||
${ddest}/bin/java -client -Xshare:dump || die
|
||||
;;
|
||||
x86)
|
||||
${ddest}/bin/java -client -Xshare:dump || die
|
||||
# limit heap size for large memory on x86 #467518
|
||||
# this is a workaround and shouldn't be needed.
|
||||
${ddest}/bin/java -server -Xms64m -Xmx64m -Xshare:dump || die
|
||||
;;
|
||||
*)
|
||||
${ddest}/bin/java -server -Xshare:dump || die
|
||||
;;
|
||||
esac
|
||||
|
||||
# Remove empty dirs we might have copied.
|
||||
find "${D}" -type d -empty -exec rmdir -v {} + || die
|
||||
|
||||
if use x86-macos || use x64-macos ; then
|
||||
# Fix miscellaneous install_name issues.
|
||||
pushd "${ddest}"/jre/lib > /dev/null || die
|
||||
local lib needed nlib npath
|
||||
for lib in \
|
||||
decora_sse glass jfx{media,webkit} \
|
||||
javafx_{font,font_t2k,iio} prism_{common,es2,sw} \
|
||||
; do
|
||||
lib=lib${lib}.dylib
|
||||
einfo "Fixing self-reference of ${lib}"
|
||||
install_name_tool \
|
||||
-id "${EPREFIX}${dest}/jre/lib/${lib}" \
|
||||
"${lib}"
|
||||
done
|
||||
popd > /dev/null
|
||||
|
||||
# TODO: This reads "jdk1{5,6}", what about "jdk1{7,8}"?
|
||||
for nlib in jdk1{5,6} ; do
|
||||
install_name_tool -change \
|
||||
/usr/lib/libgcc_s_ppc64.1.dylib \
|
||||
$($(tc-getCC) -print-file-name=libgcc_s_ppc64.1.dylib) \
|
||||
"${ddest}"/lib/visualvm/profiler/lib/deployed/${nlib}/mac/libprofilerinterface.jnilib
|
||||
install_name_tool -id \
|
||||
"${EPREFIX}${dest}"/lib/visualvm/profiler/lib/deployed/${nlib}/mac/libprofilerinterface.jnilib \
|
||||
"${ddest}"/lib/visualvm/profiler/lib/deployed/${nlib}/mac/libprofilerinterface.jnilib
|
||||
done
|
||||
fi
|
||||
|
||||
set_java_env
|
||||
java-vm_revdep-mask
|
||||
java-vm_sandbox-predict /dev/random /proc/self/coredump_filter
|
||||
}
|
@ -0,0 +1,51 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/geoip-1.6.2-r1.ebuild,v 1.1 2014/10/21 09:09:38 jer Exp $
|
||||
|
||||
EAPI=5
|
||||
inherit autotools eutils
|
||||
|
||||
DESCRIPTION="easily lookup countries by IP addresses, even when Reverse DNS entries don't exist"
|
||||
HOMEPAGE="https://github.com/maxmind/geoip-api-c"
|
||||
SRC_URI="
|
||||
https://github.com/maxmind/${PN}-api-c/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
||||
"
|
||||
|
||||
# GPL-2 for md5.c - part of libGeoIPUpdate, MaxMind for GeoLite Country db
|
||||
LICENSE="LGPL-2.1 GPL-2 MaxMind2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos"
|
||||
IUSE="static-libs"
|
||||
RESTRICT="test"
|
||||
|
||||
DEPEND="net-misc/wget"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
S="${WORKDIR}/${PN}-api-c-${PV}"
|
||||
|
||||
src_prepare() {
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf $(use_enable static-libs static)
|
||||
sed -e "s|@PREFIX@|${ROOT}|g" "${FILESDIR}"/geoipupdate-r5.sh > geoipupdate.sh || die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
dodoc AUTHORS ChangeLog README* TODO
|
||||
|
||||
prune_libtool_files
|
||||
|
||||
keepdir /usr/share/GeoIP
|
||||
|
||||
dosbin geoipupdate.sh
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
elog "Don't forget to run the included geoipupdate.sh or geoipupdate (from"
|
||||
elog "net-misc/geoipupdate) regularly to populate ${ROOT}/usr/share/GeoIP/"
|
||||
elog "with geo-located IP address databases."
|
||||
}
|
@ -1,36 +1,34 @@
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA256
|
||||
|
||||
DIST xapian-bindings-1.2.13.tar.gz 1481645 SHA256 bfef8a18303a67f6fb29b09393c2f01a23f5c10a248567f92ddc5edfda5db17d SHA512 1a685d903812508a20450a491ee9aef30ba5cd14708dfdc57f197da0e2cccf01eb46a076ac3fc32834e1802f10b82f08f8a910d2cf180a11604aa68e03826033 WHIRLPOOL d3998ec885a86cf4440c2290921de6d7e738972ecf8730c70d1dd1e1dec18f24ca8130790bb488b8846209eb9579fcc0860af650db9614162cc2edea5587e874
|
||||
DIST xapian-bindings-1.2.14.tar.gz 1483276 SHA256 a55815ddff0bd5f79814b5964cc94299ecf8f7ebafea11523aa0787f6082e3d7 SHA512 943a99ed19cb0f14435321de25b28ace5c7ad60be819f54fdf86bf161f92b2d2153d92506873b2af5b514403a4b98815db7f6c14a14b37fbd60c765460eb48f0 WHIRLPOOL 845b4f60f0787eaaf039c4f583ab233fd5ac0e1ba8b2cbcdc5bc20c11038f871717da9e8abf381c5bf9b472cbbb7451d08fb74bebf6e8d4999003c020202e6e9
|
||||
DIST xapian-bindings-1.2.15.tar.gz 1484058 SHA256 89d30cbd38dcfb9d9e0fccc8e4ba7d6452ffad45afb3f1e9614a3be0a3a33e77 SHA512 b3733308f0446fa041dcae677b3d3316bd8e775fcd1a1770ca2fab5b60e40463bbbce210cb1161161f6e9f1ff5e5473d38c2dab922b7f4f2705ac165d991c0ec WHIRLPOOL fdc4a07a487c339faa1d8837ea19c37f9f298b90657312b135f727b9fcf3984b149341cbf96c2ea16f54839b93b7677becb65452619b79e71a5204dcb660265d
|
||||
DIST xapian-bindings-1.2.16.tar.xz 825868 SHA256 e87ddcd70a5044565e631fb334155f7d66a3b7b491a94a22aa1db2aa0d26af6c SHA512 2c92986d7f678cc17c0608a29ee893bdd3c6a1b00aed12394df32c46311663f8851e7c82685cf43ff7071869dd46f129b47f16f21ce0fae992d07e5780b93286 WHIRLPOOL ccb4ce580188e2a73e2810fdeb125d15aff8feee8cb57a73a00f1f4ff54273496b11dd1add1cddd445dc65179e60b96aae0e3b5e2a0d29626dbc897b3669b48f
|
||||
DIST xapian-bindings-1.2.17.tar.xz 827160 SHA256 54ad5d818fa7d6558acbf517a04c78db9fb4c90103eda0a0f9fe9a864683f80a SHA512 4c8348ece62b57c4442e8cb16282b7da2a8ebecaf99eefbb263795c1451f1395c2073ea311df0159e74a4d52029682034926526b17554627cf8e286f328f36a7 WHIRLPOOL dac2c3ff137cb778a2942009f45013cc5eff8d8564b1ed582f4ac6d6e596550853fe5e9362e75dfcf5acda61f71879d9ebfd0f787fd761cb1e065b86e48232a7
|
||||
DIST xapian-bindings-1.2.18.tar.xz 828232 SHA256 e0c13d4a15d310c309f03dc8a8edfb9f99c0876ea5c1b1261c38988126cfecf7 SHA512 c0c417130bfaa3f059a003cacaa129662b216704d2f4bdfd997e1d2c0d74a77385f9f79b6ed5e3fb63b5217f78ebd43826fbee9c00f81264089728a02cffbd30 WHIRLPOOL a2a0f7312a40c5225c34eda85ce4194f69080f453f2b369ce24e154656692dff0af4022aded93b57bfe2ca1fb5b4ad3dd24f6baf60d3fe19e99a9ea1594d07a5
|
||||
DIST xapian-bindings-1.2.19.tar.xz 828904 SHA256 3b9434c6144cc347783175c92829f304e86919bbbd44f51b7b4a7148960cde17 SHA512 ac72ec35ae3b767e04e848a9782b41d74e99b6b1f795d5096373911ff549b3bf2e602a91ed0e5f7dce2e43e1dd308af710719e5a80c6a179393aac4af316de30 WHIRLPOOL 33770203390fea6f6048ebdc63cb7031f53a30be3568e3f3f6f8a25f8aa30a284347b402e360c0c2182069e3f6dab067fc5f6cd2b950f45e196afe057e4d80e3
|
||||
DIST xapian-bindings-1.3.1.tar.gz 1562988 SHA256 5c18ce77b08d2fcc738dadbf85448239d714aad27a0833436e32a82c2ff622c4 SHA512 e295ab93fe61e038bb5f95786f80ff36bc9cbc486c4d03e457fabc6efa97e7119411afa3aafd29786ab9237505b03c27fdb5d524fdb43db2c2f3550cd41c7396 WHIRLPOOL f76dcced799116569f5d4f6ba9245045a5fb3c8f7d64672997408fe0c11b72ef7d7ed24a1901d96777ac763d910be6bd378859dd952290bbbcae9dbe6452a2dd
|
||||
EBUILD xapian-bindings-1.2.13.ebuild 4572 SHA256 f942c9e876392f10ff7e6d23e1954448372c5ef4517ef511a321da88056163bf SHA512 779ae623e0af045359a913e43e80338e04b83e9980ec10d6de3819b33fbb316de74491dd39d1823a895111c8b090bbbfa74dc195ef40cfe725235ab733342db4 WHIRLPOOL 9e3cab7d2b604d097328cd6225980695104185a9b73459c8e9a00e86f3db59126213627deb4bc93590d35231aab3ad6a2b92f8826038793d8cb0424f1d14a842
|
||||
EBUILD xapian-bindings-1.2.14.ebuild 4570 SHA256 73f5ab5f574f4dd37cbcf8c7a8d8e48065b3760c5fa7d9a5cbb9aa473f1cd46f SHA512 a090eb45a47102541025d9a31e77950b3cca0b8d5d2ab1f2bc511d74a977a0dc2d8a6a43f28070cae252dbc13075fdffc56dfd55dac15497f4068f2831f7708a WHIRLPOOL d731043dc997c41ccbe64e0ee5404b5476d9f7de3996cbf60d48657a6980edc18a444a1f89613519f7b4d6c5dd561c4696305e2f45f4d30379a1ec335e3a50b3
|
||||
EBUILD xapian-bindings-1.2.15.ebuild 4790 SHA256 8f5e526ffd4872a09659fce02ef75dc2d14f45b35c7cf9331a572482358ab909 SHA512 4a1e3fc21960257459268f341d003df0bbe0533970f328da0cccafada8bc83a62e24fb06b0aad7d5a283b1caa3c88b9d034eadd6396fbbbae532882fd4b05cff WHIRLPOOL 968ce4c4cf42d337ae3a809e3f161436c495293447153e1b1a9ea023f8e9f01b4ba989a0fa4a35292e890cd22d95906798c2464cf745874329a653bc573045fd
|
||||
EBUILD xapian-bindings-1.2.16.ebuild 4327 SHA256 4b3daf0623555a9b03e7c034d1f8aa3bab9d91b67d9a18732c03b1aa3d4fde5a SHA512 49d43039d3e70b4de7de7ada9cd2ac0eec7dd9e179e52f691024fe43a6e3838e9f1c83e2ce336ab0dfd8d18fb599c3c425cc9e22e50c644b062af04753aa8ac1 WHIRLPOOL 6c04f99b8fd2a96941d3d7e5c0df602e4c4b06058358cf44bceea02d842990bb8e825417dd7d9a8b2b300d15e85169fe78e8cd65b1c65dc921e4811a907ed423
|
||||
EBUILD xapian-bindings-1.2.17.ebuild 4327 SHA256 c0d9af8979377cda117aa4c6099a85a905b8e6735d32fd5b79f681a04b38c19b SHA512 3ad1db9e97d395c31c287d29817c3cf2383db06541abc2f5b7a4f40a98e1c4db1d634d75aea9d6a7b2e8eb2d7e1ea81cb01baa36a08d6c6bff07008e3199de6d WHIRLPOOL 5def987d40803d5ec728eb8932b2112ddc3885d69b759175651f0f3ef23113d8a33330008d64069e134c9791e79cb3d6116b46b1d260b142c91a250bfb8f2689
|
||||
EBUILD xapian-bindings-1.2.18.ebuild 4326 SHA256 4945651eea8452a18f284fbbc3e9a0e548ab4ab4ccf106d67384631a25bb8a1e SHA512 ef2dc4bd73dccec10ff01321ba45a760059c4fac0b83da3e18ee4f958671d4135f1d4b5181f444129a6a1125d383349bf43e8a6810ddc2af1d5bf7399e4d6cde WHIRLPOOL e8b73c6535a11864dd592b0640fa386e50d751a9b08e545dbf9d39a7d0bfeb9fe07cace9451e3fb6c78ca69ee5cd71aa080ec1c2ea4245141a8a1fe056263a31
|
||||
EBUILD xapian-bindings-1.3.1.ebuild 4446 SHA256 606200e8863069b9f8df7838d4de312a25e82b3a968cf4c2a0d8483d20d4babc SHA512 886bfa98912817bf152194478ac6e8ca642127ce09f95f73bc6d92c6ae41723ca22d674044a7427333a5bd056d5d39b9717a323ce3d10a2e76912522a1ac981e WHIRLPOOL 6dbb35289ab14c4d20f38eaab261c0a2cd65dc889476865aa545bd0b29c3fc336d847e9db4696176ec9eb4e222c8fa5ef72c594eb28396ea45765a6c52436ab6
|
||||
MISC ChangeLog 12643 SHA256 447f8d37b92b51cfc9c1def15dad20505a562f5d4b7dc6436ba65f5f01d0918f SHA512 c7d687d4af678fccfb5f1ea39d44b8bca75b1b279d808d3bdc10bbf12195adb8d09b816007d537e797d88e2b7c9971e393305d61d540c11656ea292783800b01 WHIRLPOOL 66c119a6ad37170e915cff2fcb6ad887921749bdc51c775c5692d3864af3bfd42969a3c163fbe59afe78701048ccfb76094e1a8ea311e987efb1dafac6b5c92a
|
||||
EBUILD xapian-bindings-1.2.14.ebuild 4573 SHA256 9a1b4db00866fe604fd3bcec3e86fb46ffdcdf60f2df6a5c9131b210471e117f SHA512 e4a2b71f94fb43e765b28a9bde7ed523324e39d5992bc31a7f5ff9decbc028d71ed3ebcae83e400dfa97702e47951ba6fbc35096b88f718d041dc7e548970527 WHIRLPOOL a87730bffd24832b808628e0e031a3dbdb22af1358c168f5eb076500b4d15dac2eb18c6dd8d9d6fa788c7828658f5ae7a05afaa6937603a65dbe08a46d8535f6
|
||||
EBUILD xapian-bindings-1.2.17.ebuild 4330 SHA256 261361ca84c0cae766414e5ad844478e30b44f3393fdd3d2aacf565424d368c0 SHA512 cfae74c173468889d4bd2883075ed6856c537668c0e6c8f4a74c0d54dafc17a46b332d8a260034c61a014f0e0a5903a6e6e8beba0a7de26ed6dd0a13d8208f8b WHIRLPOOL da9c4c362fdd8b9853c434baf2dd56a09a8ce10e506dae99ecedd03e7384ec7bc4caa28ea50ac0f58c5f1947fbf0a29e916eb02f6e9ad0fc7de2f78148809c28
|
||||
EBUILD xapian-bindings-1.2.18.ebuild 4329 SHA256 1291e84320f16fb62d3b302b9f47daec8bdd2225d89e8aac0a59d7dd6feb4729 SHA512 4ac9bd7353c5609986a43bf8480686401603e2670728c1b5fc4403e794404b151085c7f124bdc2711ef9c3050a4000e4782f3f33adca981c1ac83ad9d7ed822b WHIRLPOOL f3f641c952a6fd8bbadcb557f43642ce3a349705936a91ef3c39aaf25f58d55b669bff6ee63b97a3370cfc9d3ac993b05ec9202ec7d5e6f3135f1d5a29a253ed
|
||||
EBUILD xapian-bindings-1.2.19.ebuild 4330 SHA256 11faf7a1c7a6c815ff92e7f63d1bb76d1d829e04dde698551615c3387e986dc2 SHA512 d34fe40050e03892776966498b142c7715fab18cf0da58ce4cdac55847f2be89b0f99427f876029b7901225d5ec1217bc7c94bfde332abdf8f867ee2a6695cd7 WHIRLPOOL d1194ce8c5bf0b8fa7bd5de81fbd00d5da170ff77c2e197ea572476ca8edf416a0616a97fe21df9f40805b6b8e4ee56ff880d096ca9034350cda5c481cb9f257
|
||||
EBUILD xapian-bindings-1.3.1.ebuild 4449 SHA256 009ed4910398970f51ff38ad01f7a4c34b3f89d28e4bd459f6c682fad34134c6 SHA512 e5f70db00899e671c109415efeaa7077f066fdef74cc6931f4bcc9d9a8a2c7f8948d13c440fdb93c7d66772c88a95b7d4b623f6f722cea29c623629ff82a0d3b WHIRLPOOL fa0e1d311e09c3876e88e6a492de347fea2037d00d2f64fc5ae098e6810f30eb15a7598130e1c846968201d63675e80cc40928140e1f3e12a4a35598fff595dc
|
||||
MISC ChangeLog 13478 SHA256 30209e4c334c5dcba3c34f8af6093bb17d9d5d2c898b4553e1de79dcaf09a0bb SHA512 19b04ca19674e991a78af8d350a561a6a4aeb53e22e715acd0ef41525ed110f87a35518def59224f64f93ca2edd94597fe7bdaf454aec7bea295778af26f0e9d WHIRLPOOL 12a6cf081282b17bb8cce094b914fd686c2d18ced45228580313f934a130cd027ad028f01378f74b4a45a7015a33bc02cb91d4a71d5e11e3dee31e78f065ad29
|
||||
MISC metadata.xml 367 SHA256 e757cf120c1188c0010caaf7449e89deee52d8aa275f4f0c3b9cc0c097d28596 SHA512 e562b4dfbdcf62a3f860cd185dcd5fb2cf4067cb9b6c11c94669027c9cbae94bc437fa63e68b3b982a6bdda624087a60b24a269031fae2f3f975efb3d8e85d44 WHIRLPOOL 1314776082f07f5fdf74d15ad6b5093276b58f47e4dce35c0377e6a7baef0941bf567e43047e4ff80a726e2078d506c9029cd033cba8aeba9110b75cbbffa036
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v2
|
||||
Version: GnuPG v2.0
|
||||
|
||||
iQIcBAEBCAAGBQJULEZoAAoJEJOE+m71LUu63OAQALOSFmfS1kW98Q8Yg46XFLkb
|
||||
pI+E4vv7MMEMa5k6JnntbsEQDdZApqnWhcONerldNdGgywHumf54DVfQy56VF6+U
|
||||
2REW0wwTUbFgUE7fEVNwoEFGrfItq8c3xlVCiff2lvce0XzbYnPHHRnSjDeuDovv
|
||||
oc6Mlr6AUPxHNjwt+j6QgL0G1e1O3ErX7KsZzVTqT5F+CbTK6ob3bqz3+4pTq9NG
|
||||
+apxSfTC0T5w6xlaTCduIcASXgpxiEy3k0euTSQL38GmCUv4tLOv1QTJ6IVJzecD
|
||||
HxsU+P/81aoUCj9xWIayQFtN/xGmNm8EEhFKGoVXGUZliNpWL1T2C/BJ2xvhqnST
|
||||
QN47kY8DO0eC2kp3bwXLqsZr1ZWnnKEPnwXojoW7aNTYwDIrAvWd/c5go/uhg9sU
|
||||
A/ZA0akl1BBD4WLmRkbp6YGsVgPmcDRmuUHzFnyUgdp8DVjY1TO3pT3lTpMUNrK/
|
||||
q940zKGB784EJWMKOLV0EPgTWmmgmHdhUBS7hU6BZ6Z8vawlLFF3QLe3A/ul+eXN
|
||||
d5KpmCm1kPdgPrJQ4rDNbJJO7+lqYzV1bmAN6rijmf3njrF3QylrcUDlOKcyHV0Z
|
||||
Gea1SzWZZHJ58HsBNgyEpHgtLGJkK2woREeW3FiUirWQlJZGWKowuEqkuo94MJ+A
|
||||
GvCK/R+WrTwcSaLz1Ib0
|
||||
=V/Gd
|
||||
iQJ8BAEBCABmBQJURs89XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
|
||||
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQwNzlCRDk4QzA4RENBRkYzQUEwRjQzMDlF
|
||||
QkU2QTMzNkJFMTkwMzlDAAoJEOvmoza+GQOcuDQQAKhb6c8fbtpxF9njB/fFFwl7
|
||||
44q169JcrMScwKYIP+7zD88SpToKbBraWVn30l/NSxMfaXTxeqkp2zzi2Vpdqvd+
|
||||
UZmGQheSpfhoaV07nAMKytOvTwxlUWNvlXH6Di/vTXcteZTm2ITXQQ9GwAhS35t0
|
||||
Af1cFUqG6pQStbPI/rlpqLoJ1HqsBTvxt4t/BjIaxldU8Yy72w5dyrbzX4oOb4in
|
||||
0qrfigJU5metyOtJCjFMSN460+gKtoqb2TawzuB7vPkdDBSvCxEGzqyOT+fbr55r
|
||||
OniISiNjbHC1STrrLeQ/WV13n+29IhpqU+uZqEiiDxHh4gGNNHQKi8WV1E/pRIjN
|
||||
Kwyd9JH8XOi1bhpTDSUN533UAHaioSWVJZwvV71OkeQgtLiuDqLdkLf29MMhFT5m
|
||||
f++/rvxAQKkAF8jP6aNPN7zjvcf0Ql7dhJr+4aoIiEaK3D10JmxgOdgc4bja7MGd
|
||||
sN2spCZuBxoC2E4YjDoTDlZsAfk9F0Y/rmvtJFAjQHVBXoN6L6fpYfVrWRr7FGoI
|
||||
wvkHkHtf4Wm0uWQm2ljl4equ8zPA8qVah5D7GQIFr7Wf8UsCgZtEF4i9dHrv8yAC
|
||||
qjjGkkmaYD8lWUNJoEDWTWU0XmrIlkwkqDIqsqCdcXxPRDaXbmPSTdRBVGFcqYUP
|
||||
OcdlEMbyu9c0nDC1tDtR
|
||||
=C9kj
|
||||
-----END PGP SIGNATURE-----
|
||||
|
@ -1,180 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian-bindings/xapian-bindings-1.2.13.ebuild,v 1.7 2014/10/01 18:21:56 blueness Exp $
|
||||
|
||||
EAPI="4"
|
||||
|
||||
PYTHON_DEPEND="python? 2"
|
||||
PYTHON_USE_WITH="threads"
|
||||
SUPPORT_PYTHON_ABIS="1"
|
||||
RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*"
|
||||
|
||||
USE_PHP="php5-4"
|
||||
|
||||
PHP_EXT_NAME="xapian"
|
||||
PHP_EXT_INI="yes"
|
||||
PHP_EXT_OPTIONAL_USE="php"
|
||||
|
||||
inherit java-pkg-opt-2 mono php-ext-source-r2 python
|
||||
|
||||
DESCRIPTION="SWIG and JNI bindings for Xapian"
|
||||
HOMEPAGE="http://www.xapian.org/"
|
||||
SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ppc64 ~sparc x86"
|
||||
IUSE="java lua mono perl php python ruby tcl"
|
||||
REQUIRED_USE="|| ( java lua mono perl php python ruby tcl )"
|
||||
|
||||
COMMONDEPEND="=dev-libs/xapian-${PV}*
|
||||
lua? ( >=dev-lang/lua-5.1 )
|
||||
mono? ( >=dev-lang/mono-1.0.8 )
|
||||
perl? ( dev-lang/perl )
|
||||
ruby? ( dev-lang/ruby )
|
||||
tcl? ( >=dev-lang/tcl-8.1 )"
|
||||
DEPEND="${COMMONDEPEND}
|
||||
java? ( >=virtual/jdk-1.3 )"
|
||||
RDEPEND="${COMMONDEPEND}
|
||||
java? ( >=virtual/jre-1.3 )"
|
||||
|
||||
pkg_setup() {
|
||||
java-pkg-opt-2_pkg_setup
|
||||
|
||||
if use python; then
|
||||
python_pkg_setup
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
java-pkg-opt-2_src_prepare
|
||||
if use java; then
|
||||
sed \
|
||||
-e 's/$(JAVAC)/$(JAVAC) $(JAVACFLAGS)/' \
|
||||
-i java{/,/org/xapian/errors/,/org/xapian/}Makefile.in || die "sed failed"
|
||||
fi
|
||||
|
||||
if use python; then
|
||||
sed \
|
||||
-e 's:\(^pkgpylib_DATA = xapian/__init__.py\).*:\1:' \
|
||||
-e 's|\(^xapian/__init__.py: modern/xapian.py\)|\1 xapian/_xapian$(PYTHON_SO)|' \
|
||||
-i python/Makefile.in || die "sed failed"
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
if use java; then
|
||||
CXXFLAGS="${CXXFLAGS} $(java-pkg_get-jni-cflags)"
|
||||
fi
|
||||
|
||||
if use perl; then
|
||||
export PERL_ARCH="$(perl -MConfig -e 'print $Config{installvendorarch}')"
|
||||
export PERL_LIB="$(perl -MConfig -e 'print $Config{installvendorlib}')"
|
||||
fi
|
||||
|
||||
if use lua; then
|
||||
export LUA_LIB="$(pkg-config --variable=INSTALL_CMOD lua)"
|
||||
fi
|
||||
|
||||
econf \
|
||||
$(use_with java) \
|
||||
$(use_with lua) \
|
||||
$(use_with mono csharp) \
|
||||
$(use_with perl) \
|
||||
$(use_with php) \
|
||||
$(use_with python) \
|
||||
$(use_with ruby) \
|
||||
$(use_with tcl)
|
||||
|
||||
# Python bindings are built/tested/installed manually.
|
||||
sed -e "/SUBDIRS =/s/ python//" -i Makefile || die "sed Makefile"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
default
|
||||
|
||||
if use python; then
|
||||
python_copy_sources python
|
||||
building() {
|
||||
emake \
|
||||
PYTHON="$(PYTHON)" \
|
||||
PYTHON_INC="$(python_get_includedir)" \
|
||||
PYTHON_LIB="$(python_get_libdir)" \
|
||||
PYTHON_SO="$("$(PYTHON)" -c 'import distutils.sysconfig; print(distutils.sysconfig.get_config_vars("SO")[0])')" \
|
||||
pkgpylibdir="$(python_get_sitedir)/xapian"
|
||||
}
|
||||
python_execute_function -s --source-dir python building
|
||||
fi
|
||||
}
|
||||
|
||||
src_test() {
|
||||
default
|
||||
|
||||
if use python; then
|
||||
testing() {
|
||||
emake \
|
||||
PYTHON="$(PYTHON)" \
|
||||
PYTHON_INC="$(python_get_includedir)" \
|
||||
PYTHON_LIB="$(python_get_libdir)" \
|
||||
PYTHON_SO="$("$(PYTHON)" -c 'import distutils.sysconfig; print(distutils.sysconfig.get_config_vars("SO")[0])')" \
|
||||
pkgpylibdir="$(python_get_sitedir)/xapian" \
|
||||
VERBOSE="1" \
|
||||
check
|
||||
}
|
||||
python_execute_function -s --source-dir python testing
|
||||
fi
|
||||
}
|
||||
|
||||
src_install () {
|
||||
emake DESTDIR="${D}" install || die "emake install failed"
|
||||
|
||||
if use java; then
|
||||
java-pkg_dojar java/built/xapian_jni.jar
|
||||
# TODO: make the build system not install this...
|
||||
java-pkg_doso "${D}/${S}/java/built/libxapian_jni.so"
|
||||
rm "${D}/${S}/java/built/libxapian_jni.so"
|
||||
rmdir -p "${D}/${S}/java/built"
|
||||
rmdir -p "${D}/${S}/java/native"
|
||||
fi
|
||||
|
||||
if use python; then
|
||||
installation() {
|
||||
emake \
|
||||
DESTDIR="${D}" \
|
||||
PYTHON="$(PYTHON)" \
|
||||
PYTHON_INC="$(python_get_includedir)" \
|
||||
PYTHON_LIB="$(python_get_libdir)" \
|
||||
PYTHON_SO="$("$(PYTHON)" -c 'import distutils.sysconfig; print(distutils.sysconfig.get_config_vars("SO")[0])')" \
|
||||
pkgpylibdir="$(python_get_sitedir)/xapian" \
|
||||
install
|
||||
}
|
||||
python_execute_function -s --source-dir python installation
|
||||
fi
|
||||
|
||||
if use php; then
|
||||
php-ext-source-r2_createinifiles
|
||||
fi
|
||||
|
||||
# For some USE combinations this directory is not created
|
||||
if [[ -d "${D}/usr/share/doc/xapian-bindings" ]]; then
|
||||
mv "${D}/usr/share/doc/xapian-bindings" "${D}/usr/share/doc/${PF}"
|
||||
fi
|
||||
|
||||
dodoc AUTHORS HACKING NEWS TODO README || die "dodoc failed"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if use python; then
|
||||
python_mod_optimize xapian
|
||||
fi
|
||||
|
||||
if use php_targets_php5-4; then
|
||||
ewarn "Note: subclassing Xapian classes in PHP currently doesn't work with PHP 5.4"
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
if use python; then
|
||||
python_mod_cleanup xapian
|
||||
fi
|
||||
}
|
@ -1,184 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian-bindings/xapian-bindings-1.2.15.ebuild,v 1.2 2014/10/01 18:21:56 blueness Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
PYTHON_DEPEND="python? 2"
|
||||
PYTHON_USE_WITH="threads"
|
||||
SUPPORT_PYTHON_ABIS="1"
|
||||
RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*"
|
||||
|
||||
USE_PHP="php5-4"
|
||||
|
||||
PHP_EXT_NAME="xapian"
|
||||
PHP_EXT_INI="yes"
|
||||
PHP_EXT_OPTIONAL_USE="php"
|
||||
|
||||
#mono violates sandbox, we disable it until we figure this out
|
||||
#inherit java-pkg-opt-2 mono php-ext-source-r2 python
|
||||
inherit java-pkg-opt-2 php-ext-source-r2 python
|
||||
|
||||
DESCRIPTION="SWIG and JNI bindings for Xapian"
|
||||
HOMEPAGE="http://www.xapian.org/"
|
||||
SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
|
||||
#IUSE="java lua mono perl php python ruby tcl"
|
||||
#REQUIRED_USE="|| ( java lua mono perl php python ruby tcl )"
|
||||
IUSE="java lua perl php python ruby tcl"
|
||||
REQUIRED_USE="|| ( java lua perl php python ruby tcl )"
|
||||
|
||||
COMMONDEPEND="=dev-libs/xapian-${PV}*
|
||||
lua? ( >=dev-lang/lua-5.1 )
|
||||
perl? ( dev-lang/perl )
|
||||
ruby? ( dev-lang/ruby )
|
||||
tcl? ( >=dev-lang/tcl-8.1 )"
|
||||
# mono? ( >=dev-lang/mono-1.0.8 )
|
||||
DEPEND="${COMMONDEPEND}
|
||||
java? ( >=virtual/jdk-1.3 )"
|
||||
RDEPEND="${COMMONDEPEND}
|
||||
java? ( >=virtual/jre-1.3 )"
|
||||
|
||||
pkg_setup() {
|
||||
java-pkg-opt-2_pkg_setup
|
||||
|
||||
if use python; then
|
||||
python_pkg_setup
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
java-pkg-opt-2_src_prepare
|
||||
if use java; then
|
||||
sed \
|
||||
-e 's/$(JAVAC)/$(JAVAC) $(JAVACFLAGS)/' \
|
||||
-i java{/,/org/xapian/errors/,/org/xapian/}Makefile.in || die "sed failed"
|
||||
fi
|
||||
|
||||
if use python; then
|
||||
sed \
|
||||
-e 's:\(^pkgpylib_DATA = xapian/__init__.py\).*:\1:' \
|
||||
-e 's|\(^xapian/__init__.py: modern/xapian.py\)|\1 xapian/_xapian$(PYTHON_SO)|' \
|
||||
-i python/Makefile.in || die "sed failed"
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
if use java; then
|
||||
CXXFLAGS="${CXXFLAGS} $(java-pkg_get-jni-cflags)"
|
||||
fi
|
||||
|
||||
if use perl; then
|
||||
export PERL_ARCH="$(perl -MConfig -e 'print $Config{installvendorarch}')"
|
||||
export PERL_LIB="$(perl -MConfig -e 'print $Config{installvendorlib}')"
|
||||
fi
|
||||
|
||||
if use lua; then
|
||||
export LUA_LIB="$(pkg-config --variable=INSTALL_CMOD lua)"
|
||||
fi
|
||||
|
||||
econf \
|
||||
$(use_with java) \
|
||||
$(use_with lua) \
|
||||
$(use_with perl) \
|
||||
$(use_with php) \
|
||||
$(use_with python) \
|
||||
$(use_with ruby) \
|
||||
$(use_with tcl)
|
||||
# $(use_with mono csharp) \
|
||||
|
||||
# Python bindings are built/tested/installed manually.
|
||||
sed -e "/SUBDIRS =/s/ python//" -i Makefile || die "sed Makefile"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
default
|
||||
|
||||
if use python; then
|
||||
python_copy_sources python
|
||||
building() {
|
||||
emake \
|
||||
PYTHON="$(PYTHON)" \
|
||||
PYTHON_INC="$(python_get_includedir)" \
|
||||
PYTHON_LIB="$(python_get_libdir)" \
|
||||
PYTHON_SO="$("$(PYTHON)" -c 'import distutils.sysconfig; print(distutils.sysconfig.get_config_vars("SO")[0])')" \
|
||||
pkgpylibdir="$(python_get_sitedir)/xapian"
|
||||
}
|
||||
python_execute_function -s --source-dir python building
|
||||
fi
|
||||
}
|
||||
|
||||
src_test() {
|
||||
default
|
||||
|
||||
if use python; then
|
||||
testing() {
|
||||
emake \
|
||||
PYTHON="$(PYTHON)" \
|
||||
PYTHON_INC="$(python_get_includedir)" \
|
||||
PYTHON_LIB="$(python_get_libdir)" \
|
||||
PYTHON_SO="$("$(PYTHON)" -c 'import distutils.sysconfig; print(distutils.sysconfig.get_config_vars("SO")[0])')" \
|
||||
pkgpylibdir="$(python_get_sitedir)/xapian" \
|
||||
VERBOSE="1" \
|
||||
check
|
||||
}
|
||||
python_execute_function -s --source-dir python testing
|
||||
fi
|
||||
}
|
||||
|
||||
src_install () {
|
||||
emake DESTDIR="${D}" install || die "emake install failed"
|
||||
|
||||
if use java; then
|
||||
java-pkg_dojar java/built/xapian_jni.jar
|
||||
# TODO: make the build system not install this...
|
||||
java-pkg_doso "${D}/${S}/java/built/libxapian_jni.so"
|
||||
rm "${D}/${S}/java/built/libxapian_jni.so"
|
||||
rmdir -p "${D}/${S}/java/built"
|
||||
rmdir -p "${D}/${S}/java/native"
|
||||
fi
|
||||
|
||||
if use python; then
|
||||
installation() {
|
||||
emake \
|
||||
DESTDIR="${D}" \
|
||||
PYTHON="$(PYTHON)" \
|
||||
PYTHON_INC="$(python_get_includedir)" \
|
||||
PYTHON_LIB="$(python_get_libdir)" \
|
||||
PYTHON_SO="$("$(PYTHON)" -c 'import distutils.sysconfig; print(distutils.sysconfig.get_config_vars("SO")[0])')" \
|
||||
pkgpylibdir="$(python_get_sitedir)/xapian" \
|
||||
install
|
||||
}
|
||||
python_execute_function -s --source-dir python installation
|
||||
fi
|
||||
|
||||
if use php; then
|
||||
php-ext-source-r2_createinifiles
|
||||
fi
|
||||
|
||||
# For some USE combinations this directory is not created
|
||||
if [[ -d "${D}/usr/share/doc/xapian-bindings" ]]; then
|
||||
mv "${D}/usr/share/doc/xapian-bindings" "${D}/usr/share/doc/${PF}"
|
||||
fi
|
||||
|
||||
dodoc AUTHORS HACKING NEWS TODO README || die "dodoc failed"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if use python; then
|
||||
python_mod_optimize xapian
|
||||
fi
|
||||
|
||||
if use php_targets_php5-4; then
|
||||
ewarn "Note: subclassing Xapian classes in PHP currently doesn't work with PHP 5.4"
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
if use python; then
|
||||
python_mod_cleanup xapian
|
||||
fi
|
||||
}
|
@ -1,26 +1,32 @@
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA256
|
||||
|
||||
DIST xapian-core-1.2.13.tar.gz 4152442 SHA256 8829ca8ebb4ab97129b8a237541f6aa62a3f4dc1fcd503bf0e6e9c1cb905fccc SHA512 5c6045e9bb5cd782e99a3edf2be20de9c69ade7c4e2da4d6e10055c6c876c5f5ad80b2533805d42b70d48cce6797358926d076ae23e31beff481f542a3e4e9ac WHIRLPOOL 9ea9094af77adbf6bd7112a6ac1f8898174aeab12c06828e1cebbb8f9f0fe22ea0582c996132ed41575989c0d78ac967e921fe5c07f58910894e8f8f57eb2601
|
||||
DIST xapian-core-1.2.14.tar.gz 4154881 SHA256 daec6292b595b57e3ab48f44a1d1643866545bf494da8b9d3b9955e059b236a9 SHA512 7546b80de8b1ffb070456e4f02babd538cdffb8785bc335a9939b59de4a597a8e5998132f40420f762da6c2c7f4c8d038187434d792e02a2299fb0695f1c5e8d WHIRLPOOL 1f3328dcdb3576456858417ceac18196726aa1bdfaa341efb3aa39f443e15770f36da0bf9fc9a4270e7043d64989bd0dd56708fee5dd91056d68c66350b324c6
|
||||
DIST xapian-core-1.2.15.tar.gz 4158987 SHA256 cde4f5d1b111b66643fa41c11b9e5962bff7ce7244ca34cbbcbd2d2caa0c4df0 SHA512 65e34adaf145648b1eca9a9fc189237dba217813154fdaa3a355328837c73306d9a4ab61cd9650651390c80c291dfd2378aec3310623add4eace38168d835f4a WHIRLPOOL 08c5b4462b3ff65281f3ed59df3b2a0410fb50905b2eeb0e717acbdd67784ddd8b284a043c600d13bb0518d73ad6b4c60b6b0eb5c458760c046c63b58d8755b7
|
||||
DIST xapian-core-1.2.16.tar.xz 3039524 SHA256 f4ecef14297136e498f55670df9b80800244bc21abb8e01d5f9dab65a1fae9b9 SHA512 f72d267e24daa0d4267c5b3153e760772f45e481b3bd75bd5640a5f02861aab1d2b76af6645966d708b1470163355afa647d01d04a420dc46883d8bbbdb85e02 WHIRLPOOL e4f196546fe4c5dd50302ec6c65aba7fe71051feaba34484b01c0f762908b84cdc624dfa1882d146f78d8930e58f26d1574a04309de954161a8dc3e1b0db31ba
|
||||
DIST xapian-core-1.2.17.tar.xz 3165256 SHA256 e79d45b0f30e62cfe51294a731291b903d9b33fc82ac2b26ab710866002cc6de SHA512 6c5395274291a8d13ec8a34c733d658301b2a6aee259135b50e91c8539a3b41c7f9d9df024ea718961ee3ed8ddd920f68a997dd021a0b3b449652c0ad6987851 WHIRLPOOL 0daffafa1359c4aad4fc050e8b8ebd4d118099d3e27898e40f2d0801819559e6f429713f8758c0edf46368bd3c92f3d3ffc32785f531e1cce59c2421206e7664
|
||||
DIST xapian-core-1.2.18.tar.xz 3173496 SHA256 762c62d905608b8e411511f43ede84c52c49a94822d32d86c7b975fefb30209a SHA512 088284e628d834ed4d5365ca002b7885a5011b08c8b4e0d5805e3201110e9cb7acc2936b95fba0767c9f1d9c65da59a99cbc523ed145533695e484ab94764e62 WHIRLPOOL 4b41f1bb31945c7858c8dd8dfa93bde459ec1328102e8f2a89b6bd0e889870d95ccead680943d028537dcd768cb68accb6a09a243c722f5a8908df7254daf7ad
|
||||
DIST xapian-core-1.2.19.tar.xz 3175384 SHA256 4a78260388ff1b042f0ab5d18afdd524a530ae609690d0339990ddc147a54785 SHA512 5cd29b8c278b4fa652f947cd6689945bbe239c95425344d0fedb445bf1534198333844d91e6e59cf870043066f4dc511cd0268071916002e96bd38b59aa91c1b WHIRLPOOL 5d65982d47145addc6585b72a99494bf6d14277df2c796925fbe6284ddd08b89fbc147c1a29575d573afebb2e2f6eb6dc73d58161260404be7e5ceefe1371ffb
|
||||
DIST xapian-core-1.3.1.tar.gz 4420653 SHA256 64ee0f763e393e373f540711db02c368738efcc00c96ecb3222ac9dbc10fe30f SHA512 d3b83d97adbf18b04ef529c3fc7faab9dd8fe232f948d833aa4d082286e15b1b4c0e6739afbb3cfb4a739b5e02888f0f969d5c87150705d6b747ff62a7384e2b WHIRLPOOL 12df58cac74877829a376a3d38652ccbbabc785a12f259f37328c066be6e0e3787d960ee4b7b111a04d2f730aed140b384c240f870447d36b90fa8fc25ea82e9
|
||||
EBUILD xapian-1.2.13.ebuild 1485 SHA256 4edc7d4e5c7b4207b2547faf6211e7f220cc7bfd0e49d5ffbb782589ad0ddd63 SHA512 0de9dd6b00bc8098aefaee5c7555c1c6dd7d5b18770e168d208ea7be8ae8a56750125604ed9baa0c7f17a34251e4d909332eb830d93faca755a02d56aeea2d78 WHIRLPOOL 64eb38d7bd6f9e9d648aee67679fce549d1248864c45d79aaef5726c90e579414008bd8414196e57c4cbe8fedb6b18879ad5c67eb8d1a05a333a9df36dc01352
|
||||
EBUILD xapian-1.2.14.ebuild 1482 SHA256 4d2186d695c44d7308b5718b458e6c251fb49179bb086311fdb66803fbe74f3d SHA512 d6d54eded65023a769ba3abec5172394523756f2f9ad9ba7e3625fcc857a1600c6b2ec811b0073dbedf2de5dabd14bf8efb5ffb485bc1fb66574c3e15d5d9480 WHIRLPOOL cafa1ac6b88d619288af9d0b298a904a972438aea5060f6db9dd2abc38b822bcada93167ea160f6755871fbe370d32405c466cb070eaaca6b481446580a9c973
|
||||
EBUILD xapian-1.2.15.ebuild 1495 SHA256 9b0aca7870b9fd30dd8949a4f8eb8149f476ac8ac656511dd49b309d3eacf074 SHA512 103c11390d14e4044b1df09a10aaa5ade45a9b4b4d5b3330501cd1d1102379878ce89b34d66f72891614f88ee13f5bae48af9ab2cf12a36b5c5868fa0489124a WHIRLPOOL 741ecac13d9824c2a989bfa8550d50e9975531f84785a8cbddfb381f4dfb7b88e8edc15998bf3064b27509138b201afbb74c7620dd8037d164437c06bd604860
|
||||
EBUILD xapian-1.2.16.ebuild 1495 SHA256 48ba4ce694d0ce1e4c2b03828bd62a53570ee0d40bf088ee454ace5e41af755c SHA512 3586a528c9e6c2b661ad135953ed428e398feafcd40b53982e5752038b9c1112980d75a20137d8a939fff0258b61392e68b54428fa963dd0c21af0bd168f0bb9 WHIRLPOOL 14fe6897f49c9b8180cee3d88d8954ef990f9e7865847fea4bc937697f004b480b7c70027be75c529bb1a85f6403fc53b32d6432c3265c1c390233fe5011da0f
|
||||
EBUILD xapian-1.2.17.ebuild 1482 SHA256 ee2732b6cb1257e02371c59e5097eb299a5b6c6daa76e4a8c7ffcca616a23615 SHA512 c22eecd5d2cdd7b950762b571afc365f8494f952dba54aad7abeff201a0c79f65ea0c3baabad4d6edd212a44061dffce4b5546fe1de17af51507372413423524 WHIRLPOOL 6831eb5ae918e5c970a34b121eb453e7377d817662cdfa9182761072002faae1d15879b2233afa6975a211b283f5f5ea64c43a174d67358a64ad64da8b49fe10
|
||||
EBUILD xapian-1.2.18.ebuild 1492 SHA256 98094c8cd9dfe01908b850210cea05746c15ac476ae9bd775be321bd8e74de86 SHA512 ad33b528b732084fcd0a9c3915615a47caa9706d07de6c3c11ba6b023b4977ecfd4019f174a0e1a825960eb94a549e6e6d01f80961014883216a1e1252c38782 WHIRLPOOL 82a8d003712228caf22e678409080903746f66c8e536d056bc14b8198c3fc3cdbe18a210d60cddfd6559289ebf27fa90d0c476737ef922d66764c104da350f5c
|
||||
EBUILD xapian-1.2.19.ebuild 1495 SHA256 4c0583f83a2bacfbc118202e7e3efcb03620b8ef43ed376ad207a09973b13145 SHA512 1fcd2115dc00d411a9abfa586207c1b7752bb7712c716dedac357a770a952ec5ad9505d745f0e2741b61e2e6538e28a69dc2462bb2fdb873c83da1d1c304d061 WHIRLPOOL acade4f7fa35290fed388772b8542f6fb5e72b15b2d4a8ea2340282d6b0efa4558d71991d3a687239676fcbc61c5362a9d5952fbeee0b178d3e60607b87db27d
|
||||
EBUILD xapian-1.3.1-r1.ebuild 1492 SHA256 2fce5c8cb326cfd33f0faff264c95ec8c4f2c4486c124f681e21a1650fa2888d SHA512 a7023244910f9396a767929e119bb5d276e42c873e21f3be0a45722830a1f00d250c9270aa56a4ccc9e4c7d487d8a8d34c20f8726475f835640aa59ef99fdef3 WHIRLPOOL 9cfafc8080742d17d67cc12cd65819c6e6cdea6dada8b275e9124768af9852cffb69cb8e164590adb088303c51e9af96558b2caff359cc65edb6097120b1bf14
|
||||
MISC ChangeLog 15615 SHA256 8f48a35d03d394dc55a2850d1f1b7ff4138752869deb3dc8fd3b97ceb656e525 SHA512 16d29b8f69282e6553cf4c211e51a541216f24ab353bdeba40b6ec70f8e8df315594f8cb1839a7fe5098d6c103c25804bfecc5cd8dd99df021882eadd22bc96e WHIRLPOOL 94017a5c608672cbb07ef9ec87c66cda7af611c23b257bda7fa1f70ba7945f934dbc79bf91478dc453acad3c90ee6358808d357b4625f9e450b6cd6e7fbe234c
|
||||
MISC ChangeLog 15892 SHA256 1fa6ede4131359b8356ef23213231ad98a584da9a6507e4bcba49bfa4553075b SHA512 b654d8e74d3ed202ec33469dfd6ecc214c3744816f3888813dc42e320956073d485ed64e0b46d0de515dc687ac605f74bbcf4fc0de474ef112683ebd12d545e7 WHIRLPOOL 9eaab5bfd84674a3b9c4513dbccbce1ade30f59a57b2bf059f8c6e537e3588b75409e941c074efb20f4ae016c583f3c4fe5a7ddbcc9e94541649ecb66df4e9bb
|
||||
MISC metadata.xml 986 SHA256 a8edfccb5ff34bd1f0d096bb80a8d337ad9c47880ab5165039e23219cff52c84 SHA512 ab2b46cfa58c704291db4e87428acd82987c236bdf1ac8c7c3dbcc4c1fa6a0b84cdf5ba28c317d8442e16264b4af9dbb82a14a0b4a129e0d7189168b68862690 WHIRLPOOL 8b7a20305b22c87d82e3c5ec765d9bc18c4e9a5e772920f04e827f8ddad71ac1aec50a7389c1b84662ea30afe278cacdb277af546320240a616d7e8a84b76aed
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v2
|
||||
|
||||
iEYEAREIAAYFAlQVXCYACgkQkKaRLQcq0GJJgQCfWjOeqPhA42cfeJxUtpKqnnYv
|
||||
7EkAoK4TxDDSczgkvM9ta6WHTkxqe5iB
|
||||
=0wDv
|
||||
iQIcBAEBCAAGBQJURs35AAoJEJOE+m71LUu6kgQP/0sVNP0ObGP5rsxwjTcQiUVc
|
||||
QnWn5yr8yJd/i22VJ01/uyR7uk+FhVbwVcmM51ENNevIHSy/PvEZd+ZxIHQ0RMqc
|
||||
Dii2MnYvb3K99GUnH26gOrdqatzZiZGM76bPfuExabR36CMr8i5KlMnpGZDVAieN
|
||||
Y9ZXwXX5wnPaV6DnxY41rx/GIwgbDZAf4FoszFcXy3tE4FDNc9GJVP3GujqkvJgz
|
||||
dv9iRtKUwmzMvRLsq4D/KbpU/uA838Oxbq/CyyUrhXjl16MdzRPyLmxphlc5QaRb
|
||||
RgmLxbnrlvuoSfzevo2tSBe3TWYgrOgsxBxaHmTZqixfdGkPCxJhVIC9YcAE4Cwd
|
||||
nNeBgzMLvy878nS5jh6pIwYjyWzV+mlPzLDHK8jkzpZJow36R+/C+arM2j1DQtnr
|
||||
pYgRYWHYh/Bjwe4Ak+F48I9DWT58bFDx0WRy0jKut3k83xY3YMj8ojzhgVdi4Q7o
|
||||
ckmlnqOwNHyLY/kAE/F8fBJbkrPXlkAuNAoTXveLBLAkcLtgh49rAYKBJQEmtwyZ
|
||||
kGrSz25ewDiPl7Q+KHNcjZ3LUOyTNKD2XVY5a3RxBk54DCGXAeNYpa2K6OzSrLwG
|
||||
artokxbFzs5m0/KNEKSceE41doZ19xFGTJPC4t5Dhnf0Ym3Y8xZT47c9/WHiXeBj
|
||||
W8TqUEXKKmDqLNlzCulg
|
||||
=mQMO
|
||||
-----END PGP SIGNATURE-----
|
||||
|
@ -1,63 +0,0 @@
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.13.ebuild,v 1.6 2013/02/15 22:02:33 ago Exp $
|
||||
|
||||
EAPI="4"
|
||||
|
||||
MY_P="${PN}-core-${PV}"
|
||||
|
||||
DESCRIPTION="Xapian Probabilistic Information Retrieval library"
|
||||
HOMEPAGE="http://www.xapian.org/"
|
||||
SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ppc64 ~sparc x86"
|
||||
IUSE="doc static-libs -sse +sse2 +brass +chert +inmemory"
|
||||
|
||||
DEPEND="sys-libs/zlib"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
src_configure() {
|
||||
local myconf=""
|
||||
|
||||
ewarn
|
||||
if use sse2; then
|
||||
ewarn "Using sse2"
|
||||
myconf="${myconf} --enable-sse=sse2"
|
||||
else
|
||||
if use sse; then
|
||||
ewarn "Using sse"
|
||||
myconf="${myconf} --enable-sse=sse"
|
||||
else
|
||||
ewarn "Disabling sse and sse2"
|
||||
myconf="${myconf} --disable-sse"
|
||||
fi
|
||||
fi
|
||||
ewarn
|
||||
|
||||
myconf="${myconf} $(use_enable static-libs static)"
|
||||
|
||||
use brass || myconf="${myconf} --disable-backend-brass"
|
||||
use chert || myconf="${myconf} --disable-backend-chert"
|
||||
use inmemory || myconf="${myconf} --disable-backend-inmemory"
|
||||
|
||||
myconf="${myconf} --enable-backend-flint --enable-backend-remote"
|
||||
|
||||
econf $myconf
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install
|
||||
|
||||
mv "${D}usr/share/doc/xapian-core" "${D}usr/share/doc/${PF}"
|
||||
use doc || rm -rf "${D}usr/share/doc/${PF}"
|
||||
|
||||
dodoc AUTHORS HACKING PLATFORMS README NEWS
|
||||
}
|
||||
|
||||
src_test() {
|
||||
emake check VALGRIND=
|
||||
}
|
@ -1,63 +0,0 @@
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.15.ebuild,v 1.1 2013/08/12 11:56:55 blueness Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
MY_P="${PN}-core-${PV}"
|
||||
|
||||
DESCRIPTION="Xapian Probabilistic Information Retrieval library"
|
||||
HOMEPAGE="http://www.xapian.org/"
|
||||
SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
|
||||
IUSE="doc static-libs -sse +sse2 +brass +chert +inmemory"
|
||||
|
||||
DEPEND="sys-libs/zlib"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
src_configure() {
|
||||
local myconf=""
|
||||
|
||||
ewarn
|
||||
if use sse2; then
|
||||
ewarn "Using sse2"
|
||||
myconf="${myconf} --enable-sse=sse2"
|
||||
else
|
||||
if use sse; then
|
||||
ewarn "Using sse"
|
||||
myconf="${myconf} --enable-sse=sse"
|
||||
else
|
||||
ewarn "Disabling sse and sse2"
|
||||
myconf="${myconf} --disable-sse"
|
||||
fi
|
||||
fi
|
||||
ewarn
|
||||
|
||||
myconf="${myconf} $(use_enable static-libs static)"
|
||||
|
||||
use brass || myconf="${myconf} --disable-backend-brass"
|
||||
use chert || myconf="${myconf} --disable-backend-chert"
|
||||
use inmemory || myconf="${myconf} --disable-backend-inmemory"
|
||||
|
||||
myconf="${myconf} --enable-backend-flint --enable-backend-remote"
|
||||
|
||||
econf $myconf
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install
|
||||
|
||||
mv "${D}usr/share/doc/xapian-core" "${D}usr/share/doc/${PF}"
|
||||
use doc || rm -rf "${D}usr/share/doc/${PF}"
|
||||
|
||||
dodoc AUTHORS HACKING PLATFORMS README NEWS
|
||||
}
|
||||
|
||||
src_test() {
|
||||
emake check VALGRIND=
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.16.ebuild,v 1.1 2013/12/05 18:36:55 blueness Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.19.ebuild,v 1.1 2014/10/21 20:44:11 blueness Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
@ -0,0 +1,25 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/BZ-Client/BZ-Client-1.40.0.ebuild,v 1.1 2014/10/21 23:16:06 dilfridge Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
MODULE_AUTHOR=JWIED
|
||||
MODULE_VERSION=1.04
|
||||
inherit perl-module
|
||||
|
||||
DESCRIPTION="A client for the Bugzilla web services API."
|
||||
|
||||
LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="
|
||||
dev-perl/URI
|
||||
dev-perl/XML-Writer
|
||||
dev-perl/XML-Parser
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/perl-ExtUtils-MakeMaker
|
||||
"
|
@ -0,0 +1,10 @@
|
||||
# ChangeLog for dev-perl/BZ-Client
|
||||
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/BZ-Client/ChangeLog,v 1.1 2014/10/21 23:16:06 dilfridge Exp $
|
||||
|
||||
*BZ-Client-1.40.0 (21 Oct 2014)
|
||||
|
||||
21 Oct 2014; Andreas K. Huettel <dilfridge@gentoo.org>
|
||||
+BZ-Client-1.40.0.ebuild, +metadata.xml:
|
||||
New package
|
||||
|
@ -0,0 +1,26 @@
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA256
|
||||
|
||||
DIST BZ-Client-1.04.tar.gz 23551 SHA256 302f1ea306a47c061fd843e4edd8156e823d5c9fbe1a0e1e41a70dd474e32873 SHA512 2aa1ce341db477375d465da0acc121348901d3504f3e2c235c2d6ab608014ce8255001c06021ce583ec03db99cda26902e5bc796906cb1046784de42c09d7e00 WHIRLPOOL 4c3cf40dca7a9623d2854d51a5fbd01537a02199b9257ba494130281cd720e0f04cd03251d74878739d72a14b5a1e66311fb7de41b9fcfe2642ca5f98689efc1
|
||||
EBUILD BZ-Client-1.40.0.ebuild 563 SHA256 35a569fffe5f3f3bb0540467434ef988c5b3f79534ca1ba480dd5588f9443d33 SHA512 e166426ecad4d8662a61185b720effbf8b5220bc1d53ae6ded02f9eb3aafc94f5578afaaf3ec14a5bcb3a740440818db8663481da805f9b7fb7864889f4577c0 WHIRLPOOL 04b5df7871c46c6b3a393e04520521f58c05e0a17e9271b5284a87d66fd86ab05a429a324ada02f266e1b4afbb5c095fa9526aee7285b06b424149e98ddbac05
|
||||
MISC ChangeLog 360 SHA256 2e2ad51770acb07fb5da88a18a3a8c08956c3ec4c0d34e8fb46f364bf19945cf SHA512 d5bc4891969c01347c4e0d7f30f80004c9cab72352e9e429ad5fcadc42beb6bb752cf077c7329d93acd1340b219652f3f554d52bed421532042e5e3983f65c23 WHIRLPOOL 3bdf4ec96490124f4c6bdecb1ab420a647f329576c146ec00c33422b4ed39928e18e0fb249eba5d0f50e8cbfe65ca2eb7ab24d9c28180ae8261836adf91d871c
|
||||
MISC metadata.xml 157 SHA256 6a11fd41a2a210a9760849de398ef8c62cf46cc742d09b2e1781def7848fa1ec SHA512 95158d74d42674de03bc271c8dffa2264759c77681436de71fa9b3ad67f50b09394b0401e6df6dde526bc8dcd6ea666ed6767662bd63c3e92cb33b7b23e4ede8 WHIRLPOOL d3fdf14c384070120719ad4076cd04630790564f5bceda2a273e6481ea27a6fc6291e55d78cbf8bf99b73c7b42e8a1f286927c990702dceee97a63815cb33846
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v2.0
|
||||
|
||||
iQJ8BAEBCABmBQJURuk8XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
|
||||
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQwNzlCRDk4QzA4RENBRkYzQUEwRjQzMDlF
|
||||
QkU2QTMzNkJFMTkwMzlDAAoJEOvmoza+GQOcLqUP/ROLuIpY0VoJ6hW27drH718u
|
||||
exoCaCw28DIQCnsc18iQkonuuHTsKbPBTprYXX861Vn/rgkpvTYMhyiVdKSnEq+Y
|
||||
uzUSnoGVG5ZAk+T+ORFTb2e4wpAyKEFQ42UmjpbnfHsVrHL1wJKBLHoq/gWfuPnl
|
||||
1Bt88SB+Q+bKJ0bb9fzlVsT1bcF4cfsbeNJDn1VTZNPcFIWO3u6eKyDMshHbWe3k
|
||||
IgHzRdVfHHfOEfnW3n2RwedDd7l5pBT9HZQrqs/dSehBDZaavdv6CQDsaWSWXADx
|
||||
rXUAT9mNZN0pcVK8o9VoxnhlCtHp/INlIhRgKeEWo4VRYXdjPfBEwJQ4QETIlF1a
|
||||
Vn7eXDMl4Z8W7fbchRJQR2djlN7C0KNIz3+WnAVRsR/4a6YA62LgqsuUJ+28VSZu
|
||||
Q+2uJtdhsjX0AWOUXsgbBMpqh7JRoVdizkLIHUsp34dOZIErRUzx5PtyqsV1sf71
|
||||
JWjRu9lUjAVgkxMIScdEGa+fydF1dMlOpcl1Xh8uGCYGc77YTFyOaHnQBViT9riH
|
||||
WF5XcM6XJll9vUyNsLiPL/bZDrkWuLm5xU/r5VrIAW5VWtUKYP20feFl6b7h2AFt
|
||||
jZb3xRkJICaAbwdZ7m6Fyp5aQ+0fdxfo+4i+EYaH57N4vcjxpQ6NTq5rlIGapfCu
|
||||
FeE0DsILFNwwPy7IAWMm
|
||||
=WHzA
|
||||
-----END PGP SIGNATURE-----
|
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>perl</herd>
|
||||
</pkgmetadata>
|
@ -0,0 +1,10 @@
|
||||
# ChangeLog for dev-perl/Data-Serializer
|
||||
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Data-Serializer/ChangeLog,v 1.1 2014/10/21 23:18:09 dilfridge Exp $
|
||||
|
||||
*Data-Serializer-0.600.0 (21 Oct 2014)
|
||||
|
||||
21 Oct 2014; Andreas K. Huettel <dilfridge@gentoo.org>
|
||||
+Data-Serializer-0.600.0.ebuild, +metadata.xml:
|
||||
New package
|
||||
|
@ -0,0 +1,28 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Data-Serializer/Data-Serializer-0.600.0.ebuild,v 1.1 2014/10/21 23:18:09 dilfridge Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
MODULE_AUTHOR=NEELY
|
||||
MODULE_VERSION=0.60
|
||||
inherit perl-module
|
||||
|
||||
DESCRIPTION="Modules that serialize data structures"
|
||||
LICENSE="|| ( Artistic GPL-2 )"
|
||||
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="
|
||||
virtual/perl-AutoLoader
|
||||
virtual/perl-Data-Dumper
|
||||
virtual/perl-Digest-SHA
|
||||
virtual/perl-Exporter
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/perl-File-Spec
|
||||
virtual/perl-Module-Build
|
||||
test? ( virtual/perl-Test-Simple )
|
||||
"
|
@ -0,0 +1,26 @@
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA256
|
||||
|
||||
DIST Data-Serializer-0.60.tar.gz 43291 SHA256 b3493017840bccb19cde57bc84d4d4183872efeadeeed3275ec21d1a02d24431 SHA512 85211d2ca5db19219f89da5300b93835866baa5e12237efa61ea82d2b841f6b5a05bca889d98878151d1f7517b2af5d9a1535e7bbcd64245936b270a82be21bb WHIRLPOOL 20679be6cdb2e5f1878306162313d7647e80c36514b00cab1a150568d85fbc279084960a2d76b07edb04383ac8de07e03d22a7ceb72c48a77762db2130f35e66
|
||||
EBUILD Data-Serializer-0.600.0.ebuild 660 SHA256 44f1a1143da44d5c9586b2027170e1b75d3fe534a05607b90ffc6975db6e9758 SHA512 0d784f61e9cf8f8607a89761d52f64e291abbaa605a22cc343a7cc4e57795f7f7e01096221c856ffdfd5b30c5be530fc30a6275d7669b8b64061a2d3369ef919 WHIRLPOOL 3d52165b33e2cdfa0a2faa1c689a40e36db2cfff80ed645dbd7cd043b2be5fb6484cace3690107da12a14066f2465d53a1544e5cf097a4ee47390ad2cc7e33c3
|
||||
MISC ChangeLog 386 SHA256 a2384993db9b1edded67a0f4e6c9649526af215c5064a99869a5f3591f6f502f SHA512 91b310a1ea90ad210e6882e34a429a452044630ebf070bf37357814b15ffe508b75103d0415853096ca47f4359af38a1ea96dff726668cd607f2149171260005 WHIRLPOOL 29c6040102bdd36856258ed88e4c11796ed2aae0585b04d59fd309cdc10beef42676bb853f353b05894eec6506130122aaf102121ef9b0e3c385add94d15e2bf
|
||||
MISC metadata.xml 158 SHA256 1fef4c0af5f71b777110f54d9dfbd27d6c85c750fca007f4a2fb38345ebbb710 SHA512 0b83af178d8e59a07953fc2582b6e4177ec933439a6638de4f222e4e9b6c21135ca1702f7f4838624e283d39db0d3f4d4227ddb6108dbb06cdcc09ebf9d6bc55 WHIRLPOOL 696c0536d7047d00bd1590ddb9bebd01caec0e15b3a970828eebe526b46f14d61eec5bd541db7d4628bdff743461198158832e2bdb47e31a5523ad63f16708bc
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v2.0
|
||||
|
||||
iQJ8BAEBCABmBQJURumyXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
|
||||
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQwNzlCRDk4QzA4RENBRkYzQUEwRjQzMDlF
|
||||
QkU2QTMzNkJFMTkwMzlDAAoJEOvmoza+GQOcH/wQAJNiCRc7jhBw9l0y4RrncU+C
|
||||
LM2e1AUPyJAq1USYTcYys4LS2NZKYlESGaepE02+e/3o2Wx3m3OkFBnBVSXDjwJr
|
||||
xPXV4KKODnzbfQklHQ+tOE2HiDpiusjbsmW9bIZhYTVW4Q9d7M7lUnSFsrT/bSj5
|
||||
R/ETfAQS2+F/iiCPs57d0/KuHJqoq4GlnT4kwDomy6+GoE7meALQka/A9VTWV3uc
|
||||
9PeyrFAzKyffZx6MZjriZWrHcf4IhoDn7k1QF5j4q9s6QrTnr8lNnwBTui/s9YW8
|
||||
Fynk7siM2PIeQlkm4AYwG3gY0r32eqrqMi1TjfBwsmwcTYHol5rsSVEBD/MUL40U
|
||||
SqrGYRmSkf71EGCX6zNEi9L4f6p6Bzhlyo+sIAsS7Gw+aPgKCNJqV2iAZV4J3n1I
|
||||
SXQVu6/xZTdjg/27rZsuoGmq/zpJS7Ac+FLNHX7FmKGAG0io+F10RYak6k7lwRGa
|
||||
9yMsVwJ0QR6MonhyyNpZeWlqK/zAWv/ATwqmnovw2bfh6Hq8TBFNmry9SZo/4tTj
|
||||
b5M86+EuUyDevR5C++RzRTFh4dP/59IJ4As9bDTfRexc/3kfTyz40RDOL11bOP78
|
||||
+5dKLU28k7g5bFOksNQhIBhL0/Olscfnnufv5bjQ03TLZUrsl4mQF5RBTr7ukOfG
|
||||
j2J3SWqLqwIa/pzEFPuU
|
||||
=es45
|
||||
-----END PGP SIGNATURE-----
|
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>perl</herd>
|
||||
</pkgmetadata>
|
@ -0,0 +1,10 @@
|
||||
# ChangeLog for dev-perl/Math-NumberCruncher
|
||||
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Math-NumberCruncher/ChangeLog,v 1.1 2014/10/21 23:20:28 dilfridge Exp $
|
||||
|
||||
*Math-NumberCruncher-5.0.0 (21 Oct 2014)
|
||||
|
||||
21 Oct 2014; Andreas K. Huettel <dilfridge@gentoo.org>
|
||||
+Math-NumberCruncher-5.0.0.ebuild, +metadata.xml:
|
||||
New package
|
||||
|
@ -0,0 +1,26 @@
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA256
|
||||
|
||||
DIST Math-NumberCruncher-5.00.tar.gz 82311 SHA256 481ee17c60939060509c431d1cc701a4cfae485d68de2e7d4f70d1eae1e8df0d SHA512 a147fe456a2dda62345071487aa2d3f14345ade6ae1ff98fddce6fb1f72cb9c836b0947f52c5c5abbc1535ab97f2801f27ada2fa4d1b143dc5b755f37da5f836 WHIRLPOOL 059fc9a783e83f2c4401135ec8a56d25a29f6ea2db115dd9222cd110c432f986a578b49ca196842abc82da2cc3132dac88ad0c728c82780b5b522d57942a41a7
|
||||
EBUILD Math-NumberCruncher-5.0.0.ebuild 553 SHA256 f5c30e59db3143d3e95a0868c6c828d34f8860c17ecb29e0cc1efc91e135dc72 SHA512 a95f766cf5b9e8787aabfd873bac001dbf659dc3a8b96877cbfa7a19e2bb49b353db4f23fabd08f05bddf4497796155ad531e74fa69d02408937a25ff1ca5556 WHIRLPOOL 70cb40dd98dc6eb13717a76cb122684214fe4625b7a680d78814e187db480a05d09d2a3dd195cc3250e2b860b8216559680956345e5d9ea80a039b2baf933577
|
||||
MISC ChangeLog 398 SHA256 edfdc677dc9f8b49f7d84f5e3b74186816f254f1fe326c8d248dbed5bc62e712 SHA512 39b0e3755a3103a9ce5f077ec6669e697c52015948a54b53cbd0a4ac3ef37a5f401b9867659b3a82be5744ff941cc6e66cd6f9632c3d90d8ee7dd51b4c0c6d34 WHIRLPOOL 31953b192a86020df3416b816b2c1828b50f57d35de8005481497c1fe9632b19dabae3698d9a1f781e241929e57a0bbd36644cc36a287fd48c3482a101d623b7
|
||||
MISC metadata.xml 158 SHA256 1fef4c0af5f71b777110f54d9dfbd27d6c85c750fca007f4a2fb38345ebbb710 SHA512 0b83af178d8e59a07953fc2582b6e4177ec933439a6638de4f222e4e9b6c21135ca1702f7f4838624e283d39db0d3f4d4227ddb6108dbb06cdcc09ebf9d6bc55 WHIRLPOOL 696c0536d7047d00bd1590ddb9bebd01caec0e15b3a970828eebe526b46f14d61eec5bd541db7d4628bdff743461198158832e2bdb47e31a5523ad63f16708bc
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v2.0
|
||||
|
||||
iQJ8BAEBCABmBQJURuo9XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
|
||||
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQwNzlCRDk4QzA4RENBRkYzQUEwRjQzMDlF
|
||||
QkU2QTMzNkJFMTkwMzlDAAoJEOvmoza+GQOctr8P/0jIYsZznzkMsjc2+OyvrHw/
|
||||
MtZIvAzj04wt1S7L54nksKRCxPKtzHFOk33ukWB6R4LrusVVb6CXss2aEwJztUy/
|
||||
uJhK3DGk/J8bqiExj/rIaOw9KvZTiZH4eMS1DFlBAWWz6VJntM1CHjhqcLE2SFl6
|
||||
I3UcnD225ur0ijFnD5kUgBKVkfm4NpAkh9c6j/02Aicu5GghsedS1gAL9cRfWlax
|
||||
W6ERVGVcSNIEYbiotZCa64nw6w3iIG4uuIrnYFbCeEmuMwV57gHpoHRNXVvoFj38
|
||||
Jm8nviu2dM+yZLxtFtxhPicupDGtsnuvs+i/Z73Lm4A+/OXANOBMiCwPatadPSIh
|
||||
8jVHAF+aGflQggllsCvwBZn4ztMYT03KtyYUJoa88oBtQOEjiwrMOYx90FrJiFhf
|
||||
IIaQuYRqElmgMWuHHpDLX4cbh9mYM9QV2rlL2tY+ObGvIJ5E039LRK8olw0KQlVg
|
||||
uHBRaIr8gA4auDBay7wXbvb+qGAlCWEJ4PO2K2vSGeCeaCHRaL3xpyfkNV1o2IIz
|
||||
wSO9pR9yh52fOY9ANtVvl19gRcZxiX5Lw4Kbr551bXuTuFJgi8CiaCLeR0DTBKN/
|
||||
v+K7hh7K9xnbn7izUVy41zJZNDiufsdPJHd+krmf718K2J5CWkLTvv6mtLxWsc0O
|
||||
bSjwWe68fPNNp36Z9efn
|
||||
=aP9Y
|
||||
-----END PGP SIGNATURE-----
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue