diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-09-12 01:40:42 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-09-12 01:40:42 +0000 |
commit | 395d67026d696ef66622b4ef4899ae7543c1cbe9 (patch) | |
tree | c45d746ecdfadf931ce5d300271698f79df9c5c1 /dev-util/aap | |
parent | Version bump (diff) | |
download | gentoo-2-395d67026d696ef66622b4ef4899ae7543c1cbe9.tar.gz gentoo-2-395d67026d696ef66622b4ef4899ae7543c1cbe9.tar.bz2 gentoo-2-395d67026d696ef66622b4ef4899ae7543c1cbe9.zip |
Bump
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/aap')
-rw-r--r-- | dev-util/aap/ChangeLog | 9 | ||||
-rw-r--r-- | dev-util/aap/aap-1.091.ebuild | 44 |
2 files changed, 51 insertions, 2 deletions
diff --git a/dev-util/aap/ChangeLog b/dev-util/aap/ChangeLog index 65918d215e2f..00bb3ba27d41 100644 --- a/dev-util/aap/ChangeLog +++ b/dev-util/aap/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/aap -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/aap/ChangeLog,v 1.28 2008/03/08 14:37:57 nelchael Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/aap/ChangeLog,v 1.29 2009/09/12 01:40:42 patrick Exp $ + +*aap-1.091 (12 Sep 2009) + + 12 Sep 2009; Patrick Lauer <patrick@gentoo.org> +aap-1.091.ebuild: + Bump *aap-1.090 (08 Mar 2008) diff --git a/dev-util/aap/aap-1.091.ebuild b/dev-util/aap/aap-1.091.ebuild new file mode 100644 index 000000000000..0508ca1ec81f --- /dev/null +++ b/dev-util/aap/aap-1.091.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/aap/aap-1.091.ebuild,v 1.1 2009/09/12 01:40:42 patrick Exp $ + +IUSE="doc" + +DESCRIPTION="Bram Moolenaar's super-make program" +HOMEPAGE="http://www.a-a-p.org/" +SRC_URI="mirror://sourceforge/a-a-p/${P}.zip" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~sparc ~x86" +DEPEND="app-arch/unzip" +RDEPEND=">=dev-lang/python-1.5" +S=${WORKDIR}/${PN} + +src_unpack() { + mkdir "${S}" && cd "${S}" && unzip -q "${DISTDIR}"/${A} || die +} + +src_install() { + rm doc/*.sgml + rm doc/*.pdf + + if use doc ; then + dodir /usr/share/doc/${PF}/html + cp -R doc/* "${D}"/usr/share/doc/${PF}/html + fi + rm doc/*.html + rm -fr doc/images + + dodoc doc/* + doman aap.1 + rm -rf doc aap.1 + + # Move the remainder directly into the dest tree + dodir /usr/share + cd "${WORKDIR}" + mv aap "${D}"/usr/share + + # Create a symbolic link for the executable + dodir /usr/bin + ln -s ../share/aap/aap "${D}"/usr/bin/aap +} |