diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-10-14 11:52:12 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-10-14 11:52:12 +0000 |
commit | 764baeb2c6a16f5a15c5d122e46ab152518887fc (patch) | |
tree | 423f61218d183d1638030fd72f60ad7281ff935f /net-print/qtcups | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-764baeb2c6a16f5a15c5d122e46ab152518887fc.tar.gz gentoo-2-764baeb2c6a16f5a15c5d122e46ab152518887fc.tar.bz2 gentoo-2-764baeb2c6a16f5a15c5d122e46ab152518887fc.zip |
*** empty log message ***
Diffstat (limited to 'net-print/qtcups')
-rw-r--r-- | net-print/qtcups/files/digest-qtcups-1.1 | 1 | ||||
-rw-r--r-- | net-print/qtcups/qtcups-1.1.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/net-print/qtcups/files/digest-qtcups-1.1 b/net-print/qtcups/files/digest-qtcups-1.1 new file mode 100644 index 000000000000..c4e3f496b898 --- /dev/null +++ b/net-print/qtcups/files/digest-qtcups-1.1 @@ -0,0 +1 @@ +MD5 b4f34a6f9266b97915fe5daa5bae87e8 qtcups-1.1.tar.gz diff --git a/net-print/qtcups/qtcups-1.1.ebuild b/net-print/qtcups/qtcups-1.1.ebuild new file mode 100644 index 000000000000..2dc201f9ef99 --- /dev/null +++ b/net-print/qtcups/qtcups-1.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-print/qtcups/qtcups-1.1.ebuild,v 1.1 2000/10/14 11:52:12 achim Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="QT Frontend for the Common UNIX printing system" +SRC_URI="ftp://cups.sourceforge.net/pub/cups/qtcups/${A}" +HOMEPAGE="http://cups.sourceforge.net" + + +src_compile() { + + cd ${S} + try ./configure --prefix=/usr/X11R6 --host=${CHOST} --enable-qt2 + try make + +} + +src_install () { + + cd ${S} + try make DESTDIR=${D} install + +} + |