summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchim Gottinger <achim@gentoo.org>2001-02-13 14:29:41 +0000
committerAchim Gottinger <achim@gentoo.org>2001-02-13 14:29:41 +0000
commit3d8cec75b1fc83a877e447524209f6dfb7180599 (patch)
treec937d4374de9d6541d99f20e41e07dd8dac85a8b /media-libs/lcms
parent*** empty log message *** (diff)
downloadhistorical-3d8cec75b1fc83a877e447524209f6dfb7180599.tar.gz
historical-3d8cec75b1fc83a877e447524209f6dfb7180599.tar.bz2
historical-3d8cec75b1fc83a877e447524209f6dfb7180599.zip
Maintainence and FHS 2.1 fixes
Added a lot of USE flags GGI support and lcms support for libmng
Diffstat (limited to 'media-libs/lcms')
-rw-r--r--media-libs/lcms/lcms-1.06.build36
1 files changed, 36 insertions, 0 deletions
diff --git a/media-libs/lcms/lcms-1.06.build b/media-libs/lcms/lcms-1.06.build
new file mode 100644
index 000000000000..c1ba754c5d6d
--- /dev/null
+++ b/media-libs/lcms/lcms-1.06.build
@@ -0,0 +1,36 @@
+# Copyright 1999-2000 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# Author Your Name <your email>
+# $Header: /var/cvsroot/gentoo-x86/media-libs/lcms/lcms-1.06.build,v 1.1 2001/02/13 14:29:40 achim Exp $
+
+A=${P}.tar.gz
+S=${WORKDIR}/${P}
+DESCRIPTION="lcms deals with color management stuff"
+SRC_URI="http://www.littlecms.com/${A}"
+HOMEPAGE="http://www.littlecms.com/index.htm"
+
+DEPEND=""
+
+src_compile() {
+
+ try ./configure --prefix=/usr --host=${CHOST}
+ try make
+
+}
+
+src_install () {
+
+ try make DESTDIR=${D} install
+ cd ${D}/usr/include/lcms
+ cp lcms.h lcms.orig
+ sed -e "s:#define VERSION.*::" \
+ -e "s:#define PACKAGE.*::" \
+ lcms.orig > lcms.h
+ rm lcms.orig
+ cd ${S}
+ dodoc AUTHORS COPYING ChangeLog README*
+ docinto txt
+ dodoc doc/*.txt
+
+}
+