diff options
author | Michael Palimaka <kensington@gentoo.org> | 2012-12-20 14:59:20 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2012-12-20 14:59:20 +0000 |
commit | eee9f7e747c5e7f4716149df361f48bf285aba07 (patch) | |
tree | d71d7c301d26def0a872f1d14001047f7bf93814 /app-text/pep | |
parent | sci-chemistry/rasmol: Drop old version; fixes 438428 (diff) | |
download | gentoo-2-eee9f7e747c5e7f4716149df361f48bf285aba07.tar.gz gentoo-2-eee9f7e747c5e7f4716149df361f48bf285aba07.tar.bz2 gentoo-2-eee9f7e747c5e7f4716149df361f48bf285aba07.zip |
Remove old.
(Portage version: 2.1.11.38/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
Diffstat (limited to 'app-text/pep')
-rw-r--r-- | app-text/pep/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/pep/pep-2.8.ebuild | 47 |
2 files changed, 4 insertions, 48 deletions
diff --git a/app-text/pep/ChangeLog b/app-text/pep/ChangeLog index 95d28d2fd216..394d441fcd3e 100644 --- a/app-text/pep/ChangeLog +++ b/app-text/pep/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/pep # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/pep/ChangeLog,v 1.25 2012/12/16 17:49:20 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/pep/ChangeLog,v 1.26 2012/12/20 14:59:20 kensington Exp $ + + 20 Dec 2012; Michael Palimaka <kensington@gentoo.org> -pep-2.8.ebuild: + Remove old. 16 Dec 2012; Raúl Porcel <armin76@gentoo.org> pep-2.8.ebuild, pep-2.8-r1.ebuild: diff --git a/app-text/pep/pep-2.8.ebuild b/app-text/pep/pep-2.8.ebuild deleted file mode 100644 index 6fccf8d831dc..000000000000 --- a/app-text/pep/pep-2.8.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/pep/pep-2.8.ebuild,v 1.15 2012/12/16 17:49:20 armin76 Exp $ - -inherit eutils flag-o-matic toolchain-funcs - -DESCRIPTION="General purpose filter and file cleaning program" -HOMEPAGE="http://folk.uio.no/gisle/enjoy/pep.html" -SRC_URI="http://folk.uio.no/gisle/enjoy/${PN}${PV//./}.zip" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~mips ppc x86 ~x86-linux ~ppc-macos" -IUSE="" - -DEPEND="app-arch/unzip" -RDEPEND="" - -S=${WORKDIR} - -src_unpack() { - unpack ${A} - # pep does not come with autconf so here's a patch to configure - # Makefile with the correct path - epatch "${FILESDIR}"/${P}-gentoo.patch - # Darwin lacks stricmp - [[ ${CHOST} == *-darwin* ]] && \ - sed -i -e '/^OBJS/s/^\(.*\)$/\1 bdmg.o/' Makefile -} - -src_compile() { - [[ ${CHOST} == *-darwin* ]] && \ - append-flags "-DDIRCHAR=\\'/\\'" -DSTRICMP - # make man page too - make Doc/pep.1 || die "make man page failed" - emake CC="$(tc-getCC)" || die "emake failed" -} - -src_install() { - dobin pep || die "dobin failed" - doman Doc/pep.1 || die "doman failed" - - insinto /usr/share/pep - doins Filters/* || die "doins failed" - - dodoc aareadme.txt file_id.diz -} |