blob: 424667e94f0898c9d47b02fa04c78f01f9877324 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
S=${WORKDIR}/${P}
DESCRIPTION="X Printing Panel"
SRC_URI="mirror://sourceforge/cups/${P}.tar.gz"
HOMEPAGE="http://cups.sourceforge.net/xpp/"
DEPEND="virtual/glibc >=net-print/cups-1.1.14
>=x11-libs/fltk-1.0.11"
src_compile() {
try ./configure --prefix=/usr --host=${CHOST}
try make
}
src_install () {
try make DESTDIR=${D} install
dodoc LICENSE ChangeLog README
}
|