diff options
author | 2013-03-15 12:43:00 +0000 | |
---|---|---|
committer | 2013-03-15 12:43:00 +0000 | |
commit | 4551b2c8d58e5d93a8e474d0f2c3cd8e4527176a (patch) | |
tree | 9b00ac8b44a79da948c1aa79bfd5c1311e192bd7 /app-editors | |
parent | Respect CXX, wrt bug #456148. Thanks to Agostino Sarubbo for discovering this... (diff) | |
download | gentoo-2-4551b2c8d58e5d93a8e474d0f2c3cd8e4527176a.tar.gz gentoo-2-4551b2c8d58e5d93a8e474d0f2c3cd8e4527176a.tar.bz2 gentoo-2-4551b2c8d58e5d93a8e474d0f2c3cd8e4527176a.zip |
Drop old version
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/mp/ChangeLog | 5 | ||||
-rw-r--r-- | app-editors/mp/mp-5.2.1.ebuild | 69 |
2 files changed, 4 insertions, 70 deletions
diff --git a/app-editors/mp/ChangeLog b/app-editors/mp/ChangeLog index e5854d455ad8..bd6f6a400e0d 100644 --- a/app-editors/mp/ChangeLog +++ b/app-editors/mp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-editors/mp # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/mp/ChangeLog,v 1.99 2013/03/15 12:42:15 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/mp/ChangeLog,v 1.100 2013/03/15 12:43:00 pinkbyte Exp $ + + 15 Mar 2013; Sergey Popov <pinkbyte@gentoo.org> -mp-5.2.1.ebuild: + Drop old version 15 Mar 2013; Sergey Popov <pinkbyte@gentoo.org> mp-5.2.2.ebuild: Respect CXX, wrt bug #456148. Thanks to Agostino Sarubbo for discovering this diff --git a/app-editors/mp/mp-5.2.1.ebuild b/app-editors/mp/mp-5.2.1.ebuild deleted file mode 100644 index 101a49bbb51b..000000000000 --- a/app-editors/mp/mp-5.2.1.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/mp/mp-5.2.1.ebuild,v 1.8 2012/07/20 08:24:58 jlec Exp $ - -EAPI=4 - -inherit eutils toolchain-funcs - -DESCRIPTION="Minimum Profit: A text editor for programmers" -HOMEPAGE="http://www.triptico.com/software/mp.html" -SRC_URI="http://www.triptico.com/download/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-interix ~ppc-macos ~sparc-solaris ~x86-solaris" -IUSE="gtk iconv kde ncurses nls pcre qt4" - -RDEPEND=" - ncurses? ( sys-libs/ncurses ) - gtk? ( x11-libs/gtk+:2 >=x11-libs/pango-1.8.0 ) - !gtk? ( sys-libs/ncurses ) - nls? ( sys-devel/gettext ) - pcre? ( dev-libs/libpcre ) - iconv? ( virtual/libiconv ) - app-text/grutatxt" -DEPEND="${RDEPEND} - app-text/grutatxt - virtual/pkgconfig - dev-lang/perl" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-5.2.1-prll.patch -} - -src_configure() { - local myconf="--prefix=${EPREFIX}/usr --without-win32" - - if use gtk; then - ! use ncurses && myconf="${myconf} --without-curses" - else - myconf="${myconf} --without-gtk2" - fi - - use iconv || myconf="${myconf} --without-iconv" - - use kde || myconf="${myconf} --without-kde4" - - use nls || myconfig="${myconf} --without-gettext" - - myconf="${myconf} $(use_with pcre)" - use pcre || myconf="${myconf} --with-included-regex" - - use qt4 || myconf="${myconf} --without-qt4" - - tc-export CC - sh config.sh ${myconf} || die "Configure failed" - - for i in "${S}" "${S}"/mpsl "${S}"/mpdm;do - echo ${CFLAGS} >> $i/config.cflags - echo ${CFLAGS} >> $i/config.ldflags - echo ${LDFLAGS} >> $i/config.ldflags - done -} - -src_install() { - dodir /usr/bin - sh config.sh --prefix="${EPREFIX}/usr" - emake DESTDIR="${D}" install -} |