diff options
author | 2013-08-14 16:10:20 +0000 | |
---|---|---|
committer | 2013-08-14 16:10:20 +0000 | |
commit | b428931e0fdffb8967060db2dec4499a53f7a1f5 (patch) | |
tree | 6d3cef1a6f8ddb5b94b202c8354fb9d002ac9645 | |
parent | Dropped herds and maintainers, assigned to maintainer-needed; as per confirma... (diff) | |
download | gentoo-2-b428931e0fdffb8967060db2dec4499a53f7a1f5.tar.gz gentoo-2-b428931e0fdffb8967060db2dec4499a53f7a1f5.tar.bz2 gentoo-2-b428931e0fdffb8967060db2dec4499a53f7a1f5.zip |
Fixed and marked for ~x64-macos, thanks for initial patch by Changyuan Yu in bug #481046
(Portage version: 2.2.01.22288-prefix/cvs/Darwin i386, signed Manifest commit with key 0x5F75F607C5C74E89)
-rw-r--r-- | app-misc/task/ChangeLog | 6 | ||||
-rw-r--r-- | app-misc/task/task-2.2.0.ebuild | 11 |
2 files changed, 11 insertions, 6 deletions
diff --git a/app-misc/task/ChangeLog b/app-misc/task/ChangeLog index a5899357f8a5..0421f95d5694 100644 --- a/app-misc/task/ChangeLog +++ b/app-misc/task/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-misc/task # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/task/ChangeLog,v 1.44 2013/04/09 03:21:41 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/task/ChangeLog,v 1.45 2013/08/14 16:10:20 grobian Exp $ + + 14 Aug 2013; Fabian Groffen <grobian@gentoo.org> task-2.2.0.ebuild: + Fixed and marked for ~x64-macos, thanks for initial patch by Changyuan Yu in + bug #481046 *task-2.2.0 (09 Apr 2013) diff --git a/app-misc/task/task-2.2.0.ebuild b/app-misc/task/task-2.2.0.ebuild index fe4b39db4a92..16c32ce509a8 100644 --- a/app-misc/task/task-2.2.0.ebuild +++ b/app-misc/task/task-2.2.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/task/task-2.2.0.ebuild,v 1.1 2013/04/09 03:21:41 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/task/task-2.2.0.ebuild,v 1.2 2013/08/14 16:10:20 grobian Exp $ EAPI=5 @@ -12,14 +12,15 @@ SRC_URI="http://taskwarrior.org/download/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~x86 ~x64-macos" IUSE="vim-syntax zsh-completion" src_prepare() { # use the correct directory locations - sed -i -e "s:/usr/local/share/doc/task/rc:/usr/share/task/rc:" \ + sed -i -e "s:/usr/local/share/doc/task/rc:${EPREFIX}/usr/share/task/rc:" \ doc/man/taskrc.5.in doc/man/task-tutorial.5.in doc/man/task-color.5.in || die - sed -i -e "s:/usr/local/bin:/usr/bin:" doc/man/task-faq.5.in scripts/add-ons/* || die + sed -i -e "s:/usr/local/bin:${EPREFIX}/usr/bin:" \ + doc/man/task-faq.5.in scripts/add-ons/* || die # don't automatically install scripts sed -i -e '/scripts/d' CMakeLists.txt || die @@ -29,7 +30,7 @@ src_prepare() { src_configure() { mycmakeargs=( - -DTASK_DOCDIR=/usr/share/doc/${PF} + -DTASK_DOCDIR="${EPREFIX}"/usr/share/doc/${PF} ) cmake-utils_src_configure } |