# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ SRC_URI="http://downloads.sourceforge.net/libserial/libserial-0.5.2.tar.gz" HOMEPAGE="http://sourceforge.net/projects/libserial/" DESCRIPTION="A collection of C++ classes which allow the serial port on POSIX systems to be accessed like an iostream object." KEYWORDS="~x86" IUSE="" LICENSE="GPL2" SLOT="0" DEPEND="" RDEPEND="" src_compile(){ cd ${WORKDIR}/libserial-0.5.2 ./configure --prefix=${D}/usr || die "./configure failed" make || die "make failed" } src_install() { cd ${WORKDIR}/libserial-0.5.2 make install }