diff options
author | Stanislav Ochotnicky <sochotnicky@gentoo.org> | 2010-05-12 19:59:43 +0000 |
---|---|---|
committer | Stanislav Ochotnicky <sochotnicky@gentoo.org> | 2010-05-12 19:59:43 +0000 |
commit | 9e2cbd6e8fdc5b51ae861bb4df8e2011e57504cd (patch) | |
tree | 32b3eb3975f840e202df40602b83a318a1399f40 /app-arch | |
parent | Marked ppc/ppc64 stable for bug #317703. (diff) | |
download | gentoo-2-9e2cbd6e8fdc5b51ae861bb4df8e2011e57504cd.tar.gz gentoo-2-9e2cbd6e8fdc5b51ae861bb4df8e2011e57504cd.tar.bz2 gentoo-2-9e2cbd6e8fdc5b51ae861bb4df8e2011e57504cd.zip |
Fixed homepage and source URL for rpm ebuilds
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/rpm/rpm-4.4.6-r6.ebuild | 108 | ||||
-rw-r--r-- | app-arch/rpm/rpm-4.4.6-r7.ebuild | 6 | ||||
-rw-r--r-- | app-arch/rpm/rpm-4.4.7-r4.ebuild | 6 | ||||
-rw-r--r-- | app-arch/rpm/rpm-4.4.7-r5.ebuild | 4 |
4 files changed, 8 insertions, 116 deletions
diff --git a/app-arch/rpm/rpm-4.4.6-r6.ebuild b/app-arch/rpm/rpm-4.4.6-r6.ebuild deleted file mode 100644 index 40474987c8f2..000000000000 --- a/app-arch/rpm/rpm-4.4.6-r6.ebuild +++ /dev/null @@ -1,108 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.4.6-r6.ebuild,v 1.12 2010/04/22 20:59:35 sochotnicky Exp $ - -inherit eutils autotools distutils perl-module flag-o-matic - -DESCRIPTION="Red Hat Package Management Utils" -HOMEPAGE="http://www.rpm.org/" -SRC_URI="http://wraptastic.org/pub/rpm-4.4.x/${P}.tar.gz" - -LICENSE="GPL-2 LGPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86" -IUSE="nls python perl doc sqlite" - -RDEPEND=">=sys-libs/db-4 - >=sys-libs/zlib-1.1.3 - >=app-arch/bzip2-1.0.1 - >=dev-libs/popt-1.7 - >=app-crypt/gnupg-1.2 - dev-libs/elfutils - virtual/libintl - >=dev-libs/beecrypt-3.1.0-r1 - python? ( >=dev-lang/python-2.2 ) - perl? ( >=dev-lang/perl-5.8.8 ) - nls? ( virtual/libintl ) - sqlite? ( >=dev-db/sqlite-3.3.5 ) - >=net-misc/neon-0.28" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext ) - doc? ( app-doc/doxygen )" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-with-sqlite.patch - epatch "${FILESDIR}"/${P}-stupidness.patch - epatch "${FILESDIR}"/${P}-autotools.patch - epatch "${FILESDIR}"/${P}-buffer-overflow.patch - epatch "${FILESDIR}"/${P}-qa-fix-undefined.patch - epatch "${FILESDIR}"/${P}-fix-cflags-stripping.patch - # bug 214799 - epatch "${FILESDIR}"/${P}-neon-0.28.patch - - # rpm uses AM_GNU_GETTEXT() but fails to actually - # include any of the required gettext files - cp /usr/share/gettext/config.rpath . || die - - # the following are additional libraries that might be packaged with - # the rpm sources. grep for "test -d" in configure.ac - cp file/src/{file,patchlevel}.h tools/ - rm -rf beecrypt elfutils neon popt sqlite zlib intl file - - sed -i -e "s:intl ::" Makefile.am - sed -i -e "s:intl/Makefile ::" configure.ac - AT_NO_RECURSIVE="yes" eautoreconf - # TODO Get rid of internal copies of lua, db and db3 -} - -src_compile() { - # Until strict aliasing is porperly fixed... - filter-flags -fstrict-aliasing - append-flags -fno-strict-aliasing - econf \ - --enable-posixmutexes \ - --without-javaglue \ - --without-selinux \ - $(use_with python python $(python_get_version)) \ - $(use_with doc apidocs) \ - $(use_with perl) \ - $(use_with sqlite) \ - $(use_enable nls) \ - || die "econf failed" - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" INSTALLDIRS=vendor install || die "emake install failed" - - mv "${D}"/bin/rpm "${D}"/usr/bin - rmdir "${D}"/bin - - use nls || rm -rf "${D}"/usr/share/man/?? - - keepdir /usr/src/rpm/{SRPMS,SPECS,SOURCES,RPMS,BUILD} - - dodoc CHANGES CREDITS GROUPS README* RPM* - use doc && dohtml -r apidocs/html/* - - # Fix perllocal.pod file collision - use perl && fixlocalpod - - for magic_file in "magic.mime.mgc" "magic.mgc" "magic.mime" "magic"; do - dosym /usr/share/misc/file/${magic_file} /usr/lib/rpm/${magic_file} - done -} - -pkg_postinst() { - if [[ -f ${ROOT}/var/lib/rpm/Packages ]] ; then - einfo "RPM database found... Rebuilding database (may take a while)..." - "${ROOT}"/usr/bin/rpm --rebuilddb --root="${ROOT}" - else - einfo "No RPM database found... Creating database..." - "${ROOT}"/usr/bin/rpm --initdb --root="${ROOT}" - fi - - distutils_pkg_postinst -} diff --git a/app-arch/rpm/rpm-4.4.6-r7.ebuild b/app-arch/rpm/rpm-4.4.6-r7.ebuild index 97b5d9752702..e15ae4dadea9 100644 --- a/app-arch/rpm/rpm-4.4.6-r7.ebuild +++ b/app-arch/rpm/rpm-4.4.6-r7.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.4.6-r7.ebuild,v 1.2 2010/04/22 20:59:35 sochotnicky Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.4.6-r7.ebuild,v 1.3 2010/05/12 19:59:42 sochotnicky Exp $ inherit eutils autotools distutils perl-module flag-o-matic DESCRIPTION="Red Hat Package Management Utils" -HOMEPAGE="http://www.rpm.org/" -SRC_URI="http://wraptastic.org/pub/rpm-4.4.x/${P}.tar.gz" +HOMEPAGE="http://www.rpm5.org/" +SRC_URI="http://rpm5.org/files/rpm/rpm-4.4/${P}.tar.gz" LICENSE="GPL-2 LGPL-2" SLOT="0" diff --git a/app-arch/rpm/rpm-4.4.7-r4.ebuild b/app-arch/rpm/rpm-4.4.7-r4.ebuild index 1c26d32317d8..01679a28e4e9 100644 --- a/app-arch/rpm/rpm-4.4.7-r4.ebuild +++ b/app-arch/rpm/rpm-4.4.7-r4.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.4.7-r4.ebuild,v 1.4 2010/04/04 21:48:31 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.4.7-r4.ebuild,v 1.5 2010/05/12 19:59:42 sochotnicky Exp $ inherit eutils autotools distutils perl-module flag-o-matic DESCRIPTION="Red Hat Package Management Utils" -HOMEPAGE="http://www.rpm.org/" -SRC_URI="http://wraptastic.org/pub/rpm-4.4.x/${P}.tar.gz" +HOMEPAGE="http://www.rpm5.org/" +SRC_URI="http://rpm5.org/files/rpm/rpm-4.4/${P}.tar.gz" LICENSE="GPL-2 LGPL-2" SLOT="0" diff --git a/app-arch/rpm/rpm-4.4.7-r5.ebuild b/app-arch/rpm/rpm-4.4.7-r5.ebuild index 9a3a8049f002..edaee0c5c614 100644 --- a/app-arch/rpm/rpm-4.4.7-r5.ebuild +++ b/app-arch/rpm/rpm-4.4.7-r5.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.4.7-r5.ebuild,v 1.1 2010/05/12 18:49:00 sochotnicky Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.4.7-r5.ebuild,v 1.2 2010/05/12 19:59:42 sochotnicky Exp $ inherit eutils autotools distutils perl-module flag-o-matic DESCRIPTION="Red Hat Package Management Utils" -HOMEPAGE="http://www.rpm.org/" +HOMEPAGE="http://www.rpm5.org/" SRC_URI="http://rpm5.org/files/rpm/rpm-4.4/${P}.tar.gz" LICENSE="GPL-2 LGPL-2" |