diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2012-02-19 13:57:10 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2012-02-19 13:57:10 +0000 |
commit | ea3d58b42d6c1132b78edf42df9ce8f130f0b428 (patch) | |
tree | 6f5382a1551635b3fd04e11e70aeb4191dc2dd03 /sci-calculators | |
parent | remove old (diff) | |
download | gentoo-2-ea3d58b42d6c1132b78edf42df9ce8f130f0b428.tar.gz gentoo-2-ea3d58b42d6c1132b78edf42df9ce8f130f0b428.tar.bz2 gentoo-2-ea3d58b42d6c1132b78edf42df9ce8f130f0b428.zip |
Version bump, fixes bug #379703 by Michael (kensington) <gentoo@scribeofthenile.com>. Drop old
(Portage version: 2.2.0_alpha86/cvs/Linux x86_64)
Diffstat (limited to 'sci-calculators')
-rw-r--r-- | sci-calculators/tilp2/ChangeLog | 11 | ||||
-rw-r--r-- | sci-calculators/tilp2/tilp2-1.16.ebuild (renamed from sci-calculators/tilp2/tilp2-1.12.ebuild) | 36 |
2 files changed, 27 insertions, 20 deletions
diff --git a/sci-calculators/tilp2/ChangeLog b/sci-calculators/tilp2/ChangeLog index f17b20718b87..4c43f4e6c2a2 100644 --- a/sci-calculators/tilp2/ChangeLog +++ b/sci-calculators/tilp2/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sci-calculators/tilp2 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-calculators/tilp2/ChangeLog,v 1.6 2011/03/15 21:23:34 bicatali Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-calculators/tilp2/ChangeLog,v 1.7 2012/02/19 13:57:10 xarthisius Exp $ + +*tilp2-1.16 (19 Feb 2012) + + 19 Feb 2012; Kacper Kowalik <xarthisius@gentoo.org> +tilp2-1.16.ebuild, + -tilp2-1.12.ebuild: + Version bump, fixes bug #379703 by Michael (kensington) + <gentoo@scribeofthenile.com>. Drop old *tilp2-1.14 (15 Mar 2011) diff --git a/sci-calculators/tilp2/tilp2-1.12.ebuild b/sci-calculators/tilp2/tilp2-1.16.ebuild index 7fe4d8b5897a..e3457b129189 100644 --- a/sci-calculators/tilp2/tilp2-1.12.ebuild +++ b/sci-calculators/tilp2/tilp2-1.16.ebuild @@ -1,28 +1,27 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-calculators/tilp2/tilp2-1.12.ebuild,v 1.4 2011/03/02 13:32:26 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-calculators/tilp2/tilp2-1.16.ebuild,v 1.1 2012/02/19 13:57:10 xarthisius Exp $ + +EAPI=4 -EAPI="2" inherit eutils DESCRIPTION="Communication program for Texas Instruments calculators " HOMEPAGE="http://lpg.ticalc.org/prj_tilp" -SRC_URI="http://repo.calcforge.org/debian/source/${PN}_${PV}.orig.tar.gz" +SRC_URI="mirror://sourceforge/tilp/tilp2-linux/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="nls threads xinerama" -RDEPEND=" - sci-libs/libticalcs2 - sci-libs/libticables2 - sci-libs/libtifiles2 - sci-libs/libticonv - !sci-calculators/tilp - x11-libs/gtk+:2 - dev-libs/glib:2 +RDEPEND="dev-libs/glib:2 gnome-base/libglade:2.0 + x11-libs/gtk+:2 + >=sci-libs/libticalcs2-1.1.7 + >=sci-libs/libticables2-1.3.3 + >=sci-libs/libtifiles2-1.1.5 + >=sci-libs/libticonv-1.1.3 nls? ( virtual/libintl ) xinerama? ( x11-libs/libXinerama )" DEPEND="${RDEPEND} @@ -31,18 +30,19 @@ DEPEND="${RDEPEND} xinerama? ( x11-proto/xineramaproto )" src_configure() { + # kde seems to be kde3 only econf \ --disable-rpath \ - $(use_enable threads) \ - $(use_enable threads threading) \ --without-kde \ + $(use_enable nls) \ + $(use_enable threads threading) \ $(use_with xinerama) } src_install() { - emake install DESTDIR="${D}" || die "emake install failed" - rm -f "${D}"usr/share/tiemu/{Manpage.txt,COPYING,RELEASE,AUTHORS,LICENSES} + emake install DESTDIR="${D}" || die + rm -f "${ED}"usr/share/${PN}/{Manpage.txt,COPYING,RELEASE,AUTHORS,LICENSES} dodoc README AUTHORS ChangeLog RELEASE TODO - make_desktop_entry tilp "TILP2 TI Linker" \ - /usr/share/tilp2/pixmaps/icon.xpm + make_desktop_entry tilp "TiLP TI Linker" \ + "${EPREFIX}"/usr/share/${PN}/pixmaps/icon.xpm } |