diff options
author | Heinrich Wendel <lanius@gentoo.org> | 2003-09-06 10:52:22 +0000 |
---|---|---|
committer | Heinrich Wendel <lanius@gentoo.org> | 2003-09-06 10:52:22 +0000 |
commit | da80811aba8e566e15d97c5a67ea14ca65cf11a5 (patch) | |
tree | 476da04aed81f5025beabe0fb7ca193a4f496a52 /app-misc/grass | |
parent | stable bump, lintool fixes (diff) | |
download | historical-da80811aba8e566e15d97c5a67ea14ca65cf11a5.tar.gz historical-da80811aba8e566e15d97c5a67ea14ca65cf11a5.tar.bz2 historical-da80811aba8e566e15d97c5a67ea14ca65cf11a5.zip |
bug #27915 #27831
Diffstat (limited to 'app-misc/grass')
-rw-r--r-- | app-misc/grass/ChangeLog | 5 | ||||
-rw-r--r-- | app-misc/grass/Manifest | 4 | ||||
-rw-r--r-- | app-misc/grass/grass-5.0.2.ebuild | 8 |
3 files changed, 10 insertions, 7 deletions
diff --git a/app-misc/grass/ChangeLog b/app-misc/grass/ChangeLog index 6f2095a75f49..e5e5b48da2c6 100644 --- a/app-misc/grass/ChangeLog +++ b/app-misc/grass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-misc/grass # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/grass/ChangeLog,v 1.5 2003/09/03 12:45:00 lanius Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/grass/ChangeLog,v 1.6 2003/09/06 10:52:16 lanius Exp $ + + 06 Sep 2003; Heinrich Wendel <lanius@gentoo.org> grass-5.0.2.ebuild: + fixed motif/truetype include path 03 Sep 2003; Heinrich Wendel <lanius@gentoo.org> grass-5.0.2.ebuild: back to lesstif, openmotif does not work .. diff --git a/app-misc/grass/Manifest b/app-misc/grass/Manifest index 549982a0895e..c7f4b60c7306 100644 --- a/app-misc/grass/Manifest +++ b/app-misc/grass/Manifest @@ -1,3 +1,3 @@ -MD5 bf7265f4ca31782fb4c547756eaa0ead grass-5.0.2.ebuild 2579 -MD5 3b4b775744065235a09f305856d8ec7e ChangeLog 996 +MD5 0f1612602aa7dd597e002a0435e43d9a grass-5.0.2.ebuild 2665 +MD5 a31daf2b1ea890e606f77b77f5671128 ChangeLog 1104 MD5 bdf9112abfe51ff3b2cd0547318640df files/digest-grass-5.0.2 69 diff --git a/app-misc/grass/grass-5.0.2.ebuild b/app-misc/grass/grass-5.0.2.ebuild index 5b8b65a9ce2e..89ddb146f0d1 100644 --- a/app-misc/grass/grass-5.0.2.ebuild +++ b/app-misc/grass/grass-5.0.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/grass/grass-5.0.2.ebuild,v 1.4 2003/09/03 12:45:00 lanius Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/grass/grass-5.0.2.ebuild,v 1.5 2003/09/06 10:52:16 lanius Exp $ DESCRIPTION="An open-source GIS with raster and vector functionality." HOMEPAGE="http://grass.baylor.edu/" @@ -34,7 +34,7 @@ DEPEND=">=sys-devel/make-3.80 postgres? ( >=dev-db/postgresql-7.3.2 ) odbc? ( >=dev-db/unixODBC-2.0.6 ) gd? ( >=media-libs/libgd-1.8.3 ) - motif? ( x11-libs/lesstif ) + motif? ( virtual/motif ) truetype? ( >=media-libs/freetype-2.1.3 )" #nviz? ( >=media-libs/mesa-3.5 )" @@ -73,11 +73,11 @@ src_compile() { || myconf="${myconf} --without-postgres" use motif \ - && myconf="${myconf} --with-motif" \ + && myconf="${myconf} --with-motif --with-motif-includes=/usr/X11R6/include" \ || myconf="${myconf} --without-motif" use truetype \ - && myconf="${myconf} --with-freetype" \ + && myconf="${myconf} --with-freetype --with-freetype-includes=/usr/include/freetype2" \ || myconf="${myconf} --without-freetype" #use nviz \ |