diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-08-15 16:29:07 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-08-15 16:29:07 +0000 |
commit | 1f46f60d339f01fe82cbd4bb1e9c194752c52ec7 (patch) | |
tree | 77e5029497cbb195af06474f2b2b4fde1f6e47f6 /app-admin/modlogan | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-1f46f60d339f01fe82cbd4bb1e9c194752c52ec7.tar.gz gentoo-2-1f46f60d339f01fe82cbd4bb1e9c194752c52ec7.tar.bz2 gentoo-2-1f46f60d339f01fe82cbd4bb1e9c194752c52ec7.zip |
*** empty log message ***
Diffstat (limited to 'app-admin/modlogan')
-rw-r--r-- | app-admin/modlogan/files/digest | 2 | ||||
-rw-r--r-- | app-admin/modlogan/modlogan-0.5.2.ebuild | 48 |
2 files changed, 49 insertions, 1 deletions
diff --git a/app-admin/modlogan/files/digest b/app-admin/modlogan/files/digest index 877ae575e8d3..8ac1123c4139 100644 --- a/app-admin/modlogan/files/digest +++ b/app-admin/modlogan/files/digest @@ -1,2 +1,2 @@ -MD5 881e534e642c76b3c00761159be23955 modlogan-0.5.1.tar.gz +MD5 0ddeb82eca4eae1a5c945cff90f3b5fd modlogan-0.5.2.tar.gz MD5 5a57e8f7ce69d31dce5cf12e3de17b70 gd-1.8.1.tar.gz diff --git a/app-admin/modlogan/modlogan-0.5.2.ebuild b/app-admin/modlogan/modlogan-0.5.2.ebuild new file mode 100644 index 000000000000..9b634a742611 --- /dev/null +++ b/app-admin/modlogan/modlogan-0.5.2.ebuild @@ -0,0 +1,48 @@ +# 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/app-admin/modlogan/modlogan-0.5.2.ebuild,v 1.1 2000/08/15 16:29:07 achim Exp $ + +P=modlogan-0.5.2 +A="${P}.tar.gz gd-1.8.1.tar.gz" +S=${WORKDIR}/${P} +CATEGORY="app-admin" +DESCRIPTION="Logfile Analyzer" +SRC_URI="http://www.kneschke.de/projekte/modlogan/download/${P}.tar.gz + http://www.kneschke.de/projekte/modlogan/download/gd-1.8.1.tar.gz" + +src_unpack() { + unpack ${A} +} + +src_compile() { + cd ${S}/../gd-1.8.1 + CFLAGS="$CFLAGS -I/usr/include/freetype" ./configure + make + cp .libs/libgd.so.0.0.0 libgd.so.0.0.0 + ln -s libgd.so.0.0.0 libgd.so + cd ${S} + ./configure --host=${CHOST} --prefix=/usr --enable-plugins \ + --with-mysql=/usr --with-gd=${WORKDIR}/gd-1.8.1/ \ + --with-catgets + make +} + +src_install() { + cd ${S}/../gd-1.8.1 + into /usr + dolib libgd.so.0.0.0 + cd ${S} + make prefix=${D}/usr install + prepman + dodoc AUTHORS COPYING ChangeLog README NEWS TODO + dodoc doc/*.txt doc/*.conf doc/glosar doc/stats + docinto html + dodoc doc/*.html +} + + + + + + |