diff options
author | Fabian Groffen <grobian@gentoo.org> | 2008-01-26 19:12:20 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2008-01-26 19:12:20 +0000 |
commit | f8954b75fe6c23bfaba367b37c7dd9f72aa1ada2 (patch) | |
tree | 7c8b31b06ca301e48519462b7787405d6d5ad40f /dev-util/aap | |
parent | Removed mask for the following packages that have been moved to Java junkyard... (diff) | |
download | gentoo-2-f8954b75fe6c23bfaba367b37c7dd9f72aa1ada2.tar.gz gentoo-2-f8954b75fe6c23bfaba367b37c7dd9f72aa1ada2.tar.bz2 gentoo-2-f8954b75fe6c23bfaba367b37c7dd9f72aa1ada2.zip |
Dropped ppc-macos keyword, see you in prefix
(Portage version: 2.1.3.19)
Diffstat (limited to 'dev-util/aap')
-rw-r--r-- | dev-util/aap/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/aap/aap-1.076.ebuild | 16 |
2 files changed, 13 insertions, 10 deletions
diff --git a/dev-util/aap/ChangeLog b/dev-util/aap/ChangeLog index d196cafa58ad..76734dbd6278 100644 --- a/dev-util/aap/ChangeLog +++ b/dev-util/aap/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/aap -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/aap/ChangeLog,v 1.26 2007/07/25 17:33:23 armin76 Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/aap/ChangeLog,v 1.27 2008/01/26 19:12:20 grobian Exp $ + + 26 Jan 2008; Fabian Groffen <grobian@gentoo.org> aap-1.076.ebuild: + Dropped ppc-macos keyword, see you in prefix 25 Jul 2007; Raúl Porcel <armin76@gentoo.org> aap-1.055.ebuild, aap-1.070.ebuild, aap-1.072.ebuild, aap-1.076.ebuild: diff --git a/dev-util/aap/aap-1.076.ebuild b/dev-util/aap/aap-1.076.ebuild index 3e63dd90d959..973d87e37419 100644 --- a/dev-util/aap/aap-1.076.ebuild +++ b/dev-util/aap/aap-1.076.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/aap/aap-1.076.ebuild,v 1.6 2007/07/25 17:33:23 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/aap/aap-1.076.ebuild,v 1.7 2008/01/26 19:12:20 grobian Exp $ IUSE="doc" @@ -9,13 +9,13 @@ 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 ~ppc-macos sparc x86" +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 + mkdir "${S}" && cd "${S}" && unzip -q "${DISTDIR}"/${A} || die } src_install() { @@ -24,7 +24,7 @@ src_install() { if use doc ; then dodir /usr/share/doc/${PF}/html - cp -R doc/* ${D}/usr/share/doc/${PF}/html + cp -R doc/* "${D}"/usr/share/doc/${PF}/html fi rm doc/*.html rm -fr doc/images @@ -35,10 +35,10 @@ src_install() { # Move the remainder directly into the dest tree dodir /usr/share - cd ${WORKDIR} - mv aap ${D}/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 + ln -s ../share/aap/aap "${D}"/usr/bin/aap } |