diff options
author | Krzysztof Pawlik <nelchael@gentoo.org> | 2011-06-28 14:19:21 +0000 |
---|---|---|
committer | Krzysztof Pawlik <nelchael@gentoo.org> | 2011-06-28 14:19:21 +0000 |
commit | 7165377ae7cfb9c6d5a493c42e715446a0dec2f0 (patch) | |
tree | 525aa0b310c8db850676c1b6aeb60d0c0f3dd62c /app-editors/scite | |
parent | Version bump, bug #373339 thank Dustin Polke for this job. (diff) | |
download | gentoo-2-7165377ae7cfb9c6d5a493c42e715446a0dec2f0.tar.gz gentoo-2-7165377ae7cfb9c6d5a493c42e715446a0dec2f0.tar.bz2 gentoo-2-7165377ae7cfb9c6d5a493c42e715446a0dec2f0.zip |
Version bump, remove old, obsolete version.
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Diffstat (limited to 'app-editors/scite')
-rw-r--r-- | app-editors/scite/ChangeLog | 8 | ||||
-rw-r--r-- | app-editors/scite/scite-2.27.ebuild (renamed from app-editors/scite/scite-2.24.ebuild) | 18 |
2 files changed, 16 insertions, 10 deletions
diff --git a/app-editors/scite/ChangeLog b/app-editors/scite/ChangeLog index 4464858cc050..359ac70bfcfe 100644 --- a/app-editors/scite/ChangeLog +++ b/app-editors/scite/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-editors/scite # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.115 2011/06/25 17:18:53 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.116 2011/06/28 14:19:21 nelchael Exp $ + +*scite-2.27 (28 Jun 2011) + + 28 Jun 2011; Krzysztof Pawlik <nelchael@gentoo.org> -scite-2.24.ebuild, + +scite-2.27.ebuild: + Version bump, remove old, obsolete version. 25 Jun 2011; Raúl Porcel <armin76@gentoo.org> scite-2.22.ebuild, scite-2.24.ebuild, scite-2.25.ebuild, scite-2.26.ebuild: diff --git a/app-editors/scite/scite-2.24.ebuild b/app-editors/scite/scite-2.27.ebuild index 2533824a872e..af12a0110672 100644 --- a/app-editors/scite/scite-2.24.ebuild +++ b/app-editors/scite/scite-2.27.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-2.24.ebuild,v 1.3 2011/06/25 17:18:53 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-2.27.ebuild,v 1.1 2011/06/28 14:19:21 nelchael Exp $ EAPI="1" @@ -65,20 +65,20 @@ src_compile() { } src_install() { - dodir /usr/bin - dodir /usr/share/{pixmaps,applications} + dodir /usr/bin || die + dodir /usr/share/{pixmaps,applications} || die make prefix="${D}/usr" install || die # we have to keep this because otherwise it'll break upgrading - mv "${D}/usr/bin/SciTE" "${D}/usr/bin/scite" - dosym /usr/bin/scite /usr/bin/SciTE + mv "${D}/usr/bin/SciTE" "${D}/usr/bin/scite" || die + dosym /usr/bin/scite /usr/bin/SciTE || die # replace .desktop file with our own working version - insinto /usr/share/applications rm -f "${D}/usr/share/applications/SciTE.desktop" - doins "${FILESDIR}/scite.desktop" + insinto /usr/share/applications + doins "${FILESDIR}/scite.desktop" || die - doman ../doc/scite.1 - dodoc ../README + doman ../doc/scite.1 || die + dodoc ../README || die } |