diff options
author | Geert Bevin <gbevin@gentoo.org> | 2001-12-07 12:34:51 +0000 |
---|---|---|
committer | Geert Bevin <gbevin@gentoo.org> | 2001-12-07 12:34:51 +0000 |
commit | 33d6fce22d172c7620508ba99ce596be1a67865b (patch) | |
tree | fe149cb55df37ae037c03ff9ee99e121c2fd0ab6 /dev-libs/pilot-link | |
parent | Import utility to control Transmeta Crusoe processors. (diff) | |
download | historical-33d6fce22d172c7620508ba99ce596be1a67865b.tar.gz historical-33d6fce22d172c7620508ba99ce596be1a67865b.tar.bz2 historical-33d6fce22d172c7620508ba99ce596be1a67865b.zip |
Fixed files that were not installed in the image dir.
Diffstat (limited to 'dev-libs/pilot-link')
-rw-r--r-- | dev-libs/pilot-link/files/digest-pilot-link-0.9.6-r3 | 1 | ||||
-rw-r--r-- | dev-libs/pilot-link/pilot-link-0.9.6-r3.ebuild | 60 |
2 files changed, 61 insertions, 0 deletions
diff --git a/dev-libs/pilot-link/files/digest-pilot-link-0.9.6-r3 b/dev-libs/pilot-link/files/digest-pilot-link-0.9.6-r3 new file mode 100644 index 000000000000..6080264f7757 --- /dev/null +++ b/dev-libs/pilot-link/files/digest-pilot-link-0.9.6-r3 @@ -0,0 +1 @@ +MD5 c8e9861317b2acfb1cb363654b309aa6 pilot-link-0.9.6.tar.gz 4403200 diff --git a/dev-libs/pilot-link/pilot-link-0.9.6-r3.ebuild b/dev-libs/pilot-link/pilot-link-0.9.6-r3.ebuild new file mode 100644 index 000000000000..0e6d73f6c615 --- /dev/null +++ b/dev-libs/pilot-link/pilot-link-0.9.6-r3.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# AJ Lewis <aj@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pilot-link/pilot-link-0.9.6-r3.ebuild,v 1.1 2001/12/07 12:34:51 gbevin 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://www.gnu-designs.com/pilot-link/source/${P}.tar.gz + http://www.eskil.org/gnome-pilot/download/tarballs/${P}.tar.gz" +HOMEPAGE="http://www.gnu-designs.com/pilot-link/" +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 + + # The configure-script seems to be someone broken, + # It says that it finds iconv in our glibc but it doesn't + # set the #define correctly, I'll notify one of the pilot-link + # hackers. // Hallski + + # includedir and mandir don't take ${prefix} into account + sed -e "s#= /usr/include#= \${prefix}/include#" \ + -e "s#= /usr/share#= \${prefix}/share#" \ + Makefile > Makefile.new + mv Makefile.new Makefile + + cd ${S}/include + echo "#define HAVE_ICONV 1" >> pi-config.h + + 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 + docinto sgml + dodoc doc/syncabs.sgml + +} |