ChangeLog

# ChangeLog for dev-util/acgmake
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/acgmake/ChangeLog,v 1.4 2007/02/08 15:00:09 dsd Exp $

*acgmake-1.2-r2 (08 Feb 2007)

08 Feb 2007; Daniel Drake +acgmake-1.2-r2.ebuild:
Fix propogation of CFLAGS from ebuild level during build

23 Nov 2006; acgmake-1.2-r1.ebuild:
stable on amd64

*acgmake-1.2-r1 (19 Sep 2006)

19 Sep 2006; Daniel Drake -acgmake-1.2.ebuild,
+acgmake-1.2-r1.ebuild:
Fix permissions of installed files

*acgmake-1.2 (18 Sep 2006)

18 Sep 2006; Daniel Drake +metadata.xml,
+acgmake-1.2.ebuild:
Initial import. ebuild by Seemant Kulleen

Manifest

AUX acgmake-1.2-cflags.patch 1882 RMD160 88a6241b92313bf3c6f50266969ccea8c93e12ff SHA1 49e67410d8ee1df700e36453cdaa32e9cab9fe6b SHA256 333406f809cfe375360734765e13cd16ea21c882048bc511fc955e8455e6c583
DIST acgmake-1.2.tgz 60894 RMD160 3803fe5694451b6da5111e20e71fad6e377eeeb7 SHA1 df36d2a7a63c950b893fc89f3adf165524ed0284 SHA256 6da22b8cc63c24ada430ca3120357cff774f1348f11d892956dba49cc9d680e8
EBUILD acgmake-1.2-r1.ebuild 921 RMD160 3126e5a4236b2f806ffdde18b79ad07793af5cb6 SHA1 90e3af93a17ea55c67a4134c16ab51a5d8cf872d SHA256 474276d2c68c1fa3024c3617bc3493568c89de76c11e74b387c29ef7c9f69fe0
EBUILD acgmake-1.2-r2.ebuild 1012 RMD160 1c66bf5e377121e721945263a7ebeca99a8164be SHA1 fa5c2b9d79e4c16f61f35d296176e7da503d1fd5 SHA256 5f2233aa7f60537761b8cfc7128f823f2cc6064fee306dc02b06f26f38432532
MISC ChangeLog 755 RMD160 7f5a09bb8f6b8649765a3f0ce643f0b46ff886c1 SHA1 9c655cf7f0d03734e9793552856beb5145d35b83 SHA256 8276a3a691bec4dddb61a3c67bfdf02ae8dcb89d0ccbe8f731180925a33a84a4
MISC metadata.xml 455 RMD160 051d304b581d9700f8b50e7c021b64bc651de0b8 SHA1 e077b0d9e3e49d05df7d3adf7b2cbe8b8839addf SHA256 1764eeb5c09036331497b2233550c848a3ea26c2ab6669b2f49da6c8d7b8c1b1

acgmake-1.2-r1.ebuild

# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/acgmake/acgmake-1.2-r1.ebuild,v 1.3 2007/07/12 01:05:42 mr_bones_ Exp $

S=${WORKDIR}/${PN}
DESCRIPTION="Build system for large projects"
HOMEPAGE="http://www-i8.informatik.rwth-aachen.de/software/acgmake/html/index.html"
SRC_URI="http://www-i8.informatik.rwth-aachen.de/software/acgmake/${P}.tgz"

LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE=""

DEPEND="app-shells/bash
sys-devel/make"
RDEPEND="${DEPEND}"

src_compile() {
find . -name 'CVS' -type d -print0 | xargs -0 rm -rf
sed -i "s:g++.*:g++:" configs/config.gcc-linux
chmod 644 ${S}/configs/*
chmod 644 ${S}/modules/*
}

src_install() {
insinto /usr/lib/misc/acgmake
doins Config Rules
cp -a bin configs modules ${D}/usr/lib/misc/acgmake

dosym ../lib/misc/acgmake/bin/acgmake /usr/bin/acgmake
}

acgmake-1.2-r2.ebuild

# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/acgmake/acgmake-1.2-r2.ebuild,v 1.2 2007/07/12 01:05:42 mr_bones_ Exp $

inherit eutils

S=${WORKDIR}/${PN}
DESCRIPTION="Build system for large projects"
HOMEPAGE="http://www-i8.informatik.rwth-aachen.de/software/acgmake/html/index.html"
SRC_URI="http://www-i8.informatik.rwth-aachen.de/software/acgmake/${P}.tgz"

LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND="app-shells/bash
sys-devel/make"

src_unpack() {
unpack ${A}
cd ${S}

find . -name 'CVS' -type d -print0 | xargs -0 rm -rf
sed -i "s:g++.*:g++:" configs/config.gcc-linux
chmod 644 ${S}/configs/*
chmod 644 ${S}/modules/*

# Allow ebuilds to set CXXFLAGS
epatch ${FILESDIR}/${P}-cflags.patch
}

src_install() {
insinto /usr/lib/misc/acgmake
doins Config Rules
cp -a bin configs modules ${D}/usr/lib/misc/acgmake

dosym ../lib/misc/acgmake/bin/acgmake /usr/bin/acgmake
}

files

metadata.xml




no-herd

dsd@gentoo.org
Daniel Drake

The tool acgmake provides an easy way to compile large
projects consisting of several source code trees and using additional 3rd party
libraries by just one acgmake command.