diff options
author | Ulrich Müller <ulm@gentoo.org> | 2009-03-02 21:16:10 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2009-03-02 21:16:10 +0000 |
commit | b3b9f7694b993cd52f824d05b8420f3980ddc007 (patch) | |
tree | 19ff42370deccc10a0b18d2e9da6dc1bbec54cb3 /app-emacs/doxymacs | |
parent | Version bump via perl-bump experimental tool. (diff) | |
download | gentoo-2-b3b9f7694b993cd52f824d05b8420f3980ddc007.tar.gz gentoo-2-b3b9f7694b993cd52f824d05b8420f3980ddc007.tar.bz2 gentoo-2-b3b9f7694b993cd52f824d05b8420f3980ddc007.zip |
Remove --with-datadir configure option. Define DESTDIR for installation.
(Portage version: 2.2_rc23/cvs/Linux i686)
Diffstat (limited to 'app-emacs/doxymacs')
-rw-r--r-- | app-emacs/doxymacs/ChangeLog | 10 | ||||
-rw-r--r-- | app-emacs/doxymacs/doxymacs-1.8.0-r3.ebuild | 33 |
2 files changed, 40 insertions, 3 deletions
diff --git a/app-emacs/doxymacs/ChangeLog b/app-emacs/doxymacs/ChangeLog index 877d7fd3a476..5b278c4e3d08 100644 --- a/app-emacs/doxymacs/ChangeLog +++ b/app-emacs/doxymacs/ChangeLog @@ -1,9 +1,13 @@ # ChangeLog for app-emacs/doxymacs # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/doxymacs/ChangeLog,v 1.5 2009/03/02 18:36:22 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/doxymacs/ChangeLog,v 1.6 2009/03/02 21:16:10 ulm Exp $ - 02 Mar 2009; Ulrich Mueller <ulm@gentoo.org> doxymacs-1.8.0-r2.ebuild: - Append "-Wno-error" to CFLAGS, bug 260874. +*doxymacs-1.8.0-r3 (02 Mar 2009) + + 02 Mar 2009; Ulrich Mueller <ulm@gentoo.org> doxymacs-1.8.0-r2.ebuild, + +doxymacs-1.8.0-r3.ebuild: + Append "-Wno-error" to CFLAGS, bug 260874. Remove --with-datadir configure + option since it has no effect. Define DESTDIR for installation. 02 Apr 2008; Christian Faulhammer <opfer@gentoo.org> doxymacs-1.8.0-r2.ebuild: diff --git a/app-emacs/doxymacs/doxymacs-1.8.0-r3.ebuild b/app-emacs/doxymacs/doxymacs-1.8.0-r3.ebuild new file mode 100644 index 000000000000..0c0e456009b2 --- /dev/null +++ b/app-emacs/doxymacs/doxymacs-1.8.0-r3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/doxymacs/doxymacs-1.8.0-r3.ebuild,v 1.1 2009/03/02 21:16:10 ulm Exp $ + +NEED_EMACS=22 + +inherit elisp flag-o-matic + +DESCRIPTION="Doxygen editing minor mode" +HOMEPAGE="http://doxymacs.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">=dev-libs/libxml2-2.6.13" +RDEPEND="${DEPEND}" + +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + append-flags -Wno-error #260874 + econf --with-lispdir="${SITELISP}/${PN}" || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die + dodoc AUTHORS ChangeLog NEWS README TODO || die "dodoc failed" +} |