diff options
author | Mikael Hallendal <hallski@gentoo.org> | 2001-08-31 22:14:38 +0000 |
---|---|---|
committer | Mikael Hallendal <hallski@gentoo.org> | 2001-08-31 22:14:38 +0000 |
commit | e9eea92dcf8ebfb4b53ac80c044c863ef7b8d97b (patch) | |
tree | 3d79858ded030305a03d9f2f47e225fcce687bb2 /dev-libs/libunicode | |
parent | cleaned up (diff) | |
download | historical-e9eea92dcf8ebfb4b53ac80c044c863ef7b8d97b.tar.gz historical-e9eea92dcf8ebfb4b53ac80c044c863ef7b8d97b.tar.bz2 historical-e9eea92dcf8ebfb4b53ac80c044c863ef7b8d97b.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 } - - - - |