diff options
author | Patrick Zimmermann (moHiJ) <patrick@zakweb.de> | 2007-03-15 17:51:01 +0000 |
---|---|---|
committer | Patrick Zimmermann (moHiJ) <patrick@zakweb.de> | 2007-03-15 17:51:01 +0000 |
commit | 2cfd13afdd2e430cb85e5a4f2514d50d4f371520 (patch) | |
tree | 6d46f995ade113a5cb6ac3ec9d28378955f38199 /dev-util/ticpp/ticpp-9999.ebuild | |
parent | sci-biology/clover: new package (bug 142269) (diff) | |
download | sunrise-2cfd13afdd2e430cb85e5a4f2514d50d4f371520.tar.gz sunrise-2cfd13afdd2e430cb85e5a4f2514d50d4f371520.tar.bz2 sunrise-2cfd13afdd2e430cb85e5a4f2514d50d4f371520.zip |
dev-util/ticpp: ticpp is a fork of tinyxml and not a plain wrapper that builds on top of it
svn path=/sunrise/; revision=3247
Diffstat (limited to 'dev-util/ticpp/ticpp-9999.ebuild')
-rw-r--r-- | dev-util/ticpp/ticpp-9999.ebuild | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/dev-util/ticpp/ticpp-9999.ebuild b/dev-util/ticpp/ticpp-9999.ebuild index e066aed78..df62da93b 100644 --- a/dev-util/ticpp/ticpp-9999.ebuild +++ b/dev-util/ticpp/ticpp-9999.ebuild @@ -23,11 +23,10 @@ S=${WORKDIR}/${PN} src_compile() { premake --target gnu || die "creating Makefile failed" - if use debug ; then - emake || die "emake failed" - else - emake CONFIG=Release || die "emake failed" + if use !debug ; then + myconf="CONFIG=Release" fi + emake ${myconf} || die "emake failed" if use doc ; then sed -i -e '/GENERATE_HTMLHELP/s:YES:NO:' dox || die "sed failed" doxygen dox || die "doxygen failed" @@ -36,7 +35,7 @@ src_compile() { src_install () { insinto /usr/include/ticpp - doins ticpp.h ticpprc.h || die "installing headers failed" + doins *.h || die "installing headers failed" if use debug ; then dolib libticppd.a || die "installing library failed" |