diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2004-07-27 12:36:04 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2004-07-27 12:36:04 +0000 |
commit | 99a478367555aeac2789623348f6a2ba42d7cac0 (patch) | |
tree | 80c80413f5e8b30086da03cc211f23fa8838eb0b | |
parent | Changed all calls to XFree86 to just X to make it X server agnostic. (Manifes... (diff) | |
download | gentoo-2-99a478367555aeac2789623348f6a2ba42d7cac0.tar.gz gentoo-2-99a478367555aeac2789623348f6a2ba42d7cac0.tar.bz2 gentoo-2-99a478367555aeac2789623348f6a2ba42d7cac0.zip |
Slightly simplified
-rw-r--r-- | x11-misc/icecc/icecc-2.7.ebuild | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/x11-misc/icecc/icecc-2.7.ebuild b/x11-misc/icecc/icecc-2.7.ebuild index ea76e7c20ea2..1b1c1626aa0c 100644 --- a/x11-misc/icecc/icecc-2.7.ebuild +++ b/x11-misc/icecc/icecc-2.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/icecc/icecc-2.7.ebuild,v 1.1 2004/07/27 12:10:20 phosphan Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/icecc/icecc-2.7.ebuild,v 1.2 2004/07/27 12:36:04 phosphan Exp $ inherit eutils @@ -18,11 +18,7 @@ DEPEND=">=x11-libs/qt-3.0.0" src_unpack() { unpack ${A} cd ${S} - sed -e "s:/usr/local:${D}/usr:" -i ${PN}.pro || die "sed failed" - local file - for file in *.cpp; do - sed -e 's:PREFIX:"/usr":' -i ${file} - done + sed -e "s:/usr/local:/usr:" -i ${PN}.pro || die "sed failed" } src_compile() { @@ -31,7 +27,7 @@ src_compile() { } src_install() { - einstall || die + make INSTALL_ROOT="${D}" install || die rm -rf ${D}/usr/doc dohtml ${PN}/docs/en/*.{html,sgml} |