diff options
author | Heinrich Wendel <lanius@gentoo.org> | 2003-07-15 12:57:38 +0000 |
---|---|---|
committer | Heinrich Wendel <lanius@gentoo.org> | 2003-07-15 12:57:38 +0000 |
commit | 06028aea713625e05fb767618c94bd3aac701d5f (patch) | |
tree | e472310deb94b97c129cafe7d9a84b47a7b81e22 /net-print/xpp | |
parent | fixed bug 23722 (diff) | |
download | historical-06028aea713625e05fb767618c94bd3aac701d5f.tar.gz historical-06028aea713625e05fb767618c94bd3aac701d5f.tar.bz2 historical-06028aea713625e05fb767618c94bd3aac701d5f.zip |
fixed bug 23722
Diffstat (limited to 'net-print/xpp')
-rw-r--r-- | net-print/xpp/Manifest | 4 | ||||
-rw-r--r-- | net-print/xpp/files/digest-xpp-1.1-r2 | 1 | ||||
-rw-r--r-- | net-print/xpp/files/inputslider.h.patch | 19 | ||||
-rw-r--r-- | net-print/xpp/xpp-1.1-r2.ebuild | 40 |
4 files changed, 62 insertions, 2 deletions
diff --git a/net-print/xpp/Manifest b/net-print/xpp/Manifest index b62b88923baa..2824ad547332 100644 --- a/net-print/xpp/Manifest +++ b/net-print/xpp/Manifest @@ -1,7 +1,7 @@ -MD5 940aead9fd155b69b772aa821ea354f4 ChangeLog 1595 +MD5 c4f6cf3d400798861bff058836bf2f59 ChangeLog 1595 MD5 c6ce29dab486335160d7fce7f5691626 xpp-1.1-r1.ebuild 834 MD5 35bfe49814ef9864de999c6007c787b5 xpp-1.1.ebuild 838 -MD5 d794dd2104a945886348373c44d9e99b xpp-1.1-r2.ebuild 785 +MD5 161ba8742f1f3596e08f1eacd4efcd17 xpp-1.1-r2.ebuild 879 MD5 8d0b2e1426766ac3ae959549107569a6 files/cups.diff 1254 MD5 257b024e4ea38beeef9839163049363e files/digest-xpp-1.1 58 MD5 257b024e4ea38beeef9839163049363e files/digest-xpp-1.1-r1 58 diff --git a/net-print/xpp/files/digest-xpp-1.1-r2 b/net-print/xpp/files/digest-xpp-1.1-r2 new file mode 100644 index 000000000000..663ffa038e46 --- /dev/null +++ b/net-print/xpp/files/digest-xpp-1.1-r2 @@ -0,0 +1 @@ +MD5 abf4634edf3ff15c6f4db436d68fa835 xpp-1.1.tar.gz 72611 diff --git a/net-print/xpp/files/inputslider.h.patch b/net-print/xpp/files/inputslider.h.patch new file mode 100644 index 000000000000..fa606900de2d --- /dev/null +++ b/net-print/xpp/files/inputslider.h.patch @@ -0,0 +1,19 @@ +--- inputslider.h.1 2003-06-30 16:31:36.000000000 +0200 ++++ inputslider.h 2003-06-30 16:31:50.000000000 +0200 +@@ -85,14 +85,14 @@ + void input_box(Fl_Boxtype s) { + inputfield_->box(Fl_Widget::box()); + } +- void color(Fl_Color s) { ++ void color(int s) { + Fl_Widget::color(s); + slider_->color(Fl_Widget::color()); + } + void input_color(Fl_Color s) { + inputfield_->color(Fl_Widget::color()); + } +- void selection_color(Fl_Color s) { ++ void selection_color(int s) { + Fl_Widget::selection_color(s); + slider_->selection_color(Fl_Widget::selection_color()); + } diff --git a/net-print/xpp/xpp-1.1-r2.ebuild b/net-print/xpp/xpp-1.1-r2.ebuild new file mode 100644 index 000000000000..5f5f5337b4f9 --- /dev/null +++ b/net-print/xpp/xpp-1.1-r2.ebuild @@ -0,0 +1,40 @@ +# 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-r2.ebuild,v 1.1 2003/07/15 12:57:30 lanius Exp $ + +inherit eutils + +DESCRIPTION="X Printing Panel" +SRC_URI="mirror://sourceforge/cups/${P}.tar.gz" +HOMEPAGE="http://cups.sourceforge.net/xpp/" + +KEYWORDS="~x86" +SLOT="0" +LICENSE="GPL-2" + +DEPEND="virtual/glibc + virtual/x11 + >=net-print/cups-1.1.14 + >=x11-libs/fltk-1.1" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/cups.diff || die + epatch ${FILESDIR}/inputslider.h.patch || die +} + +src_compile() { + export CXX=g++ + export LDFLAGS="-L/usr/lib/fltk-1.1" + 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 +} |