diff options
author | 2001-08-31 22:14:38 +0000 | |
---|---|---|
committer | 2001-08-31 22:14:38 +0000 | |
commit | cb66a209cebc4e5891b9814cfe8277a8ef7bc2c1 (patch) | |
tree | e6304bfd5bea0849424ad1229ba474c2df28481e /dev-libs/libunicode | |
parent | cleaned up (diff) | |
download | gentoo-2-cb66a209cebc4e5891b9814cfe8277a8ef7bc2c1.tar.gz gentoo-2-cb66a209cebc4e5891b9814cfe8277a8ef7bc2c1.tar.bz2 gentoo-2-cb66a209cebc4e5891b9814cfe8277a8ef7bc2c1.zip |
cleaned up
Diffstat (limited to 'dev-libs/libunicode')
-rw-r--r-- | dev-libs/libunicode/libunicode-0.4-r1.ebuild | 15 |
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 } - - - - |