diff options
author | George Shapovalov <george@gentoo.org> | 2003-01-05 06:59:26 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2003-01-05 06:59:26 +0000 |
commit | a471aeadd05b7928ff7618c333079ae03c06fa9e (patch) | |
tree | a9b1f383af8b15b78ac156c564e32d22efbf8a95 /dev-libs/ptypes | |
parent | new package - OO-DBMS that holds all data in memory; interfaces for C/C++/Kylix (diff) | |
download | gentoo-2-a471aeadd05b7928ff7618c333079ae03c06fa9e.tar.gz gentoo-2-a471aeadd05b7928ff7618c333079ae03c06fa9e.tar.bz2 gentoo-2-a471aeadd05b7928ff7618c333079ae03c06fa9e.zip |
new package
Diffstat (limited to 'dev-libs/ptypes')
-rw-r--r-- | dev-libs/ptypes/ChangeLog | 9 | ||||
-rw-r--r-- | dev-libs/ptypes/files/digest-ptypes-1.7.4 | 1 | ||||
-rw-r--r-- | dev-libs/ptypes/ptypes-1.7.4.ebuild | 29 |
3 files changed, 39 insertions, 0 deletions
diff --git a/dev-libs/ptypes/ChangeLog b/dev-libs/ptypes/ChangeLog new file mode 100644 index 000000000000..ee5ffdfcdb7f --- /dev/null +++ b/dev-libs/ptypes/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-libs/ptypes +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ptypes/ChangeLog,v 1.1 2003/01/05 06:59:26 george Exp $ + +*ptypes-1.7.4.ebuild (04 Jan 2003) + 04 Jan 2003; George Shapovalov <george@gentoo.org> ChangeLog, ptypes-1.7.4.ebuild, files/digest-ptypes-1.7.4 : + initial release (#12061) + PTypes (C++ Portable Types Library) is a simple alternative to the STL that includes multithreading and networking. + ebuild submitted by Michael Labhard <ince@pacifier.com> diff --git a/dev-libs/ptypes/files/digest-ptypes-1.7.4 b/dev-libs/ptypes/files/digest-ptypes-1.7.4 new file mode 100644 index 000000000000..6c452aa0d657 --- /dev/null +++ b/dev-libs/ptypes/files/digest-ptypes-1.7.4 @@ -0,0 +1 @@ +MD5 b00b51fa1abc8ea46d662042c827019f ptypes-1.7.4.tar.gz 168106 diff --git a/dev-libs/ptypes/ptypes-1.7.4.ebuild b/dev-libs/ptypes/ptypes-1.7.4.ebuild new file mode 100644 index 000000000000..431f3a11fdc9 --- /dev/null +++ b/dev-libs/ptypes/ptypes-1.7.4.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ptypes/ptypes-1.7.4.ebuild,v 1.1 2003/01/05 06:59:26 george Exp $ + +DESCRIPTION="PTypes (C++ Portable Types Library) is a simple alternative to the STL that includes multithreading and networking." + +HOMEPAGE="http://www.melikyan.com/ptypes/" +SRC_URI="http://easynews.dl.sourceforge.net/sourceforge/ptypes/${P}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86" + +IUSE="" + +DEPEND="virtual/glibc" + +src_compile() { + make +} + +src_install() { + dolib lib/* || die + insinto /usr/include + doins include/* || die + dohtml doc/* || die + + dodoc LICENSE +} |