]> git.bzium.org - embe/overlay.git/commitdiff
Nowy pakiet: app-portage/eix-9999
authorMichał Bartoszkiewicz <mbartoszkiewicz@gmail.com>
Fri, 17 Dec 2010 01:45:00 +0000 (02:45 +0100)
committerMichał Bartoszkiewicz <mbartoszkiewicz@gmail.com>
Fri, 17 Dec 2010 01:45:00 +0000 (02:45 +0100)
app-portage/eix/Manifest [new file with mode: 0644]
app-portage/eix/eix-9999.ebuild [new file with mode: 0644]

diff --git a/app-portage/eix/Manifest b/app-portage/eix/Manifest
new file mode 100644 (file)
index 0000000..b071b2b
--- /dev/null
@@ -0,0 +1 @@
+EBUILD eix-9999.ebuild 1313 RMD160 7972fba216866aabd3bf40d34182a3dbbc706549 SHA1 d5d8e38e52c24ee11b92cb21f8f54f48ad4b4449 SHA256 1ade713b9dd0afac6a8f9fc8e54924c76173902fec649d358979a824658ca81d
diff --git a/app-portage/eix/eix-9999.ebuild b/app-portage/eix/eix-9999.ebuild
new file mode 100644 (file)
index 0000000..2053336
--- /dev/null
@@ -0,0 +1,43 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=3
+
+ESVN_REPO_URI="https://svn.gentooexperimental.org/eix/trunk/"
+ESVN_BOOTSTRAP="./autogen.sh"
+
+WANT_AUTOMAKE="1.11"
+
+inherit autotools multilib subversion
+
+DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more"
+HOMEPAGE="http://eix.berlios.de"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS=""
+IUSE="+bzip2 debug doc hardened nls optimization strong-optimization sqlite tools"
+
+RDEPEND="sqlite? ( dev-db/sqlite:3 )
+       nls? ( virtual/libintl )
+       bzip2? ( app-arch/bzip2 )"
+DEPEND="${RDEPEND}
+       doc? ( dev-python/docutils )
+       sys-devel/gettext"
+
+src_configure() {
+       econf $(use_with bzip2) $(use_with sqlite) $(use_with doc rst) \
+               $(use_enable nls) $(use_enable tools separate-tools) \
+               $(use_enable hardened security) $(use_enable optimization) \
+               $(use_enable strong-optimization) $(use_enable debug debugging) \
+               --with-ebuild-sh-default="/usr/$(get_libdir)/portage/bin/ebuild.sh" \
+               --with-portage-rootpath="${ROOTPATH}" \
+               --with-eprefix-default="${EPREFIX}" \
+               --docdir="${EPREFIX}/usr/share/doc/${PF}" \
+               --htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
+}
+
+src_install() {
+       emake DESTDIR="${D}" install || die "emake install failed"
+       prepalldocs
+}