diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-05-21 04:37:35 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-05-21 04:37:35 +0000 |
commit | e99c4b5e63b44843e8665e7f56c90b790a4ae85a (patch) | |
tree | 9a3bda20916d0579ea060cc19a006f11920baea4 /dev-libs | |
parent | Masked perl 5.6.1-r4, for testing. (diff) | |
download | gentoo-2-e99c4b5e63b44843e8665e7f56c90b790a4ae85a.tar.gz gentoo-2-e99c4b5e63b44843e8665e7f56c90b790a4ae85a.tar.bz2 gentoo-2-e99c4b5e63b44843e8665e7f56c90b790a4ae85a.zip |
version bump
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/pilot-link/ChangeLog | 11 | ||||
-rw-r--r-- | dev-libs/pilot-link/files/digest-pilot-link-0.10.99 | 1 | ||||
-rw-r--r-- | dev-libs/pilot-link/pilot-link-0.10.99.ebuild | 44 |
3 files changed, 55 insertions, 1 deletions
diff --git a/dev-libs/pilot-link/ChangeLog b/dev-libs/pilot-link/ChangeLog index a4dc99886d28..2bace8bf38e9 100644 --- a/dev-libs/pilot-link/ChangeLog +++ b/dev-libs/pilot-link/ChangeLog @@ -1,6 +1,15 @@ # 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.2 2002/04/06 16:23:27 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pilot-link/ChangeLog,v 1.3 2002/05/21 04:37:35 seemant Exp $ + +*pilot-link-0.10.99 (20 May 2002) + + 20 May 2002; Seemant Kulleen <seemant@gentoo.org> + pilot-link-0.10.99.ebuild files/digest-pilot-link-0.10.99 : + + This is a developer release of pilot-link, but it works with a wider + variety of hardware. gnome-pilot had to be patched for it as well. the + new gnome-pilot and this are masked for the present. 06 Apr 2002; G.Bevin <gbevin@gentoo.org> files/pilot-link-0.9.6-gcc3.diff : diff --git a/dev-libs/pilot-link/files/digest-pilot-link-0.10.99 b/dev-libs/pilot-link/files/digest-pilot-link-0.10.99 new file mode 100644 index 000000000000..9ffd2367c606 --- /dev/null +++ b/dev-libs/pilot-link/files/digest-pilot-link-0.10.99 @@ -0,0 +1 @@ +MD5 c7acfa7464be5eee763137a590a6f282 pilot-link-0.10.99.tar.gz 621520 diff --git a/dev-libs/pilot-link/pilot-link-0.10.99.ebuild b/dev-libs/pilot-link/pilot-link-0.10.99.ebuild new file mode 100644 index 000000000000..5b17a7c92873 --- /dev/null +++ b/dev-libs/pilot-link/pilot-link-0.10.99.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# AJ Lewis <aj@gentoo.org> +# + +A=${P}.tar.gz +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/${A}" +HOMEPAGE="http://www.pilot-link.org/" +DEPEND="virtual/glibc" + +src_compile() { + ./configure --host=${CHOST} \ + --prefix=/usr/ \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --includedir=/usr/include/libpisock \ + --with-tcl=no \ + --with-itcl=no \ + --with-tk=no \ + --with-python=no \ + --with-java=no \ + --with-perl5=no + assert + + cd ${S} + emake || die +} + +src_install() { + + make prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + includedir=${D}/usr/include/libpisock \ + infodir=${D}/usr/share/info \ + install || die + + dodoc COPYING COPYING.LIB ChangeLog README TODO + +} |