diff options
Diffstat (limited to 'app-text/libpaper/libpaper-1.1.14.8.ebuild')
-rw-r--r-- | app-text/libpaper/libpaper-1.1.14.8.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app-text/libpaper/libpaper-1.1.14.8.ebuild b/app-text/libpaper/libpaper-1.1.14.8.ebuild new file mode 100644 index 000000000000..8fb8bfc7762f --- /dev/null +++ b/app-text/libpaper/libpaper-1.1.14.8.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/libpaper/libpaper-1.1.14.8.ebuild,v 1.1 2006/05/08 18:40:21 genstef Exp $ + +inherit versionator + +MY_P="libpaper_$(replace_version_separator 3 ubuntu)" +DESCRIPTION="Library for handling paper characteristics" +HOMEPAGE="http://packages.ubuntulinux.org/dapper/source/libpaper" +SRC_URI="http://archive.ubuntu.com/ubuntu/pool/main/libp/libpaper/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +S=${WORKDIR}/${MY_P/_/-} + +src_unpack() { + unpack ${A} + cd ${S} + ln -s /usr/share/libtool/config.sub + ln -s /usr/share/libtool/config.guess +} + +src_install() { + make DESTDIR=${D} install || die "make install failed" + + dodoc README ChangeLog +} |