46 lines
1 KiB
Bash
46 lines
1 KiB
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-libs/suikyo/suikyo-2.1.0-r1.ebuild,v 1.7 2010/01/10 18:46:25 nixnut Exp $
|
|
|
|
inherit elisp-common eutils multilib ruby
|
|
|
|
DESCRIPTION="Romaji Hiragana conversion library"
|
|
HOMEPAGE="http://taiyaki.org/suikyo/"
|
|
SRC_URI="http://prime.sourceforge.jp/src/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86"
|
|
IUSE="emacs"
|
|
|
|
DEPEND="emacs? ( virtual/emacs )"
|
|
|
|
RUBY_ECONF="--with-suikyo-docdir=/usr/share/doc/${PF}/html
|
|
--with-rubydir=/usr/$(get_libdir)/ruby/site_ruby"
|
|
|
|
SITEFILE=50${PN}-gentoo.el
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
epatch "${FILESDIR}"/${P}-pkgconfig.patch
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die
|
|
erubydoc
|
|
|
|
if use emacs ; then
|
|
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
|
|
else
|
|
rm -rf "${D}"/usr/share/emacs/
|
|
fi
|
|
}
|
|
|
|
pkg_postinst() {
|
|
use emacs && elisp-site-regen
|
|
}
|
|
|
|
pkg_postrm() {
|
|
use emacs && elisp-site-regen
|
|
}
|