diff options
author | George Shapovalov <george@gentoo.org> | 2002-05-09 08:42:31 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2002-05-09 08:42:31 +0000 |
commit | 0120770655c286a6c1aafd46202d2a7f56f0f673 (patch) | |
tree | ab4d3615e22e74e437daa2d32375153319f6f8c8 /media-libs/t1lib | |
parent | new version of libgpio (old one ceased to exist BTW) (diff) | |
download | historical-0120770655c286a6c1aafd46202d2a7f56f0f673.tar.gz historical-0120770655c286a6c1aafd46202d2a7f56f0f673.tar.bz2 historical-0120770655c286a6c1aafd46202d2a7f56f0f673.zip |
fixed sandbox violation
Diffstat (limited to 'media-libs/t1lib')
-rw-r--r-- | media-libs/t1lib/t1lib-1.3.1.ebuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/media-libs/t1lib/t1lib-1.3.1.ebuild b/media-libs/t1lib/t1lib-1.3.1.ebuild index bb9827d926c3..e0e2142218f6 100644 --- a/media-libs/t1lib/t1lib-1.3.1.ebuild +++ b/media-libs/t1lib/t1lib-1.3.1.ebuild @@ -12,6 +12,15 @@ HOMEPAGE="http://www.neuroinformatik.ruhr-uni-bochum.de/ini/PEOPLE/rmz/t1lib/t1l DEPEND="X? ( virtual/x11 ) tetex? ( >=app-text/tetex-1.0.7 )" +src_unpack() { + unpack "${P}.tar.gz" + + cd ${S}/doc + mv Makefile.in Makefile.in-orig + sed -e "s:dvips:#dvips:" Makefile.in-orig>Makefile.in + +} + src_compile() { local myconf @@ -30,7 +39,7 @@ src_compile() { --datadir=/etc \ ${myconf} || die - emake ${myopt} || die + make ${myopt} || die } src_install() { @@ -56,5 +65,8 @@ src_install() { cd .. dodoc Changes LGPL LICENSE README* + cd doc + insinto /usr/share/doc/t1lib-1.3.1/ + doins *.pdf *.dvi } |