diff options
author | Matthew Turk <satai@gentoo.org> | 2002-08-12 06:40:04 +0000 |
---|---|---|
committer | Matthew Turk <satai@gentoo.org> | 2002-08-12 06:40:04 +0000 |
commit | 3ccdb3dab0a7ec297c93805fee5b661f57109fec (patch) | |
tree | f2a5caf88a2d8bbb5b379b8b499ff55507d04556 /dev-libs | |
parent | added keywords = sparc64 (diff) | |
download | historical-3ccdb3dab0a7ec297c93805fee5b661f57109fec.tar.gz historical-3ccdb3dab0a7ec297c93805fee5b661f57109fec.tar.bz2 historical-3ccdb3dab0a7ec297c93805fee5b661f57109fec.zip |
Bumping revision of pilot-link, updating ChangeLog
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/pilot-link/ChangeLog | 10 | ||||
-rw-r--r-- | dev-libs/pilot-link/pilot-link-0.11.3.ebuild | 75 |
2 files changed, 84 insertions, 1 deletions
diff --git a/dev-libs/pilot-link/ChangeLog b/dev-libs/pilot-link/ChangeLog index f2cd0beef776..b747de1a3d3c 100644 --- a/dev-libs/pilot-link/ChangeLog +++ b/dev-libs/pilot-link/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for dev-libs/pilot-link # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-libs/pilot-link/ChangeLog,v 1.7 2002/07/30 12:22:18 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pilot-link/ChangeLog,v 1.8 2002/08/12 06:40:04 satai Exp $ + +*pilot-link-0.11.3 (08 Aug 2002) + + 08 Aug 2002; Matthew Turk <satai@gentoo.org> ChangeLog : + + Update to latest version, fixing numerous problems, particularly the numbering + of contact fields. Suggested recompile of all applications using this - + gnome-pilot, gnome-pilot-conduits, jpilot and evolution. *pilot-link-0.11.1-r1 (30 Jul 2002) diff --git a/dev-libs/pilot-link/pilot-link-0.11.3.ebuild b/dev-libs/pilot-link/pilot-link-0.11.3.ebuild new file mode 100644 index 000000000000..13de24132e57 --- /dev/null +++ b/dev-libs/pilot-link/pilot-link-0.11.3.ebuild @@ -0,0 +1,75 @@ +head 1.1; +access; +symbols; +locks; strict; +comment @# @; + + +1.1 +date 2002.08.12.06.37.56; author root; state Exp; +branches; +next ; + + +desc +@pilot-link-0.11.3.ebuild +@ + + +1.1 +log +@Initial revision +@ +text +@# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pilot-link/pilot-link-0.11.3.ebuild,v 1.1 2002/08/12 06:40:04 satai Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="A suite of tools contains a series of conduits for moving +information to and from your Palm device and your desktop or workstation +system." + +SRC_URI="http://pilot-link.org/source/${P}.tar.bz2" +HOMEPAGE="http://www.pilot-link.org/" +DEPEND="virtual/glibc" + +SLOT="0" +LICENSE="GPL-2 | LGPL" +KEYWORDS="x86" + +src_compile() { + + local myconf + + use perl || myconf="${myconf} --with-perl5=no" + use java || myconf="${myconf} --with-java=no" + use tcltk || myconf="${myconf} --with-tcl=no --with-itcl=no --with-tk=no" + + econf \ + --includedir=/usr/include/libpisock \ + --with-perl5=no \ + --with-python=no \ + --with-java=no \ + --with-tcl=no \ + --with-itcl=no \ + --with-tk=no || die + + cd ${S} + emake || die + + +} + +src_install() { + + make \ + DESTDIR=${D} \ + install || die + + mv ${D}/*.hxx ${D}/usr/include/libpisock/ + + dodoc ChangeLog README TODO NEWS AUTHORS + +} +@ |