diff options
author | Nathan Phillip Brink <binki@gentoo.org> | 2011-06-08 12:16:33 +0000 |
---|---|---|
committer | Nathan Phillip Brink <binki@gentoo.org> | 2011-06-08 12:16:33 +0000 |
commit | 09f87c963a528491a84e906b78cfd0faa0af166f (patch) | |
tree | d6520986d19a9fd8feb7f8c746d7b0775206941f /sys-apps | |
parent | Version bump (diff) | |
download | gentoo-2-09f87c963a528491a84e906b78cfd0faa0af166f.tar.gz gentoo-2-09f87c963a528491a84e906b78cfd0faa0af166f.tar.bz2 gentoo-2-09f87c963a528491a84e906b78cfd0faa0af166f.zip |
Drop old pacman-3.3.3.
(Portage version: 2.2.0_alpha37-r1/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/pacman/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/pacman/pacman-3.3.3.ebuild | 56 |
2 files changed, 4 insertions, 57 deletions
diff --git a/sys-apps/pacman/ChangeLog b/sys-apps/pacman/ChangeLog index fd1f7cb5f854..14bf5a9cda24 100644 --- a/sys-apps/pacman/ChangeLog +++ b/sys-apps/pacman/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/pacman # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pacman/ChangeLog,v 1.4 2011/06/08 01:37:54 binki Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pacman/ChangeLog,v 1.5 2011/06/08 12:16:32 binki Exp $ + + 08 Jun 2011; Nathan Phillip Brink <binki@gentoo.org> -pacman-3.3.3.ebuild: + Drop old pacman-3.3.3. *pacman-3.5.2 (08 Jun 2011) diff --git a/sys-apps/pacman/pacman-3.3.3.ebuild b/sys-apps/pacman/pacman-3.3.3.ebuild deleted file mode 100644 index da4d3c342cb1..000000000000 --- a/sys-apps/pacman/pacman-3.3.3.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pacman/pacman-3.3.3.ebuild,v 1.1 2010/05/12 21:04:37 hwoarang Exp $ - -EAPI=2 - -inherit autotools - -DESCRIPTION="Archlinux's binary package manager" -HOMEPAGE="http://archlinux.org/pacman/" -SRC_URI="ftp://ftp.archlinux.org/other/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64" -IUSE="debug doc test" - -COMMON_DEPEND="app-arch/libarchive - virtual/libiconv - virtual/libintl - sys-devel/gettext" -RDEPEND="${COMMON_DEPEND} - app-arch/xz-utils" -DEPEND="${COMMON_DEPEND} - doc? ( app-doc/doxygen ) - test? ( dev-lang/python )" - -src_prepare() { - sed -i -e '/-Werror/d' configure.ac || die "-Werror" - # acinclude.m4 overrides libtool macros from /usr/share/aclocal, causing - # elibtoolize's ltmain.sh to incompatible with ./configure after - # eautoreconf is run. - sed -i -e '4,/dnl Add some custom macros for pacman and libalpm/d' acinclude.m4 || die "libtool fix" - eautoreconf -} - -src_configure() { - econf \ - --localstatedir=/var \ - --disable-git-version \ - --disable-internal-download \ - $(use_enable debug) \ - $(use_enable doc) \ - $(use_enable doc doxygen) -} - -src_install() { - emake DESTDIR="${D}" install || die - - dodir /etc/pacman.d || die -} - -pkg_postinst() { - einfo "Please see http://ohnopub.net/~ohnobinki/gentoo/arch/ for information" - einfo "about setting up an archlinux chroot." -} |