Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 719223 Details for
Bug 798402
ebuild for gawkextlib
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
gawkextlib-1.0.0-r1.ebuild
gawkextlib-1.0.0-r1.ebuild (text/plain), 1.81 KB, created by
hangglider
on 2021-06-25 07:48:57 UTC
(
hide
)
Description:
gawkextlib-1.0.0-r1.ebuild
Filename:
MIME Type:
Creator:
hangglider
Created:
2021-06-25 07:48:57 UTC
Size:
1.81 KB
patch
obsolete
># Copyright 1999-2021 Gentoo Authors ># Distributed under the terms of the GNU General Public License v2 > >EAPI=7 > >inherit toolchain-funcs > >DESCRIPTION="GNU awk pattern-matching language extensions" >HOMEPAGE="https://sourceforge.net/projects/gawkextlib/" >EGIT_REPO_URI="git://git.code.sf.net/p/gawkextlib/code" >inherit git-r3 > >SLOT="0" >KEYWORDS="amd64 arm arm64 x86" >IUSE="abort aregex csv errno gd haru json lmdb mbs mpfr pgsql reclen redis select timex xml" > >RDEPEND=" > >=sys-apps/gawk-4.1.1 > aregex? ( dev-libs/tre ) > gd? ( media-libs/gd ) > haru? ( media-libs/libharu ) > lmdb? ( dev-db/lmdb ) > mpfr? ( dev-libs/mpfr dev-libs/gmp ) > pgsql? ( dev-db/postgresql ) > redis? ( dev-libs/hiredis ) > xml? ( dev-libs/expat ) >" >DEPEND="${RDEPEND}" >BDEPEND=" " > >PATCHES=( > "${FILESDIR}"/"${PN}"-select-timeout.patch >) > >src_unpack() { > git clone "${EGIT_REPO_URI}" "${P}" >} > >src_configure() { > for pkg in lib abort aregex csv errno gd haru json lmdb mbs mpfr pgsql reclen redis select timex xml; do > if [ "${pkg}" = "lib" ] || use ${pkg}; then > cd "${pkg}" > einfo "Configuring ${pkg}." > autoreconf -i && \ > ./configure --with-gawkextlib="${S}/lib" \ > --prefix="${EPREFIX}"/usr \ > --sysconfdir="${EPREFIX}"/etc && \ > sed -e "s#^\(libdir =.*\)lib#\1$(get_libdir)#" -i Makefile || die > cd .. > fi > done >} > >src_compile() { > for pkg in lib abort aregex csv errno gd haru json lmdb mbs mpfr pgsql reclen redis select timex xml; do > if [ "${pkg}" = "lib" ] || use ${pkg}; then > cd "${pkg}" > einfo "Compiling ${pkg}." > make clean && make && make check || die > cd .. > fi > done >} > >src_install() { > for pkg in lib abort aregex csv errno gd haru json lmdb mbs mpfr pgsql reclen redis select timex xml; do > if [ "${pkg}" = "lib" ] || use ${pkg}; then > cd "${pkg}" > default > einfo "Installed ${pkg} successfully." > cd .. > fi > done >} >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 798402
:
718842
|
718875
| 719223 |
719226