summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Hallendal <hallski@gentoo.org>2001-08-31 22:14:38 +0000
committerMikael Hallendal <hallski@gentoo.org>2001-08-31 22:14:38 +0000
commite9eea92dcf8ebfb4b53ac80c044c863ef7b8d97b (patch)
tree3d79858ded030305a03d9f2f47e225fcce687bb2 /dev-libs
parentcleaned up (diff)
downloadhistorical-e9eea92dcf8ebfb4b53ac80c044c863ef7b8d97b.tar.gz
historical-e9eea92dcf8ebfb4b53ac80c044c863ef7b8d97b.tar.bz2
historical-e9eea92dcf8ebfb4b53ac80c044c863ef7b8d97b.zip
cleaned up
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/libunicode/libunicode-0.4-r1.ebuild15
1 files changed, 5 insertions, 10 deletions
diff --git a/dev-libs/libunicode/libunicode-0.4-r1.ebuild b/dev-libs/libunicode/libunicode-0.4-r1.ebuild
index 966fce5286da..fee3753114f2 100644
--- a/dev-libs/libunicode/libunicode-0.4-r1.ebuild
+++ b/dev-libs/libunicode/libunicode-0.4-r1.ebuild
@@ -13,18 +13,13 @@ HOMEPAGE="http://www.gnome.org/"
DEPEND="virtual/glibc"
src_compile() {
- cd ${S}
- try ./configure --host=${CHOST} --prefix=/opt/gnome
- try pmake
+ ./configure --host=${CHOST} --prefix=/opt/gnome || die
+
+ emake || die
}
src_install() {
- cd ${S}
- try make prefix=${D}/opt/gnome install
+ make prefix=${D}/opt/gnome install || die
- dodoc AUTHORS COPYING.* ChangeLog NEWS README THANKS TODO
+ dodoc AUTHORS COPYING.* ChangeLog NEWS README THANKS TODO
}
-
-
-
-