diff options
-rw-r--r-- | app-pda/jpilot/ChangeLog | 10 | ||||
-rw-r--r-- | app-pda/jpilot/Manifest | 2 | ||||
-rw-r--r-- | app-pda/jpilot/files/digest-jpilot-0.99.7-r1 | 1 | ||||
-rw-r--r-- | app-pda/jpilot/jpilot-0.99.7-r1.ebuild | 58 |
4 files changed, 70 insertions, 1 deletions
diff --git a/app-pda/jpilot/ChangeLog b/app-pda/jpilot/ChangeLog index 4edcb467e1c3..0d49305245d5 100644 --- a/app-pda/jpilot/ChangeLog +++ b/app-pda/jpilot/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for app-pda/jpilot # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/jpilot/ChangeLog,v 1.18 2004/06/27 00:56:37 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-pda/jpilot/ChangeLog,v 1.19 2004/07/05 17:08:12 agriffis Exp $ + +*jpilot-0.99.7-r1 (05 Jul 2004) + + 05 Jul 2004; Aron Griffis <agriffis@gentoo.org> +jpilot-0.99.7-r1.ebuild: + Split out the jpilot-syncmal plugin since there are other jpilot plugins and + it doesn't make sense to tie them all into this ebuild. Remove useless sed + from src_compile. Make installation simpler with DESTDIR. Remove unnecessary + jpilot.xpm symlink. 26 Jun 2004; Alastair Tse <liquidx@gentoo.org> jpilot-0.99.7.ebuild: install icons in the right place (#54264) diff --git a/app-pda/jpilot/Manifest b/app-pda/jpilot/Manifest index 98124fc2eef9..3405349a1e19 100644 --- a/app-pda/jpilot/Manifest +++ b/app-pda/jpilot/Manifest @@ -1,3 +1,4 @@ +MD5 d86bbbaabec94cd4b83645ea8a9da040 jpilot-0.99.7-r1.ebuild 1235 MD5 85d9d6fe43174cbbb6beb52c65642adb jpilot-0.99.5.ebuild 1925 MD5 7b86fd2c9a30eb48daf702f0b6404f12 jpilot-0.99.6-r1.ebuild 2271 MD5 c1dba0bafa6ab7cf5dbe77c1257ed6a7 jpilot-0.99.2-r1.ebuild 1821 @@ -8,3 +9,4 @@ MD5 fec9283977e434f78771d9dc3b05569f files/digest-jpilot-0.99.5 208 MD5 25502d8cc007a47634cfb80b10b6d0fd files/digest-jpilot-0.99.7 208 MD5 772a9edf8c450460098e6af60fee716d files/digest-jpilot-0.99.2-r1 205 MD5 3191fb2564846c9ad2faa29463b178a6 files/digest-jpilot-0.99.6-r1 208 +MD5 ac0b77783e7cf50e9f7f63397d19e774 files/digest-jpilot-0.99.7-r1 66 diff --git a/app-pda/jpilot/files/digest-jpilot-0.99.7-r1 b/app-pda/jpilot/files/digest-jpilot-0.99.7-r1 new file mode 100644 index 000000000000..024af85ec8e4 --- /dev/null +++ b/app-pda/jpilot/files/digest-jpilot-0.99.7-r1 @@ -0,0 +1 @@ +MD5 11bb7236702e2e4c7e3d06372bdc9695 jpilot-0.99.7.tar.gz 1197119 diff --git a/app-pda/jpilot/jpilot-0.99.7-r1.ebuild b/app-pda/jpilot/jpilot-0.99.7-r1.ebuild new file mode 100644 index 000000000000..94e0a578260c --- /dev/null +++ b/app-pda/jpilot/jpilot-0.99.7-r1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/jpilot/jpilot-0.99.7-r1.ebuild,v 1.1 2004/07/05 17:08:12 agriffis Exp $ + +DESCRIPTION="Desktop Organizer Software for the Palm Pilot" +SRC_URI="http://jpilot.org/${P}.tar.gz" +HOMEPAGE="http://jpilot.org/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~sparc ~alpha ~amd64 ~ppc" +IUSE="nls gtk2" + +RDEPEND="gtk2? ( >=x11-libs/gtk+-2 ) + !gtk2? ( >=x11-libs/gtk+-1.2 ) + >=app-pda/pilot-link-0.11.5" +DEPEND="${RDEPEND} + gtk2? ( dev-util/pkgconfig ) + nls? ( sys-devel/gettext )" + +src_unpack() { + unpack ${A} + cd ${S} || die + + # There are four icons available. Use the third. + sed -i 's/jpilot.xpm/jpilot-icon3.xpm/' jpilot.desktop || die +} + +src_compile() { + econf $(use_enable gtk2) $(use_enable nls) || die "configure failed" + emake -j1 || die "make failed" +} + +src_install() { + make install DESTDIR=${D} \ + docdir=/usr/share/doc/${PF} \ + icondir=/usr/share/pixmaps \ + desktopdir=/usr/share/applications || die "install failed" + + dodoc README TODO UPGRADING ABOUT-NLS BUGS ChangeLog COPYING INSTALL + doman docs/*.1 + + dodir /usr/share/${PN} + insinto /usr/share/${PN} + doins ${S}/jpilotrc.* +} + +pkg_postinst() { + einfo + einfo "The jpilot-syncmal plugin has moved to its own ebuild." + einfo "If you want to use that plugin, please run" + einfo " emerge jpilot-syncmal" + einfo + einfo "There are other plugins available as well. To see the" + einfo "list, please run" + einfo " emerge -s jpilot" + einfo +} |