diff options
author | Jeroen Roovers <jer@gentoo.org> | 2015-01-26 18:55:40 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2015-01-26 18:55:40 +0000 |
commit | 6157fd984ff6c7102dba3897e14d571c469cc26a (patch) | |
tree | 391b8d27355633671b22286429971a1b28ebc664 /x11-apps/amlc | |
parent | Limit patch version to <2.7.3. See bug #537852 (diff) | |
download | gentoo-2-6157fd984ff6c7102dba3897e14d571c469cc26a.tar.gz gentoo-2-6157fd984ff6c7102dba3897e14d571c469cc26a.tar.bz2 gentoo-2-6157fd984ff6c7102dba3897e14d571c469cc26a.zip |
Fix HOMEPAGE/SRC_URI (bug #537820).
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'x11-apps/amlc')
-rw-r--r-- | x11-apps/amlc/ChangeLog | 7 | ||||
-rw-r--r-- | x11-apps/amlc/amlc-0.5.1.ebuild | 14 |
2 files changed, 12 insertions, 9 deletions
diff --git a/x11-apps/amlc/ChangeLog b/x11-apps/amlc/ChangeLog index e1884c203d45..4df1f697e0b2 100644 --- a/x11-apps/amlc/ChangeLog +++ b/x11-apps/amlc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-apps/amlc -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-apps/amlc/ChangeLog,v 1.7 2014/08/10 20:07:04 slyfox Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-apps/amlc/ChangeLog,v 1.8 2015/01/26 18:55:40 jer Exp $ + + 26 Jan 2015; Jeroen Roovers <jer@gentoo.org> amlc-0.5.1.ebuild: + Fix HOMEPAGE/SRC_URI (bug #537820). 10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> amlc-0.5.1.ebuild: QA: drop trailing '.' from DESCRIPTION diff --git a/x11-apps/amlc/amlc-0.5.1.ebuild b/x11-apps/amlc/amlc-0.5.1.ebuild index df3f8513eb7f..d6d4beed1e02 100644 --- a/x11-apps/amlc/amlc-0.5.1.ebuild +++ b/x11-apps/amlc/amlc-0.5.1.ebuild @@ -1,26 +1,26 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-apps/amlc/amlc-0.5.1.ebuild,v 1.7 2014/08/10 20:07:04 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-apps/amlc/amlc-0.5.1.ebuild,v 1.8 2015/01/26 18:55:40 jer Exp $ +EAPI=5 inherit toolchain-funcs DESCRIPTION="Another Modeline Calculator, generates quality X11 display configs easily" -HOMEPAGE="http://amlc.berlios.de" -SRC_URI="http://amlc.berlios.de/src/${P}.cpp" +HOMEPAGE="http://sourceforge.net/projects/amlc.berlios/" +SRC_URI="https://dev.gentoo.org/~jer/${P}.cpp" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 x86" -IUSE="" S=${WORKDIR} -src_unpack() { +src_prepare() { cp "${DISTDIR}"/${P}.cpp "${S}" } src_compile() { - $(tc-getCXX) ${CXXFLAGS} ${LDFLAGS} ${P}.cpp -o ${PN} || die "build failed." + $(tc-getCXX) ${CXXFLAGS} ${LDFLAGS} ${P}.cpp -o ${PN} || die } src_install() { |