diff options
author | Heinrich Wendel <lanius@gentoo.org> | 2004-12-21 14:51:14 +0000 |
---|---|---|
committer | Heinrich Wendel <lanius@gentoo.org> | 2004-12-21 14:51:14 +0000 |
commit | 19ac9608d950becb2a96cf2a4d1c27fae5ce4639 (patch) | |
tree | 9e91554a85d4583289feb8471f047e14a34f4d77 /net-print/xpp/xpp-1.5.ebuild | |
parent | Marking stable x86 (diff) | |
download | historical-19ac9608d950becb2a96cf2a4d1c27fae5ce4639.tar.gz historical-19ac9608d950becb2a96cf2a4d1c27fae5ce4639.tar.bz2 historical-19ac9608d950becb2a96cf2a4d1c27fae5ce4639.zip |
versino bump
Diffstat (limited to 'net-print/xpp/xpp-1.5.ebuild')
-rw-r--r-- | net-print/xpp/xpp-1.5.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/net-print/xpp/xpp-1.5.ebuild b/net-print/xpp/xpp-1.5.ebuild new file mode 100644 index 000000000000..6dc4faae6dde --- /dev/null +++ b/net-print/xpp/xpp-1.5.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-print/xpp/xpp-1.5.ebuild,v 1.1 2004/12/21 14:51:14 lanius Exp $ + +inherit eutils + +DESCRIPTION="X Printing Panel" +SRC_URI="mirror://sourceforge/cups/${P}.tar.gz" +HOMEPAGE="http://cups.sourceforge.net/xpp/" + +KEYWORDS="~x86 ~amd64" +IUSE="" +SLOT="0" +LICENSE="GPL-2" + +DEPEND="virtual/libc + virtual/x11 + >=net-print/cups-1.1.14 + >=x11-libs/fltk-1.1" + +src_compile() { + export CXX=g++ + export LDFLAGS="-L/usr/lib/fltk-1.1 -lfltk" + export CPPFLAGS="-I/usr/include/fltk-1.1" + + econf || die "configure failed" + + make || die "make failed" +} + +src_install() { + einstall || die "make install failed" + dodoc LICENSE ChangeLog README +} |