diff options
author | Jay Pfeifer <pfeifer@gentoo.org> | 2004-08-12 02:03:10 +0000 |
---|---|---|
committer | Jay Pfeifer <pfeifer@gentoo.org> | 2004-08-12 02:03:10 +0000 |
commit | b0f4b0939c64d193ab20184320da4993da4f90f8 (patch) | |
tree | a3b1dfd90e9a3da176f3083e920d758c3672b4a4 /app-misc/tprint/tprint-1.1.0.ebuild | |
parent | stable on amd64 (Manifest recommit) (diff) | |
download | gentoo-2-b0f4b0939c64d193ab20184320da4993da4f90f8.tar.gz gentoo-2-b0f4b0939c64d193ab20184320da4993da4f90f8.tar.bz2 gentoo-2-b0f4b0939c64d193ab20184320da4993da4f90f8.zip |
Initial import.
Diffstat (limited to 'app-misc/tprint/tprint-1.1.0.ebuild')
-rw-r--r-- | app-misc/tprint/tprint-1.1.0.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/app-misc/tprint/tprint-1.1.0.ebuild b/app-misc/tprint/tprint-1.1.0.ebuild new file mode 100644 index 000000000000..6ba05c1ac038 --- /dev/null +++ b/app-misc/tprint/tprint-1.1.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/tprint/tprint-1.1.0.ebuild,v 1.1 2004/08/12 02:03:10 pfeifer Exp $ + +DESCRIPTION="Transparent Print Utility for terminals" +HOMEPAGE="http://sourceforge.net/projects/tprint/" +SRC_URI="mirror://sourceforge/tprint/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +RDEPEND="virtual/libc" +DEPEND="${RDEPEND} + >=sys-apps/sed-4" + +src_unpack() { + unpack ${A} + cd ${S} + + sed -i -e "s:-g -O2 -Wall:${CFLAGS}:g" \ + Makefile || die "Error parsing Makefile" +} + +src_compile() { + emake || die "failed during compiling..." +} + +src_install() { + dodir /etc/tprint + insinto /etc/tprint + doins tprint.conf + exeinto /usr/bin + doexe tprint + + dodoc INSTALL README +} |