diff options
Diffstat (limited to 'net-print/xpp/xpp-1.1-r1.ebuild')
-rw-r--r-- | net-print/xpp/xpp-1.1-r1.ebuild | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/net-print/xpp/xpp-1.1-r1.ebuild b/net-print/xpp/xpp-1.1-r1.ebuild index c969d152ddee..e4aba02af1c1 100644 --- a/net-print/xpp/xpp-1.1-r1.ebuild +++ b/net-print/xpp/xpp-1.1-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-print/xpp/xpp-1.1-r1.ebuild,v 1.2 2003/02/13 15:27:01 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-print/xpp/xpp-1.1-r1.ebuild,v 1.3 2003/02/14 21:34:57 vapier Exp $ -S=${WORKDIR}/${P} +inherit eutils DESCRIPTION="X Printing Panel" SRC_URI="mirror://sourceforge/cups/${P}.tar.gz" @@ -17,18 +17,13 @@ DEPEND="virtual/glibc >=net-print/cups-1.1.14 =x11-libs/fltk-1.0.11*" -inherit eutils - src_unpack() { - unpack ${A} cd ${S} epatch ${FILESDIR}/cups.diff || die - } src_compile() { - export CXX=g++ export LDFLAGS="-L/usr/lib/fltk-1.0" export CPPFLAGS="-I/usr/include/fltk-1.0" @@ -36,14 +31,9 @@ src_compile() { econf || die "configure failed" make || die "make failed" - } -src_install () { - +src_install() { einstall || die "make install failed" - dodoc LICENSE ChangeLog README - } - |