diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2009-03-24 12:18:04 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2009-03-24 12:18:04 +0000 |
commit | 757e5ff0552d7907b86beac94aedb7ad02560f00 (patch) | |
tree | a2a711511ec3f62080e7164a1cb34d116152671c /sci-calculators | |
parent | Version bump (diff) | |
download | gentoo-2-757e5ff0552d7907b86beac94aedb7ad02560f00.tar.gz gentoo-2-757e5ff0552d7907b86beac94aedb7ad02560f00.tar.bz2 gentoo-2-757e5ff0552d7907b86beac94aedb7ad02560f00.zip |
Version bump
(Portage version: 2.2_rc26/cvs/Linux x86_64)
Diffstat (limited to 'sci-calculators')
-rw-r--r-- | sci-calculators/tilp2/ChangeLog | 7 | ||||
-rw-r--r-- | sci-calculators/tilp2/tilp2-1.12.ebuild | 50 |
2 files changed, 56 insertions, 1 deletions
diff --git a/sci-calculators/tilp2/ChangeLog b/sci-calculators/tilp2/ChangeLog index f86e9a8d11ff..c5fe8a58a884 100644 --- a/sci-calculators/tilp2/ChangeLog +++ b/sci-calculators/tilp2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-calculators/tilp2 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-calculators/tilp2/ChangeLog,v 1.1 2009/02/03 15:52:59 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-calculators/tilp2/ChangeLog,v 1.2 2009/03/24 12:18:04 bicatali Exp $ + +*tilp2-1.12 (24 Mar 2009) + + 24 Mar 2009; Sébastien Fabbro <bicatali@gentoo.org> +tilp2-1.12.ebuild: + Version bump *tilp2-1.11 (03 Feb 2009) diff --git a/sci-calculators/tilp2/tilp2-1.12.ebuild b/sci-calculators/tilp2/tilp2-1.12.ebuild new file mode 100644 index 000000000000..57423672655f --- /dev/null +++ b/sci-calculators/tilp2/tilp2-1.12.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2009 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.1 2009/03/24 12:18:04 bicatali Exp $ + +EAPI="2" +inherit eutils kde-functions + +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" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="kde nls threads xinerama" + +RDEPEND="sci-libs/libticalcs2 + sci-libs/libticables2 + sci-libs/libtifiles2 + sci-libs/libticonv + !sci-calculators/tilp + >=x11-libs/gtk+-2.6.0 + >=dev-libs/glib-2.6.0 + >=gnome-base/libglade-2 + kde? ( kde-base/kdelibs:3.5 ) + nls? ( virtual/libintl ) + xinerama? ( x11-libs/libXinerama )" + +DEPEND="${RDEPEND} + dev-util/pkgconfig + nls? ( sys-devel/gettext ) + xinerama? ( x11-proto/xineramaproto )" + +src_configure() { + use kde && set-kdedir 3 + econf \ + --disable-rpath \ + $(use_enable threads) \ + $(use_enable threads threading) \ + $(use_with kde) \ + $(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} + dodoc README AUTHORS ChangeLog RELEASE TODO *.txt + make_desktop_entry tilp "TILP2 TI Linker" \ + /usr/share/tilp2/pixmaps/icon.xpm +} |